/* ============================================================
   Coastal Staging — page-shell.css
   Shared styles for services.html and about.html.
   Mirrors the home page's visual language: warm sand + cream,
   Marcellus + Work Sans, Cinzel wordmark, hairline rules.
   ============================================================ */
:root {
  --bg: #F6F1E8;
  --bg-warm: #EFE7D8;
  --bg-panel: #E9DFCC;
  --ink: #2B2720;
  --ink-soft: #5B534A;
  --ink-mute: #8B8275;
  --rule: #D9CEB8;
  --accent: #B08A63;
  --accent-ink: #8C6A47;
  --f-display: 'Marcellus', 'Cormorant Garamond', serif;
  --f-body: 'Work Sans', system-ui, sans-serif;
  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  display: inline-block;
}

/* ---------- NAV (always in scrolled state on subpages) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 32px;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav .brand { grid-column: 2; justify-self: center; }
.nav .navlinks { grid-column: 3; justify-self: end; }
.brand.brand-cinzel {
  font-family: 'Cinzel', 'Marcellus', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.26em;
  line-height: 1;
  color: #1B1814;
  white-space: nowrap;
}
.navlinks { display: flex; gap: 38px; }
.navlinks a {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); font-weight: 500; position: relative;
  padding: 6px 0;
}
.navlinks a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink); transition: right .4s cubic-bezier(.2,.7,.2,1);
}
.navlinks a:hover::after, .navlinks a.active::after { right: 0; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: 180px var(--gutter) 100px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.page-hero::before {
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(176,138,99,.18) 0%, transparent 65%);
}
.page-hero::after {
  bottom: -240px; right: -240px;
  background: radial-gradient(circle, rgba(120,140,130,.14) 0%, transparent 65%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .crumbs {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 28px; font-weight: 500;
}
.page-hero .crumbs a { color: var(--ink-soft); }
.page-hero .crumbs a:hover { color: var(--accent-ink); }
.page-hero .crumbs span { margin: 0 12px; color: var(--rule); }
.page-hero h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px); line-height: 1.02;
  margin: 18px 0 28px; max-width: 16ch;
  letter-spacing: -0.005em;
}
.page-hero h1 em { font-style: italic; color: var(--accent-ink); }
.page-hero .lede {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch; line-height: 1.5;
  margin: 0;
}

/* ---------- SERVICES — alternating image+copy rows ---------- */
.services { padding: clamp(80px, 10vw, 140px) 0; }
.service {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.service:last-child { border-bottom: none; }
.service .num {
  position: absolute; top: 48px; left: 0;
  font-family: var(--f-display);
  font-size: 14px; letter-spacing: 0.42em;
  color: var(--accent);
}
.service .num::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--accent); vertical-align: middle; margin-right: 10px;
  transform: translateY(-2px);
}
.service .body { padding-top: 16px; }
.service.alt .body { order: 2; }
.service.alt .img  { order: 1; }
.service h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05; margin: 14px 0 22px;
  letter-spacing: -0.005em;
}
.service .ledep {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); margin: 0 0 28px;
  max-width: 52ch;
}
.service .features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  border-left: 1px solid var(--rule);
  padding-left: 22px;
}
.service .features li {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.55;
}
.service .meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-mute);
}
.service .meta strong {
  color: var(--ink); font-weight: 500;
  font-family: var(--f-display); font-size: 18px;
  letter-spacing: 0.01em;
}
.service .img {
  height: 540px;
  background-size: cover; background-position: center;
  border-radius: 2px;
  filter: saturate(0.9);
  box-shadow: 0 30px 60px -30px rgba(43,39,32,.25);
}
.service .img.img-full {
  height: auto;
  background: var(--bg-warm);
  filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service .img.img-full img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- BEFORE / AFTER COMPARE SLIDER ---------- */
.service .img.compare {
  position: relative;
  background: var(--bg-warm);
  height: 540px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.service .img.compare img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare-after {
  /* the FURNISHED image — sits underneath, fully visible */
  z-index: 1;
}
.compare-before {
  /* the EMPTY image — sits on top, clipped from the right edge inward.
     Both images use the same width:100%/object-fit:cover from the rule
     above, so geometry matches exactly. clip-path is updated by JS via
     the inline style attribute. */
  z-index: 2;
  will-change: clip-path;
}
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  will-change: left;
}
.compare-handle .compare-line {
  position: absolute; inset: 0; left: 0; right: 0;
  background: linear-gradient(
    180deg,
    rgba(244,236,221,0) 0%,
    rgba(244,236,221,.85) 12%,
    rgba(244,236,221,.85) 88%,
    rgba(244,236,221,0) 100%
  );
  box-shadow: 0 0 14px rgba(0,0,0,.25);
}
.compare-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(244, 236, 221, 0.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 12px 30px rgba(43,39,32,.35),
    0 1px 2px rgba(43,39,32,.2);
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  pointer-events: auto;
  cursor: ew-resize;
  transition: transform .25s ease, box-shadow .25s ease;
}
.compare-handle:hover .compare-knob,
.compare-handle:focus-visible .compare-knob,
.service .img.compare:hover .compare-knob {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 16px 40px rgba(43,39,32,.4),
    0 1px 2px rgba(43,39,32,.2);
}
.compare-knob .arrow-l, .compare-knob .arrow-r {
  width: 8px; height: 8px;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.compare-knob .arrow-l { transform: rotate(-45deg); }
.compare-knob .arrow-r { transform: rotate(135deg); }
.compare-handle:focus-visible {
  outline: none;
}
.compare-handle:focus-visible .compare-knob {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.compare-label {
  position: absolute; bottom: 22px;
  z-index: 4;
  font-family: var(--f-body);
  font-size: 10px; letter-spacing: 0.36em;
  text-transform: uppercase; font-weight: 500;
  color: #F4ECDD;
  background: rgba(43,39,32,0.55);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  pointer-events: none;
  transition: opacity .35s ease;
}
.compare-label-l { left: 22px; }
.compare-label-r { right: 22px; }

@media (max-width: 900px) {
  .service .img.compare { height: 360px; }
  .compare-knob { width: 48px; height: 48px; }
}
.about-grid { padding: clamp(80px, 10vw, 140px) 0; }
.about-grid .cols {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
}
.about-grid h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; margin: 18px 0 0;
}
.about-grid .col-body p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 22px; max-width: 56ch;
}
.about-grid .col-body p:last-child {
  font-family: var(--f-display); font-size: 22px;
  color: var(--ink); font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 22px; margin-top: 32px;
}

.founder {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.founder .cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.founder .portrait {
  height: 620px;
  background-size: cover; background-position: center;
  position: relative;
  filter: saturate(0.88);
  box-shadow: 0 30px 60px -30px rgba(43,39,32,.3);
}
.founder .portrait-cap {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(246,241,232,.92); backdrop-filter: blur(6px);
  padding: 10px 18px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink); font-weight: 500;
}
.founder h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px); line-height: 1; margin: 14px 0 28px;
}
.founder p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); max-width: 50ch; margin: 0 0 20px;
}
.founder p em { color: var(--ink); font-style: italic; }
.founder .creds {
  list-style: none; padding: 22px 0 0; margin: 22px 0 0;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.founder .creds li::before {
  content: '·'; color: var(--accent); margin-right: 10px;
}

.press { padding: clamp(80px, 10vw, 140px) 0; }
.press .press-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.press-item {
  background: var(--bg);
  padding: clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 12px;
}
.press-item .press-pub {
  font-family: var(--f-display); font-size: 22px;
  color: var(--ink);
}
.press-item .press-date {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.press-item p {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; line-height: 1.55;
  color: var(--ink-soft); margin: 8px 0 0;
}

.values {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
}
.values h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 5vw, 68px); line-height: 1;
  margin: 18px 0 56px;
}
.values .value-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.value {
  background: var(--bg);
  padding: clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 16px;
}
.value .num {
  font-family: var(--f-display);
  font-size: 14px; letter-spacing: 0.42em;
  color: var(--accent);
}
.value .num::before {
  content: ''; display: inline-block; width: 28px; height: 1px;
  background: var(--accent); vertical-align: middle; margin-right: 10px;
  transform: translateY(-2px);
}
.value h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15; margin: 0;
}
.value p {
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft); margin: 0;
}

