/* Henry County Consulting — handmade editorial with subtle steampunk */

:root {
  --bg: #0e0c0a;
  --bg-elev: #1a1f27;
  --bg-soft: #222831;
  --ink: #f4f0e8;
  --muted: #a39a8c;
  --copper: #d97745;
  --brass: #b87333;
  --brass-dim: rgba(184, 115, 51, 0.45);
  --copper-soft: rgba(217, 119, 69, 0.16);
  --sage: #8faf8a;
  --sage-dim: rgba(143, 175, 138, 0.18);
  --line: rgba(244, 240, 232, 0.1);
  --line-strong: rgba(184, 115, 51, 0.42);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --radius-sm: 4px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
  --grain:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; }
a:hover { color: #f0a070; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--copper);
  color: #1a120c;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.demo-banner {
  background: #3a2a14;
  color: #f0c27a;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(184, 115, 51, 0.08), transparent 55%),
    radial-gradient(700px 380px at 0% 40%, rgba(143, 175, 138, 0.06), transparent 50%),
    linear-gradient(180deg, #14181f 0%, var(--bg) 28%, var(--bg) 100%);
}
/* Grid overlay muted heavily — almost invisible paper grain instead of SaaS mesh */
.page-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: var(--grain);
  background-size: 180px 180px;
  pointer-events: none;
}

.site-header, main, .site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 50;
  padding: 0 1rem;
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  background: rgba(18, 21, 26, 0.88);
  border: 1px solid var(--brass-dim);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(244, 240, 232, 0.04);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand-logo {
  border-radius: var(--radius-sm);
  border: 1px solid var(--brass-dim);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.brand-text span { font-size: 0.74rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  font-size: 0.95rem;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--ink); }
.site-nav .btn { color: #1a120c; }
.site-nav .btn:hover { color: #1a120c; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* —— Buttons: squared with copper edge —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.58rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.42rem 0.9rem; font-size: 0.86rem; }
.btn-lg { padding: 0.85rem 1.35rem; font-size: 1.02rem; }
.btn-primary {
  background: linear-gradient(165deg, #e28955 0%, #c45f2f 55%, #a85228 100%);
  color: #1a120c;
  border-color: var(--brass);
  box-shadow:
    0 6px 18px rgba(196, 95, 47, 0.28),
    inset 0 1px 0 rgba(255, 220, 180, 0.25);
}
.btn-primary:hover { color: #1a120c; filter: brightness(1.06); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--brass-dim);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(184, 115, 51, 0.2);
}

/* —— Brass rule (editorial underline) —— */
.brass-rule {
  width: 3.25rem;
  height: 2px;
  margin: 0 0 1.15rem;
  background: linear-gradient(90deg, var(--brass), rgba(184, 115, 51, 0.15));
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.brass-rule-center {
  margin-left: auto;
  margin-right: auto;
}

/* —— Riveted corners (CSS hairlines) —— */
.riveted {
  position: relative;
}
.riveted::before,
.riveted::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brass-dim);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1.5px rgba(18, 21, 26, 0.85);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}
.riveted::before {
  top: 6px;
  left: 6px;
}
.riveted::after {
  top: 6px;
  right: 6px;
}

/* Paper / grain overlay on cards */
.service-card,
.method-card,
.hero-panel,
.about-card,
.callout,
.cta-card,
.strip {
  background-blend-mode: soft-light, normal;
}

.service-card::after,
.method-card::after,
.hero-panel .grain-skip,
.about-card::after {
  /* grain via background on the element itself */
}

/* —— Hero —— */
.hero {
  position: relative;
  width: min(100% - 2rem, var(--max));
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
  min-height: min(72vh, 640px);
  isolation: isolate;
}
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(184, 115, 51, 0.22);
  pointer-events: none;
}
.hero-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(18, 21, 26, 0.96) 0%,
      rgba(18, 21, 26, 0.9) 38%,
      rgba(18, 21, 26, 0.55) 62%,
      rgba(18, 21, 26, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 21, 26, 0.35) 0%, transparent 30%, rgba(18, 21, 26, 0.55) 100%);
}
.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}
.hero-copy {
  padding: 2.25rem 1.25rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(143, 175, 138, 0.55);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(143, 175, 138, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(143, 175, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 175, 138, 0); }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  font-weight: 600;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f0c9a8;
  letter-spacing: 0.01em;
}
.lead, .section-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38rem;
  margin: 0;
}
.lead strong { color: var(--ink); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1rem;
}
.hero-actions.center { justify-content: center; }
.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36rem;
  font-style: italic;
  opacity: 0.92;
}