/* ---------- PAGE HERO with image background (about page) ---------- */
.page-hero.page-hero-image {
  position: relative;
  background: #2B2720;
  padding: 220px var(--gutter) 160px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
}
.page-hero.page-hero-image::before,
.page-hero.page-hero-image::after { display: none; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
  /* slow ambient drift for life */
  animation: heroDrift 32s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-12px); }
}
.page-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 22% 50%, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 55%, transparent 75%),
    linear-gradient(to right, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,0) 75%),
    linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.page-hero.page-hero-image .wrap { position: relative; z-index: 2; }
.page-hero.page-hero-image .crumbs { color: rgba(244,236,221,.7); }
.page-hero.page-hero-image .crumbs a { color: rgba(244,236,221,.85); }
.page-hero.page-hero-image .crumbs a:hover { color: #fff; }
.page-hero.page-hero-image .crumbs span { color: rgba(244,236,221,.35); }
.page-hero.page-hero-image .eyebrow { color: rgba(244,236,221,.7); }
.page-hero.page-hero-image h1 {
  color: #F4ECDD;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.page-hero.page-hero-image h1 em { color: #E8D4B6; }
.page-hero.page-hero-image .lede {
  color: rgba(244,236,221,.85);
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}

/* Optional inset frame around the text — toggled via a class on the section. */
.page-hero.page-hero-image.framed .page-hero-text {
  background: rgba(43, 39, 32, 0.55);
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  border: 1px solid rgba(244, 236, 221, 0.18);
  padding: clamp(36px, 5vw, 56px);
  max-width: 720px;
}
.page-hero.page-hero-image.framed h1,
.page-hero.page-hero-image.framed .lede { text-shadow: none; }

@media (max-width: 700px) {
  .page-hero.page-hero-image { padding: 160px var(--gutter) 110px; }
  .page-hero-veil {
    background:
      linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.55) 100%);
  }
}