.hero-panel {
  margin: 1.5rem 1.25rem 1.5rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    var(--grain),
    var(--bg-elev);
  background-size: auto, 160px 160px, auto;
  border: 1px solid var(--brass-dim);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-self: center;
}
.panel-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel-title {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0.35rem 0 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.panel-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.panel-steps li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass);
}
.panel-steps strong {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.panel-steps span { color: var(--muted); font-size: 0.92rem; }
.panel-foot {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 10px rgba(143, 175, 138, 0.7);
}

.strip {
  width: min(100% - 2rem, var(--max));
  margin: 2.75rem auto 0;
  border: 1px solid var(--brass-dim);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-list li {
  padding: 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-right: 1px solid var(--line);
}
.strip-list li:last-child { border-right: none; }
.strip-list strong { color: var(--ink); font-weight: 700; }

.section {
  width: min(100% - 2rem, var(--max));
  margin: 5rem auto 0;
}
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head.left { text-align: left; }
.section-head h2,
.about-copy h2,
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  font-weight: 600;
  line-height: 1.12;
}
.section-lead { margin: 0 auto; }
.section-head.left .section-lead { margin: 0; }
.section-head.left .brass-rule { margin-left: 0; }

/* —— Method: varied column emphasis —— */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr;
  gap: 1rem;
  align-items: stretch;
}
.method-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-top: 1px solid var(--brass-dim);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    var(--grain),
    var(--bg-elev);
  background-size: auto, 140px 140px, auto;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.method-card:nth-child(2) { margin-top: 0.75rem; }
.method-card:nth-child(3) { margin-top: 0.35rem; }
.method-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.method-card.accent {
  background:
    radial-gradient(420px 160px at 0% 0%, var(--copper-soft), transparent 60%),
    var(--grain),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    var(--bg-elev);
  background-size: auto, 140px 140px, auto, auto;
  border-color: var(--brass-dim);
}
.step-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--sage);
  letter-spacing: 0.06em;
}
.method-card h3 {
  font-family: var(--display);
  margin: 0.55rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
}
.method-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* —— Services: uneven bento —— */
.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1rem;
}
.service-card {
  padding: 1.45rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 2px solid transparent;
  background:
    var(--grain),
    var(--bg-elev);
  background-size: 140px 140px, auto;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service-card:hover {
  border-left-color: var(--brass);
  border-color: var(--line-strong);
}
.service-wide {
  grid-column: 1 / -1;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) 1fr;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.55rem 1.6rem;
  border-left: 2px solid var(--brass-dim);
}
.service-card h3 {
  font-family: var(--display);
  margin: 0 0 0.45rem;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p { margin: 0; color: var(--muted); }
.service-wide h3 { margin: 0; }

.callout {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(500px 160px at 0% 50%, var(--copper-soft), transparent 55%),
    var(--grain),
    var(--bg-soft);
  background-size: auto, 140px 140px, auto;
}
.callout-text { margin: 0.35rem 0 0; color: var(--ink); max-width: 40rem; }
.callout .btn { flex-shrink: 0; }

/* —— Who: varied sizes + editorial photo —— */
.who-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.who-featured {
  padding: 1.75rem 1.5rem;
  border-left: 2px solid var(--brass);
  min-height: 11rem;
}
.who-featured h3 { font-size: 1.45rem; }

.editorial-photo {
  margin: 2rem 0 0;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--brass-dim);
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: var(--shadow);
}
.editorial-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 40%;
}
.editorial-photo figcaption {
  margin: 0;
  padding: 0.85rem 1.15rem 1rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.editorial-photo figcaption::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: var(--brass);
}