/* ---------- DIFFERENTIATORS (About page) ---------- */
.differ { padding: clamp(80px, 10vw, 130px) 0; }
.differ h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05;
  margin: 18px 0 28px; letter-spacing: -0.005em;
}
.differ .differ-lede {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px); color: var(--ink-soft);
  line-height: 1.55; max-width: 64ch; margin: 0 0 56px;
}
.differ .differ-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.differ-item {
  background: var(--bg);
  padding: clamp(32px, 3.6vw, 48px);
  display: flex; flex-direction: column; gap: 12px;
}
.differ-item .num { color: var(--accent); font-size: 22px; line-height: 1; }
.differ-item h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.2; margin: 0;
}
.differ-item p {
  font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 0;
}
@media (max-width: 700px) { .differ .differ-grid { grid-template-columns: 1fr; } }

/* ---------- REGION / LOCAL SEO BAND ---------- */
.region {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.region h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.05;
  margin: 18px 0 28px; letter-spacing: -0.005em;
}
.region .region-lede {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px); color: var(--ink-soft);
  line-height: 1.55; max-width: 64ch; margin: 0 0 48px;
}
.region .region-list {
  list-style: none; padding: 32px 0 0; margin: 0;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px 32px;
}
.region .region-list li {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink); letter-spacing: 0.02em;
  position: relative; padding-left: 18px;
}
.region .region-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: var(--accent);
}
@media (max-width: 700px) {
  .region .region-list { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--ink);
  color: #F4ECDD;
  text-align: center;
}
.cta-band .eyebrow { color: rgba(244,236,221,.55); }
.cta-band h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 80px); line-height: 1.05;
  margin: 18px 0 18px;
  color: #F4ECDD;
}
.cta-band p {
  font-family: var(--f-display); font-style: italic;
  font-size: 20px; color: rgba(244,236,221,.7);
  margin: 0 auto 40px; max-width: 50ch;
}
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  border: 1px solid rgba(244,236,221,.6);
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; font-weight: 500;
  color: #F4ECDD;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.btn:hover { background: #F4ECDD; color: var(--ink); border-color: #F4ECDD; }