/* —— Outcomes: staggered —— */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
}
.outcome-tall {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-about { margin-top: 5rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}
.about-copy p { color: var(--muted); }
.about-copy p strong { color: var(--ink); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.55rem;
}
.check-list li {
  padding-left: 1.45rem;
  position: relative;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 2px rgba(184, 115, 51, 0.25);
}
.about-card {
  padding: 1.35rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--brass-dim);
  background:
    radial-gradient(360px 160px at 100% 0%, var(--sage-dim), transparent 55%),
    var(--grain),
    var(--bg-elev);
  background-size: auto, 140px 140px, auto;
}
.about-card-label {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  display: grid;
  gap: 0.45rem;
}
.about-card-foot {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.link-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.link-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  color: inherit;
}
.tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.link-card strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.link-card > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta { width: min(100% - 2rem, var(--max)); margin: 5rem auto 0; }
.cta-card {
  padding: 2.6rem 2rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--brass-dim);
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(184, 115, 51, 0.12), transparent 55%),
    radial-gradient(700px 240px at 90% 100%, var(--sage-dim), transparent 50%),
    var(--grain),
    var(--bg-elev);
  background-size: auto, auto, 160px 160px, auto;
  text-align: center;
}
.cta-card > p { color: var(--muted); max-width: 34rem; margin-left: auto; margin-right: auto; }
.contact-mini {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-mini span:first-child {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 3.5rem auto 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brass-dim);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.15rem; }
.footer-brand strong {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.85rem 1.1rem; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--ink); }
.footer-copy { margin: 0; width: 100%; }

.footer-side {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  width: 100%;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}
.footer-side-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}
.footer-side a { color: var(--muted); }
.footer-side a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem; right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    margin: 0;
    background: rgba(18, 21, 26, 0.96);
    border: 1px solid var(--brass-dim);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
  }
  .site-nav.open { display: flex; }
  .site-nav .btn { width: 100%; }
  .nav-shell { position: relative; border-radius: var(--radius); }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-atmosphere {
    position: relative;
    height: 220px;
    margin-bottom: -1rem;
    order: -1;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(18, 21, 26, 0.15) 0%,
        rgba(18, 21, 26, 0.75) 70%,
        rgba(18, 21, 26, 0.98) 100%);
  }
  .hero-copy { max-width: none; padding: 1.25rem 0.25rem 0.5rem; }
  .hero-panel { margin: 0 0 0.5rem; }
  .about-grid, .service-grid { grid-template-columns: 1fr; }
  .service-wide { grid-template-columns: 1fr; }
  .method-grid, .link-grid, .strip-list, .who-grid, .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .method-card:nth-child(2),
  .method-card:nth-child(3) { margin-top: 0; }
  .strip-list li { border-right: none; border-bottom: 1px solid var(--line); }
  .strip-list li:nth-last-child(-n+2) { border-bottom: none; }
  .callout { flex-direction: column; align-items: flex-start; }
  .panel-steps li { grid-template-columns: 1fr; gap: 0.2rem; }
  .who-featured { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .method-grid, .link-grid, .strip-list, .who-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .strip-list li { border-bottom: 1px solid var(--line); }
  .strip-list li:last-child { border-bottom: none; }
  .cta-card { padding: 1.75rem 1.2rem; }
  .hero { margin-top: 1.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-atmosphere { height: 180px; }
}


/* ===== Maker steampunk pass v2 (Grok Imagine assets) ===== */
:root {
  --ink: #f3ebe0;
  --muted: #b5a894;
  --brass: #c9924a;
  --brass-bright: #e0b06a;
  --brass-dim: rgba(201, 146, 74, 0.38);
  --walnut: #1a1410;
  --radius: 10px;
  --radius-sm: 6px;
  --display: "Cormorant Garamond", Georgia, serif;
  --font: "Instrument Sans", system-ui, sans-serif;
}

body {
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, rgba(201, 146, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(90, 60, 30, 0.18), transparent 50%),
    var(--bg);
}

.page-grid {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(201, 146, 74, 0.1), transparent 55%),
    linear-gradient(180deg, #15110d 0%, var(--bg) 35%, #0a0908 100%);
}

.nav-shell {
  border-radius: 8px;
  border-color: var(--brass-dim);
  background: rgba(14, 12, 10, 0.92);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(224, 176, 106, 0.08);
}

.brand-logo {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1.5px solid var(--brass);
  box-shadow: 0 0 0 3px rgba(201, 146, 74, 0.15), 0 4px 12px rgba(0,0,0,0.4);
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-bright);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  font-weight: 700;
}
h1 em {
  font-style: italic;
  color: var(--brass-bright);
  font-weight: 500;
}