.btn .arrow {
  width: 22px; height: 1px; background: currentColor; position: relative;
  transition: width .35s ease;
}
.btn .arrow::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 30px; }

/* ---------- FOOTER ---------- */
footer {
  padding: clamp(72px, 9vw, 120px) var(--gutter) 36px;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
}
.foot-grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-col h4 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 22px;
}
.foot-col a {
  display: block; padding: 6px 0;
  font-size: 14px; color: var(--ink-soft);
  transition: color .25s ease;
}
.foot-col a:hover { color: var(--accent-ink); }
.foot-col p { color: var(--ink-soft); margin: 0 0 12px; font-size: 14px; line-height: 1.6; }
.foot-rule {
  max-width: var(--wrap); margin: 56px auto 0;
  height: 1px; background: var(--rule);
}
.foot-meta {
  max-width: var(--wrap); margin: 24px auto 0;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink-mute); font-weight: 500;
}

/* ---------- NAV TOGGLE & MOBILE DRAWER (subpages) ---------- */
.nav-toggle{
  display: none;
  grid-column: 1; justify-self: start;
  width: 44px; height: 44px;
  background: transparent; border: 0; padding: 0;
  position: relative; z-index: 60;
  cursor: pointer;
}
.nav-toggle span{
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.7,0,.3,1), opacity .25s ease, top .35s cubic-bezier(.7,0,.3,1);
}
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 21px; }
.nav-toggle span:nth-child(3){ top: 28px; }
.nav-toggle.open span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ top: 21px; transform: rotate(-45deg); }
.mobile-menu{
  position: fixed; inset: 0; z-index: 50;
  background: var(--bg);
  transform: translateY(-100%);
  display: flex; flex-direction: column;
  padding: 96px var(--gutter) 40px;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open{
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: transform .35s cubic-bezier(.7,0,.2,1);
}
.mobile-menu-inner{ display: flex; flex-direction: column; gap: 4px; margin: auto 0; }
.mobile-menu a{
  font-family: var(--f-display);
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.2; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.mobile-menu-foot{
  margin-top: 36px; font-family: var(--f-body);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu-foot a{ font-family: inherit; font-size: inherit; padding: 0; border: 0; color: var(--ink-soft); letter-spacing: inherit; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .nav { padding: 18px var(--gutter); column-gap: 12px; }
  .nav.scrolled { padding-top: 14px; padding-bottom: 14px; background: rgba(246, 241, 232, 0.96); }
  .nav .brand-cinzel { font-size: clamp(20px, 5vw, 28px) !important; }
  .navlinks { display: none !important; }
  .nav-toggle { display: block; }
  .nav .brand { grid-column: 2; }
  .page-hero { padding: 130px var(--gutter) 70px; }
  .page-hero h1 { font-size: clamp(40px, 10vw, 64px); }
  .service { grid-template-columns: 1fr; gap: 32px; }
  .service.alt .body { order: 1; }
  .service.alt .img { order: 2; }
  .service .img { height: 320px; }
  .service .img.img-full { height: auto; }
  .service .img.compare { height: 320px; }
  .compare-knob { width: 48px; height: 48px; }
  .differ .differ-grid { grid-template-columns: 1fr; }
  .region .region-list { grid-template-columns: repeat(2, 1fr); }
  .about-grid .cols, .founder .cols { grid-template-columns: 1fr; }
  .founder .portrait { height: 480px; }
  .press .press-grid, .values .value-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 70px var(--gutter); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .region .region-list { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(36px, 11vw, 52px); }
}