.hero {
  border: 1px solid var(--brass-dim);
  border-radius: 12px;
  overflow: hidden;
  background: var(--walnut);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(224,176,106,0.06);
}

.hero-atmosphere img {
  filter: saturate(0.92) contrast(1.05) brightness(0.78);
}

.hero-scrim {
  background:
    linear-gradient(105deg, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.78) 42%, rgba(10,9,8,0.35) 72%, rgba(10,9,8,0.55) 100%),
    linear-gradient(0deg, rgba(10,9,8,0.65), transparent 40%);
}

.hero-panel {
  background: linear-gradient(165deg, rgba(36, 28, 20, 0.95), rgba(18, 14, 11, 0.98));
  border: 1px solid var(--brass-dim);
  border-radius: 8px;
}

.btn-primary {
  background: linear-gradient(165deg, #e0b06a 0%, #c9924a 45%, #8f5e28 100%);
  border-color: #e0b06a;
  color: #1a1208;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}
.btn-lg.btn-primary { font-size: 0.88rem; }
.btn-ghost {
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.service-card, .method-card, .about-card, .callout, .cta-card {
  border-radius: 8px;
  border: 1px solid var(--brass-dim);
  background:
    linear-gradient(180deg, rgba(255,240,210,0.03), transparent 40%),
    linear-gradient(165deg, #1c1612, #12100e);
  box-shadow: inset 0 1px 0 rgba(224,176,106,0.07);
}

.method-card .step-num {
  font-family: var(--display);
  color: var(--brass);
  font-size: 1.6rem;
  font-weight: 600;
}

.strip {
  border: 1px solid var(--brass-dim);
  border-radius: 8px;
  background: linear-gradient(90deg, #16120f, #1a1410 50%, #16120f);
}

.gear-rail {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.75rem 0 0.25rem;
  opacity: 0.55;
}
.gear-rail span {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #0e0c0a;
  position: relative;
}
.gear-rail span::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px dashed rgba(201,146,74,0.35);
  border-radius: 50%;
}

.editorial-photo {
  margin-top: 2rem;
  border: 1px solid var(--brass-dim);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.editorial-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9) contrast(1.04);
}
.editorial-photo figcaption {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.75rem 1rem;
  background: #12100e;
  border-top: 1px solid var(--brass-dim);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: start;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-photo {
  margin: 0;
  border: 1px solid var(--brass-dim);
  border-radius: 8px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.05);
}

.cta-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,146,74,0.14), transparent 55%),
    linear-gradient(180deg, #1c1612, #100e0c);
}

.site-footer {
  border-top: 1px solid var(--brass-dim);
  background: #0a0908;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo img { height: 220px; }
}
