/* ====================================================
   Open Door Media — Production Stylesheet
   Fonts: Montserrat 700 (headings) · DM Sans 400/500 (body)
   Signature motif: bottom-right squared corner (message bubble)
   ==================================================== */

/* ========== DESIGN TOKENS ========== */
:root {
  --accent:      #C55833;
  --ink:         #1F1A1A;
  --blue:        #89abab;
  --paper:       #faf8f4;
  --panel:       #ede8e1;
  --taupe:       #6b5f58;
  --placeholder: #d8d2c8;
  --hairline:    #e0dacf;
  --max-w:       1180px;

  /* Spacing rhythm (8px grid) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;

  /* Transitions — specific, not `all` */
  --t-color: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  --t-transform: transform 0.2s ease;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip is safer than hidden — doesn't create a scroll container so position:sticky works */
html { scroll-behavior: smooth; overflow-x: clip; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ========== BASE ========== */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

/* Negative tracking on display sizes reads as intentional, not default */
h1 { font-size: clamp(42px, 6vw, 68px);  letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3.5vw, 40px); letter-spacing: -0.018em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.012em; }
h4 { font-size: 17px; letter-spacing: -0.005em; line-height: 1.25; }
h5 { font-size: 15px; }

p { color: var(--taupe); line-height: 1.75; }
strong { color: var(--ink); font-weight: 700; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.accent-word { color: var(--accent); }

/* ========== LAYOUT ========== */
/* Single canonical max-width — nav and content always align */
.container,
.container--sm {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.section         { padding: var(--sp-10) 0; }
.section--spacious { padding: 120px 0; }

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  transition: transform 0.28s ease;
}

.navbar--hidden { transform: translateY(-100%); }

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.navbar__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo img {
  height: 64px;
  width: auto;
  display: block;
}

/* Links with slide-underline hover — editorial, not generic */
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--taupe);
  position: relative;
  padding-bottom: 2px;
  transition: var(--t-color);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--accent);
  transition: right 0.25s ease;
}

.navbar__links a:hover { color: var(--ink); }
.navbar__links a:hover::after,
.navbar__links a.nav-active::after { right: 0; }
.navbar__links a.nav-active { color: var(--ink); }

.navbar__mobile a.nav-active { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); }

/* Dropdown */
.navbar__item--has-dropdown { position: relative; }

.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px 12px 3px 12px;
  padding: 10px 6px 6px;
  min-width: 210px;
  list-style: none;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  z-index: 200;
}

.navbar__item--has-dropdown:hover .navbar__dropdown,
.navbar__item--has-dropdown:focus-within .navbar__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar__dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px 8px 2px 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.navbar__dropdown li a::after { display: none; }
.navbar__dropdown li a:hover { background: rgba(197,88,51,0.07); color: var(--accent); }

/* Mobile sub-links */
.navbar__mobile-sub {
  padding-left: var(--sp-4) !important;
  font-size: 13px !important;
  color: var(--taupe) !important;
}

/* CTA button — not a link */
.navbar__cta {
  background: var(--accent) !important;
  color: var(--paper) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  padding: 9px 20px !important;
  border-radius: 999px 999px 3px 999px;
  transition: filter 0.2s ease;
}
.navbar__cta:hover { filter: brightness(0.88); color: var(--paper) !important; }
.navbar__cta::after { display: none !important; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 2px;
  margin-left: auto;
  color: var(--taupe);
  transition: var(--t-color);
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.navbar__toggle:hover { color: var(--ink); }

.navbar--open .navbar__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar--open .navbar__toggle span:nth-child(2) { opacity: 0; }
.navbar--open .navbar__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Quick contact icons — contact page mobile only; hidden everywhere else */
.navbar__quick-contact { display: none; }

.navbar__quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--taupe);
  border-radius: 50%;
  transition: var(--t-color);
}

.navbar__quick-link:hover { color: var(--ink); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--sp-5) 22px;
  border-top: 1px solid var(--hairline);
  gap: var(--sp-2);
}

.navbar__mobile a {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 500;
  transition: var(--t-color);
}

.navbar__mobile a:hover { color: var(--ink); }
.navbar__mobile .btn--primary,
.navbar__mobile .btn--primary:hover { color: var(--paper); }
.navbar--open .navbar__mobile { display: flex; }

/* ========== SERVICE SUB-NAV ========== */
.service-subnav {
  border-top: 1px solid var(--hairline);
  overflow-x: auto;
  scrollbar-width: none;
}
.service-subnav::-webkit-scrollbar { display: none; }

.service-subnav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  gap: 4px;
}

.service-subnav a {
  font-size: 12px;
  font-weight: 500;
  color: var(--taupe);
  padding: 8px 10px;
  white-space: nowrap;
  position: relative;
  transition: var(--t-color);
}

.service-subnav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.service-subnav a:first-child { padding-left: 0; }
.service-subnav a:first-child::after { left: 0; }

.service-subnav a:hover { color: var(--ink); }

.service-subnav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.service-subnav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  /* Orange top edge — a deliberate accent, not decoration */
  border-top: 2px solid var(--accent);
  padding: var(--sp-8) 0 var(--sp-6);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-left: auto;
}

.footer__links a {
  font-size: 14px;
  color: var(--blue);
  transition: var(--t-color);
}
.footer__links a:hover { color: var(--paper); }

.footer__nap {
  width: 100%;
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-style: normal;
  color: var(--blue);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__nap a { color: var(--blue); transition: var(--t-color); }
.footer__nap a:hover { color: var(--paper); }

.footer__copy {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border-radius: 999px 999px 3px 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: var(--t-color), filter 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--paper);
}
.btn--primary:hover { filter: brightness(0.88); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover { background: #2e2828; }

.btn--outline-muted {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--outline-muted:hover { border-color: var(--paper); }

.btn--on-accent {
  background: var(--paper);
  color: var(--accent);
}
.btn--on-accent:hover { filter: brightness(0.95); }

.btn--sm  { font-size: 12px; padding: 8px 16px; }
.btn--lg  { font-size: 15px; padding: 14px 30px; }

/* ========== CARDS ========== */
/* Editorial: thin border, no elevation, bubble corner does the work */
.card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px 16px 3px 16px;
  padding: var(--sp-3);
  transition: border-color 0.2s ease;
}

a.card:hover { border-color: #c8c0b4; }

.card--paper { background: var(--paper); }

.card--bordered {
  background: transparent;
  border: 1.4px solid var(--ink);
}

/* ========== CHIPS ========== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 9px 16px;
  border-radius: 13px 13px 2px 13px;
  font-size: 14px;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
  transition: var(--t-color), border-color 0.2s ease;
}

.chip:hover { border-color: #c8c0b4; }

.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.chip--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ========== ABOVE FOLD ========== */
/* .above-fold is a grouping wrapper only — layout lives on hero-statement */
.above-fold > .hero-statement {
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-5);
}

/* ========== HERO — STATEMENT ========== */
.hero-statement {
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(31,26,26,.03) 39px, rgba(31,26,26,.03) 40px),
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(31,26,26,.03) 39px, rgba(31,26,26,.03) 40px),
    radial-gradient(ellipse 72% 64% at 50% 30%, rgba(197,88,51,.08), transparent 72%);
  padding: var(--sp-12) var(--sp-5) var(--sp-10);
  text-align: center;
}

.hero-statement__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-statement h1 { margin: var(--sp-2) 0 16px; }

.hero-statement p {
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto var(--sp-4);
  color: var(--taupe);
}

.hero-statement__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== MARQUEE ========== */
.marquee-section {
  background: var(--panel);
  border-top: 1px solid #ddd6c9;
  border-bottom: 1px solid #ddd6c9;
  padding: var(--sp-3) 0;
  overflow: hidden;
}

.marquee-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--taupe);
  margin-bottom: 16px;
}

.marquee-viewport {
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  /* Promote to its own compositor layer so Webkit honours overflow:hidden on
     hardware-accelerated children (the animated marquee-track). Without this,
     Safari lets the track "escape" the clip and logos appear edge-to-edge. */
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-set {
  display: flex;
  gap: 44px;
  padding-right: 44px;
  align-items: center;
}

.marquee-logo {
  width: 120px;
  height: 48px;
  flex-shrink: 0;
  opacity: 0.65;
  object-fit: contain;
}

/* ========== SERVICE CARDS (homepage) ========== */
.service-cards { padding: var(--sp-10) 0; }

.service-cards__head { margin-bottom: var(--sp-5); }
.service-cards__head h2 { margin-bottom: 10px; }
.service-cards__head p  { max-width: 580px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px 16px 3px 16px;
  padding: var(--sp-4);
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

a.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--accent);
  border-radius: 10px 10px 2px 10px;
  margin-bottom: var(--sp-2);
  flex-shrink: 0;
  overflow: hidden;
}

.service-card--web  { background: linear-gradient(135deg, var(--paper) 55%, rgba(197,88,51,0.07) 100%); }
.service-card--av   { background: linear-gradient(225deg, var(--paper) 55%, rgba(197,88,51,0.07) 100%); }
.service-card--ads  { background: linear-gradient(45deg,  var(--paper) 55%, rgba(197,88,51,0.07) 100%); }

/* Thin rule between icon and copy — editorial detail */
.service-card__rule {
  width: 24px;
  height: 1.5px;
  background: var(--hairline);
  margin: var(--sp-2) 0;
}

.service-card h3 { margin-bottom: 6px; color: var(--ink); font-size: 17px; letter-spacing: -0.005em; line-height: 1.25; }
.service-card p  { font-size: 14px; line-height: 1.6; }

.service-cards__note {
  text-align: center;
  margin-top: var(--sp-3);
  font-size: 13px;
  color: var(--taupe);
}

.service-cards__note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== DARK MISSION BAND ========== */
.mission-band {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp-10) var(--sp-5);
  text-align: center;
}

.mission-band h2 {
  color: var(--paper);
  max-width: 740px;
  margin: 0 auto;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.mission-band p {
  color: var(--blue);
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--accent);
  color: var(--paper);
  padding: var(--sp-10) 0;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.cta-band__copy h2 {
  color: var(--paper);
  line-height: 1.1;
  margin-bottom: 14px;
  font-size: clamp(24px, 3.2vw, 40px);
}

.cta-band__copy p {
  color: rgba(250,248,244,.85);
  font-size: 16px;
  max-width: 360px;
}

.cta-band__form {
  background: var(--paper);
  border-radius: 16px 16px 4px 16px;
  padding: var(--sp-4);
}

/* ID selector so media queries below can override it (inline style removed from HTML) */
#home-chat-win { max-height: 340px; }

/* Centered single-col variant */
.cta-band--centered { text-align: center; }
.cta-band--centered h2 { margin: 0 auto 14px; max-width: 540px; color: var(--paper); }
.cta-band--centered p  { margin: 0 auto var(--sp-3); max-width: 460px; color: rgba(250,248,244,.85); }

.section-intro {
  max-width: 680px;
  font-size: 16px;
  margin-top: 10px;
}

.services-h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin: var(--sp-2) 0 20px;
}

/* ========== SERVICES FULL LIST (SEO/GEO static content) ========== */
.services-full {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--hairline);
}

.services-full__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--sp-4);
}

.services-full__item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--hairline);
}

.services-full__name {
  font-size: 15px;
  margin: 0;
  padding-top: 2px;
}

.services-full__name a {
  color: var(--ink);
  text-decoration: none;
}

.services-full__name a:hover { color: var(--accent); }

.services-full__body p {
  font-size: 14px;
  margin-bottom: var(--sp-2);
  max-width: 520px;
}

.services-full__body ul {
  font-size: 13px;
  color: var(--taupe);
  padding-left: 16px;
  line-height: 1.9;
  margin: 0;
}

/* ========== SERVICES INTERACTIVE PAGE ========== */
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: var(--sp-5) 0 var(--sp-3);
}

.services-tab {
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 10px 18px;
  border-radius: 12px 12px 3px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--taupe);
  transition: var(--t-color), border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.services-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.services-tab:hover:not(.active) { border-color: #c8c0b4; color: var(--ink); }

.services-panel {
  background: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: 18px 18px 4px 18px;
  padding: var(--sp-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  align-items: stretch;
  min-height: 260px;
}

.panel-graphic {
  border-radius: 12px 12px 3px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper) 50%, rgba(197,88,51,0.09) 100%);
  cursor: pointer;
  transition: box-shadow 0.2s ease, filter 0.2s ease;
}

.panel-graphic:hover {
  box-shadow: 0 4px 20px rgba(197,88,51,0.14);
  filter: brightness(0.96);
}

.panel-graphic__label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.panel-graphic__anim {
  width: 100%;
  display: block;
}

.panel-graphic__anim svg {
  width: 100% !important;
  height: auto !important;
  display: block;
}

.panel-graphic__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #7a7068;
}

.panel-graphic__note::before {
  content: '';
  width: 34px;
  height: 34px;
  border: 1.5px dashed var(--accent);
  border-radius: 9px 9px 2px 9px;
  flex-shrink: 0;
}

.panel-copy h3 { font-size: 24px; margin-bottom: 10px; }
.panel-copy p  { font-size: 15px; margin-bottom: 16px; }

.panel-copy__points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: var(--sp-3);
}

.panel-copy__points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  align-items: flex-start;
}

.panel-copy__points li::before {
  content: '—';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

@keyframes wipeIn {
  from { clip-path: inset(0 0 0 100%); opacity: 0; }
  to   { clip-path: inset(0 0 0 0%);   opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.panel-graphic.is-animating { animation: fadeUp .4s ease both; }
.panel-copy.is-animating    { animation: fadeUp .6s ease both var(--copy-delay, 0.3s); }

/* ========== SERVICE DETAIL ========== */
.breadcrumb {
  font-size: 13px;
  color: var(--taupe);
  padding: var(--sp-3) 0 0;
}

.breadcrumb a { color: var(--taupe); transition: var(--t-color); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb b { color: var(--ink); font-weight: 600; }
.breadcrumb__sep { margin: 0 6px; }

.svc-hero {
  padding: var(--sp-10) 0 var(--sp-12);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-6);
  align-items: center;
}

.svc-hero__graphic {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-hero h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.svc-hero p  { font-size: 16px; margin-bottom: var(--sp-3); max-width: 440px; }

.svc-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.svc-hero__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.svc-hero__price small {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--taupe);
}

.whats-possible {
  background: var(--ink);
  padding: var(--sp-12) 0;
}

.whats-possible h2 {
  margin-bottom: var(--sp-4);
  color: var(--paper);
}


.whats-possible__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whats-possible .card {
  background: rgba(250, 248, 244, 0.05);
  border-color: rgba(250, 248, 244, 0.1);
  padding: var(--sp-5);
}


.whats-possible .card h4 { color: var(--paper); }

.whats-possible .card p { color: rgba(250, 248, 244, 0.58); }

.how-it-works { padding: var(--sp-10) 0; }
.how-it-works h2 { margin-bottom: var(--sp-4); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step { text-align: center; padding: var(--sp-1); }

.step__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.step h4 { margin-bottom: 5px; }
.step p  { font-size: 13px; }

.included-section {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--hairline);
}

.included-section h2 { margin-bottom: var(--sp-5); }

.included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: start;
  margin-bottom: var(--sp-6);
}

.included-list .mission-chip__name { white-space: nowrap; }
.included-list .mission-chip__line { width: 0; min-width: 100%; }


.pairs-strip {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--hairline);
}

.pairs-strip__label {
  font-size: 11px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
  padding-top: 2px;
}

.pairs-simple {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pairs-simple li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--taupe);
}

.pairs-simple li::before {
  content: '+';
  font-size: 14px;
  font-weight: 600;
  color: var(--placeholder);
  flex-shrink: 0;
}

/* ========== ABOUT PAGE ========== */
.about-hero { padding: var(--sp-10) 0 var(--sp-12); }
.about-hero__inner { max-width: 560px; }
.about-hero h1 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.about-hero p  { font-size: 16px; max-width: 440px; margin-bottom: var(--sp-3); }

.ethos-quote {
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp-12) 0;
}

/* Large decorative quote mark adds authorship without being cliché */
.ethos-quote blockquote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: -0.02em;
  max-width: 820px;
  line-height: 1.22;
  color: var(--paper);
  position: relative;
  padding-left: 32px;
}

.ethos-quote blockquote::before {
  content: '"';
  position: absolute;
  left: -8px;
  top: -12px;
  font-size: 6em;
  line-height: 1;
  color: rgba(197,88,51,.18);
  font-family: Georgia, serif;
  pointer-events: none;
}

.ethos-quote__attr {
  margin-top: var(--sp-3);
  padding-top: var(--sp-2);
  border-top: 1px dashed rgba(137,171,171,.3);
  max-width: 820px;
  padding-left: 32px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--blue);
}

.missions-section {
  background: var(--panel);
  border-top: 1px solid #ddd6c9;
  border-bottom: 1px solid #ddd6c9;
  padding: var(--sp-10) 0;
}

.missions-section h2 { margin: 10px 0 14px; }

.missions-section__intro {
  font-size: 15px;
  max-width: 580px;
  margin-bottom: var(--sp-5);
}

.missions-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: start;
}

.missions-chips .mission-chip__name { white-space: nowrap; }
.missions-chips .mission-chip__line { width: 0; min-width: 100%; }

.mission-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 13px 13px 3px 13px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.mission-chip__name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1;
}

.mission-chip__name::after {
  content: '+';
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.22s ease, opacity 0.2s ease;
}

html:not(.using-touch) .mission-chip:hover .mission-chip__name::after {
  transform: rotate(45deg);
  opacity: 0.5;
}

.mission-chip--overlooked .mission-chip__name::after { color: var(--blue); }


.mission-chip__line {
  font-size: 12px;
  color: rgba(250,248,244,.85);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.4s ease;
}

html:not(.using-touch) .mission-chip:hover {
  z-index: 11;
  border-color: var(--accent);
  background: var(--accent);
}

html:not(.using-touch) .mission-chip:hover .mission-chip__name { color: var(--paper); }
html:not(.using-touch) .mission-chip:hover .mission-chip__name::after { color: var(--paper); opacity: 1; }

html:not(.using-touch) .mission-chip:hover .mission-chip__line {
  max-height: 200px;
  opacity: 1;
  margin-top: 7px;
}

.mission-chip--overlooked {
  background: var(--ink);
  border-color: var(--ink);
}

.mission-chip--overlooked .mission-chip__name { color: var(--paper); }
.mission-chip--overlooked .mission-chip__line { color: var(--blue); }

html:not(.using-touch) .mission-chip--overlooked:hover {
  background: var(--ink);
  border-color: var(--accent);
}

.mission-chip.is-open {
  z-index: 11;
  border-color: var(--accent);
  background: var(--accent);
}
.mission-chip.is-open .mission-chip__name { color: var(--paper); }
.mission-chip.is-open .mission-chip__name::after { color: var(--paper); opacity: 1; transform: rotate(45deg); }
.mission-chip.is-open .mission-chip__line { max-height: 200px; opacity: 1; margin-top: 7px; }
.mission-chip--overlooked.is-open { background: var(--ink); border-color: var(--accent); }


.how-different {
  border-top: 1px solid #ddd6c9;
  padding: var(--sp-10) 0;
}
.how-different h2 { margin: 10px 0 20px; }

.how-different__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.how-different__card {
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 3px 14px;
  padding: 20px 22px;
  background: linear-gradient(135deg, var(--paper) 55%, rgba(197,88,51,0.08) 100%);
}
.how-different__card h4 { margin-bottom: 6px; }
.how-different__card p  { font-size: 14px; }

.the-door-block {
  margin-bottom: var(--sp-10);
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 18px 18px 4px 18px;
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: var(--sp-4);
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.04), 0 2px 10px rgba(0,0,0,0.06);
}

/* Flat illustration scene: sky → ground */
.the-door-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.02) 30%, transparent 42%),
    linear-gradient(to bottom, transparent 66%, rgba(70,35,8,0.06) 100%),
    radial-gradient(ellipse 130% 80% at 50% 50%, transparent 55%, rgba(0,0,0,0.04) 100%);
}

.the-door-block > * { position: relative; z-index: 1; }

/* Sketch illustration — always positioned inside .door-unit so it moves with the SVG as one unit.
   Tune --door-w on .door-graphic and the top/transform offsets here to align arches.
   The sketch arch hides behind the SVG arch (z:0 < trigger z:1). */
.door-scene__bg {
  position: absolute;
  /* Width as a ratio of the SVG width — both scale together when --door-w changes */
  width: calc(var(--door-w) * 3.4);
  max-width: none; /* overrides global img { max-width: 100% } which was capping at door-unit width */
  height: auto;
  /* Horizontally: sketch arch should be at the sketch image's horizontal center,
     which aligns with door-unit's center (same as SVG arch center after its translateX). */
  left: 45%;
  /* Vertically: start at top:0 (SVG arch peak = top of door-unit). Tune this offset
     to slide the sketch up or down until its arch sits behind the SVG arch. */
  top: -109%;
  transform: translateX(-50%);
  z-index: 0; /* below .secret-door-trigger (z:1) — SVG arch physically covers sketch arch */
  mix-blend-mode: color-burn; /* white × panel-bg = panel-bg (white vanishes); lines stay dark */
  opacity: 1;
  pointer-events: none;
  user-select: none;
  /* Fade the sketch at its left and top edges so it reads as background atmosphere,
     not dominant foreground. Tune the % stops to taste. */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 32%),
    linear-gradient(to bottom, transparent 0%, black 22%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 32%),
    linear-gradient(to bottom, transparent 0%, black 22%);
  mask-composite: intersect;
}

.the-door-block__badge {
  display: inline-block;
  background: var(--blue);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 7px 7px 2px 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.the-door-block h2 { font-size: clamp(22px, 2.5vw, 28px); margin-bottom: 12px; line-height: 1.1; }
.the-door-block p  { font-size: 15px; max-width: 500px; margin-bottom: var(--sp-3); }

.door-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  --door-w: 252px;
}

/* Specificity 0,2,0 beats .the-door-block > * (0,1,1), so z-index:auto wins here.
   Without a z-index, door-graphic forms no stacking context of its own — door-scene__bg
   blends inside the-door-block's isolation group instead, where the panel background
   covers the full block area including the sketch's overflow region. */
.the-door-block > .door-graphic {
  z-index: auto;
}

/* The glue: contains sketch + SVG + hint as a locked unit.
   door-graphic centers this unit; the unit's size is set by the SVG alone. */
.door-unit {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.door-hint {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: var(--ink);
  opacity: 0.28;
  margin: 0;
  user-select: none;
  pointer-events: none;
  display: grid;
}

.door-hint__idle,
.door-hint__hover {
  grid-area: 1 / 1;
  transition: opacity 0.4s ease;
}

.door-hint__hover { opacity: 0; }
.door-hint__touch { display: none; }

.secret-door-trigger:hover ~ .door-hint .door-hint__idle  { opacity: 0; }
.secret-door-trigger:hover ~ .door-hint .door-hint__hover { opacity: 1; }

.secret-door-trigger {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.secret-door-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
  border-radius: 50%;
}

.secret-door-svg {
  width: var(--door-w);
  height: calc(var(--door-w) * 0.6667); /* preserves 252:168 aspect ratio */
  display: block;
  transform: translateX(-16.67%);
}

.door-arch  { fill: url(#arch-grad); }
.door-panel { fill: url(#panel-grad); }


/* Ember particles inside room interior */
@keyframes ember-drift {
  0%   { transform: translate(0, 0) scale(0.4);                                opacity: 0;    }
  14%  { transform: translate(0, 0) scale(1);                                  opacity: 0.88; }
  52%  { transform: translate(var(--dx, 2px), var(--dy, -5px)) scale(1);       opacity: 0.75; }
  100% { transform: translate(var(--dx, 2px), var(--dy, -5px)) scale(0.12);    opacity: 0;    }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.72; }
  40%      { opacity: 1;    }
  52%      { opacity: 0.55; }
  70%      { opacity: 0.90; }
}

.ember {
  transform-box: fill-box;
  transform-origin: center;
  animation: ember-drift 3s ease-in-out infinite backwards;
}
.e1 { --dx:  3px; --dy: -4px; animation-delay: 0.0s; animation-duration: 7.2s; }
.e2 { --dx: -2px; --dy: -6px; animation-delay: 1.4s; animation-duration: 9.1s; }
.e3 { --dx:  4px; --dy: -3px; animation-delay: 2.8s; animation-duration: 8.0s; }
.e4 { --dx: -3px; --dy: -5px; animation-delay: 0.6s; animation-duration: 10.4s; }
.e5 { --dx:  2px; --dy: -7px; animation-delay: 3.6s; animation-duration: 7.8s; }
.e6 { --dx: -4px; --dy: -4px; animation-delay: 1.9s; animation-duration: 9.6s; }
.e7 { --dx:  1px; --dy: -6px; animation-delay: 4.8s; animation-duration: 8.4s; }

.glow-pulse {
  animation: glow-pulse 4.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ember, .glow-pulse { animation: none; }
}

/* ========== VIEW TRANSITIONS ========== */
/* Default cross-fade for all same-origin navigations.
   about.html ↔ the-open-door use inline pagereveal scripts to override this. */
@view-transition {
  navigation: auto;
}

@keyframes vt-push-out {
  from { opacity: 1; transform: scale(1);    }
  to   { opacity: 0; transform: scale(1.14); }
}

@keyframes vt-ease-in {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes vt-pull-back {
  from { opacity: 1; transform: scale(1);    }
  to   { opacity: 0; transform: scale(0.96); }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.01ms;
  }
}

/* ========== THE OPEN DOOR HUB ========== */
/*
 * Hub palette — every value derived from brand orange #C55833 (hsl 17° 58% 49%)
 *   --hub-hi      warm cream  — headings, max contrast
 *   --hub-mid     warm tan    — readable body text
 *   --hub-lo      warm sienna — nav inactive, labels
 *   --hub-dim     barely-there warm — fine print
 *   --hub-surface orange-tinted card fill
 *   --hub-border  orange-tinted hairlines
 *   --hub-glow    badge fills / ambient accent
 */
.hub-page {
  --hub-hi:      #f4e7d3;
  --hub-mid:     #c4a07a;
  --hub-lo:      #8b6245;
  --hub-dim:     rgba(244,220,188,.2);
  --hub-surface: rgba(197,88,51,.05);
  --hub-border:  rgba(197,88,51,.14);
  --hub-glow:    rgba(197,88,51,.18);

  background: radial-gradient(92% 82% at 22% 96%, #3a2210 0%, #1c1108 48%, #0f0904 100%) fixed;
  color: var(--hub-hi);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Lantern ambient firelight — keyframes */
@keyframes odm-flicker {
  0%, 100% { opacity: .82; transform: scale(1); }
  43%      { opacity: 1; }
  50%      { opacity: .66; transform: scale(1.03); }
  57%      { opacity: .95; }
}
@keyframes odm-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hub-lantern-layer { animation: none !important; }
}

/* --- Navigation --- */
.hub-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 20px var(--sp-5);
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.hub-nav__brand {
  position: relative;
  flex-shrink: 0;
}

.hub-nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.hub-nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.hub-nav__return {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--t-color);
}

.hub-nav__return:hover { color: var(--hub-hi); }

.hub-nav__links {
  display: flex;
  gap: var(--sp-4);
  margin-left: auto;
  align-items: center;
}

.hub-nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--t-color);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.hub-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1.5px;
  background: var(--hub-hi);
  transition: right 0.25s ease;
}

.hub-nav__links a:hover { color: var(--hub-hi); }

.hub-nav__links a[aria-current="page"] {
  color: var(--hub-hi);
}

.hub-nav__links a[aria-current="page"]::after {
  right: 0;
  background: var(--accent);
}

.hub-nav__links .link-soon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hub-dim);
  pointer-events: none;
}

/* Hub nav mobile toggle (hidden on desktop) */
.hub-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  color: var(--accent);
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
}

.hub-nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.hub-nav--open .hub-nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hub-nav--open .hub-nav__toggle span:nth-child(2) { opacity: 0; }
.hub-nav--open .hub-nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hub-nav__mobile-panel {
  display: none;
  flex-direction: column;
  flex-basis: 100%;
  border-top: 1px solid var(--hub-border);
  padding: 4px 0 12px;
}

.hub-nav--open .hub-nav__mobile-panel { display: flex; }

.hub-nav__mobile-panel a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--hub-border);
  transition: color 0.2s ease;
  display: block;
}

.hub-nav__mobile-panel a:hover { color: var(--hub-hi); }

.hub-nav__mobile-panel a[aria-current="page"] {
  color: var(--hub-hi);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.hub-nav__mobile-return {
  font-size: 10px !important;
  letter-spacing: 0.8px !important;
  color: var(--hub-mid) !important;
}

.hub-nav__mobile-panel .link-soon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hub-lo);
  padding: 13px 0;
  display: block;
  pointer-events: none;
}

/* --- Hero --- */
.hub-hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 66px);
  padding: var(--sp-8) var(--sp-5);
}

.hub-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.hub-hero .eyebrow {
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hub-hero h1 {
  color: var(--hub-hi);
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 22px;
  line-height: 1.05;
}

.hub-hero p {
  color: var(--hub-mid);
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
  margin-bottom: var(--sp-5);
}

.hub-hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hub-story-count {
  font-size: 13px;
  color: var(--hub-lo);
}

/* "Ease the door closed" back button */
.hub-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--hub-border);
  color: var(--hub-lo);
  padding: 14px 30px;
  border-radius: 999px 999px 3px 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hub-back-btn:hover {
  color: var(--hub-hi);
  border-color: rgba(197,88,51,.32);
}


/* --- Sections below hero --- */
.hub-share-card {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto var(--sp-8);
  padding: 0 var(--sp-5);
}

.hub-share-card__inner {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: 18px 18px 4px 18px;
  padding: var(--sp-4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3);
  align-items: center;
}

.hub-share-card h3 { color: var(--hub-hi); font-size: 22px; margin-bottom: 6px; }
.hub-share-card p  { color: var(--hub-mid); font-size: 14px; }

.hub-section {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5) var(--sp-8);
}

.hub-section h2 { color: var(--hub-hi); font-size: 22px; margin-bottom: 18px; }

.hub-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hub-step {
  background: var(--hub-surface);
  border: 1px solid var(--hub-border);
  border-radius: 12px 12px 3px 12px;
  padding: 20px;
}

.hub-step__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 8px;
}

.hub-step h4 { color: var(--hub-hi); margin-bottom: 5px; font-size: 15px; }
.hub-step p  { color: var(--hub-lo); font-size: 13px; }

.hub-docudrama {
  max-width: var(--max-w);
  margin: 0 auto var(--sp-8);
  padding: 0 var(--sp-5);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-3);
  align-items: stretch;
}

.hub-docudrama__inner {
  border: 1px solid var(--hub-border);
  border-radius: 16px 16px 3px 16px;
  padding: 24px 22px;
}

.hub-docudrama__inner h3 { color: var(--hub-hi); font-size: 20px; margin-bottom: 10px; }
.hub-docudrama__inner p  { color: var(--hub-mid); font-size: 14px; }

.hub-docudrama__badge {
  display: inline-block;
  background: var(--hub-glow);
  color: var(--accent);
  border: 1px solid rgba(197,88,51,.28);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hub-docudrama__invite {
  border: 1px solid var(--hub-border);
  border-radius: 16px 16px 3px 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--hub-glow);
}

.hub-docudrama__invite-lead {
  color: var(--hub-hi);
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.hub-docudrama__invite p:not(.hub-docudrama__invite-lead) {
  color: var(--hub-mid);
  font-size: 13px;
  line-height: 1.6;
}


.hub-growth {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hub-border);
  padding: var(--sp-5) 0;
  text-align: center;
}

.hub-growth p {
  color: var(--hub-dim);
  font-size: 13px;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  line-height: 1.72;
}

/* ========== HUB FOOTER ========== */
.hub-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hub-border);
  padding: var(--sp-6) 0;
}

.hub-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hub-footer__logo img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.hub-footer__logo:hover img { opacity: 1; }

.hub-footer__links {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-left: auto;
}

.hub-footer__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hub-lo);
  text-decoration: none;
  transition: color 0.2s;
}

.hub-footer__links a:hover { color: var(--hub-hi); }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ========== CONTACT CHAT ========== */
.contact-chat-page {
  min-height: calc(100vh - 101px);
  min-height: calc(100svh - 101px);
  padding: var(--sp-6) 0 var(--sp-10);
}

.contact-chat__header {
  margin-bottom: var(--sp-5);
}

.contact-chat__header h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin: var(--sp-2) 0 12px;
}

.contact-chat__subhead {
  font-size: 16px;
  max-width: 520px;
  margin-bottom: var(--sp-2);
}

.contact-chat__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-chat__meta-item {
  font-size: 13px;
  color: var(--taupe);
  text-decoration: none;
}

a.contact-chat__meta-item:hover { color: var(--accent); }

.contact-chat__meta-sep {
  color: var(--hairline);
  font-size: 16px;
  line-height: 1;
}

/* Conversation window */
.contact-chat__window {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 18px 18px 3px 18px;
  min-height: 220px;
  max-height: 520px;
  overflow-y: auto;
  padding: var(--sp-4);
  scroll-behavior: smooth;
  margin-bottom: var(--sp-2);
}

.contact-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Input zone — sits below the window */
.contact-chat__input-zone {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px 14px 3px 14px;
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 64px;
  transition: opacity 0.2s ease;
}

/* Text input row */
.contact-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--placeholder);
  border-radius: 999px 999px 3px 999px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-input:focus { border-color: var(--accent); }

/* Textarea */
.contact-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--placeholder);
  border-radius: 14px 14px 3px 14px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 96px;
  transition: border-color 0.2s ease;
}

.contact-textarea:focus { border-color: var(--accent); }

.contact-textarea-footer {
  display: flex;
  justify-content: flex-end;
}

/* Send button */
.contact-send-btn {
  background: var(--accent);
  color: var(--paper);
  border: none;
  border-radius: 999px 999px 3px 999px;
  padding: 11px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.contact-send-btn:hover { filter: brightness(0.88); }

.contact-send-btn--wide { padding: 11px 28px; }

/* Skip button */
.contact-skip-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--taupe);
  cursor: pointer;
  padding: 0 2px;
  text-align: left;
  transition: color 0.18s ease;
}

.contact-skip-btn:hover { color: var(--ink); }

/* Chips (services + budget) */
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-chip {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px 16px 3px 16px;
  padding: 9px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--taupe);
  cursor: pointer;
  line-height: 1.3;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.contact-chip:hover { border-color: var(--ink); color: var(--ink); }

.contact-chip.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* Continue button (multi-select chips) */
.contact-continue-btn {
  align-self: flex-end;
  background: var(--accent);
  color: var(--paper);
  border: none;
  border-radius: 999px 999px 3px 999px;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.contact-continue-btn:hover { filter: brightness(0.88); }

/* Footer note */
.contact-chat__story-note {
  margin-top: var(--sp-4);
  font-size: 13px;
  color: var(--taupe);
  text-align: center;
}

.contact-chat__story-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== FAQ CHAT ========== */
.faq-chat {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--hairline);
}

.faq-chat .eyebrow { margin-bottom: 8px; }
.faq-chat h2       { margin-bottom: var(--sp-4); }

/* Scrollable chat window — hidden until first question is clicked */
.faq-chat__window {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 18px 18px 3px 18px;
  height: 0;
  overflow: hidden;
  padding: 0 var(--sp-3);
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0;
  scroll-behavior: smooth;
  transition: height 0.38s ease, opacity 0.3s ease, margin 0.38s ease, padding 0.38s ease;
  pointer-events: none;
}

.faq-chat__window.is-open {
  height: 300px;
  overflow-y: auto;
  padding: var(--sp-3);
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-3);
  opacity: 1;
  pointer-events: auto;
}

/* Inner flex column — messages stack top-down */
.faq-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

/* Idle placeholder */
.faq-chat__idle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  font-size: 13px;
  font-style: italic;
  opacity: 0.5;
}

/* Sent bubble (visitor's question) — BR corner squared = tail right */
.faq-msg-sent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.faq-bubble-sent {
  background: var(--accent);
  color: var(--paper);
  border-radius: 16px 16px 3px 16px;
  padding: 11px 16px;
  max-width: 82%;
  font-size: 14px;
  line-height: 1.5;
  animation: faq-in-right 0.28s ease both;
}

/* Delivery status line */
.faq-status {
  font-size: 11px;
  color: var(--taupe);
  margin-top: 4px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-status.shown { opacity: 1; }

/* Received bubble (ODM's answer) — TL corner squared = tail left */
.faq-msg-received {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* iOS-style reply preview shown when answering a queued question */
.faq-reply-preview {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(107, 95, 88, 0.09);
  border-left: 2px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 5px 10px;
  max-width: 88%;
  overflow: hidden;
  animation: faq-in-left 0.22s ease both;
}

.faq-reply-icon {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

.faq-reply-text {
  font-size: 12px;
  color: var(--taupe);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-bubble-received {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 3px 16px 16px 16px;
  padding: 11px 16px;
  max-width: 88%;
  font-size: 14px;
  line-height: 1.68;
  animation: faq-in-left 0.3s ease both;
}

/* Typing indicator */
.faq-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 3px 16px 16px 16px;
  padding: 13px 18px;
  animation: faq-in-left 0.22s ease both;
}

.faq-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--taupe);
  opacity: 0.45;
  animation: faq-dot-pop 1.3s ease-in-out infinite;
}

.faq-dot:nth-child(2) { animation-delay: 0.2s; }
.faq-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes faq-dot-pop {
  0%, 60%, 100% { transform: translateY(0);    opacity: 0.45; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

@keyframes faq-in-right {
  from { opacity: 0; transform: translateX(10px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

@keyframes faq-in-left {
  from { opacity: 0; transform: translateX(-10px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* Question trigger chips — auto-suggest row above a chat input */
.faq-chat__questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-q-btn {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px 16px 3px 16px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--taupe);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.22s ease, opacity 0.25s ease;
}

.faq-q-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.faq-q-btn:active {
  background: rgba(197, 88, 51, 0.06);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(0.97);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .hero-statement .eyebrow { display: none; }
  .mission-band { display: none; }
  .container,
  .container--sm { padding: 0 var(--sp-3); }

  .navbar { position: fixed; top: 0; left: 0; right: 0; }
  .navbar__inner { padding: 14px var(--sp-3); gap: 0; }
  .navbar__links { display: none; }
  .navbar__logo img { height: 44px; }
  .navbar__toggle { display: flex; padding: 10px 8px; min-width: 44px; min-height: 44px; margin-left: 0; }
  .navbar__quick-contact { display: flex; align-items: center; gap: 0; margin-left: auto; }
  .navbar__mobile { padding-left: var(--sp-3); padding-right: var(--sp-3); }
  /* Offset content so it starts below the fixed navbar */
  body:not(.hub-page) main { padding-top: 73px; }
  .service-subnav__inner { padding: 0 var(--sp-3); }

  .footer__inner { padding: 0 var(--sp-3); }
  .footer__links { gap: var(--sp-3); }

  .hero-statement { padding: var(--sp-8) var(--sp-3) var(--sp-8); }
  /* Needs matching specificity to override .above-fold > .hero-statement (0,2,0) */
  .above-fold { min-height: calc(100vh - 100px); min-height: calc(100svh - 100px); display: flex; flex-direction: column; }
  .above-fold > .hero-statement { padding-left: var(--sp-3); padding-right: var(--sp-3); flex: 1; min-height: 0; }

  /* Mission band has hardcoded 40px sides — align with container at 24px */
  .mission-band { padding-left: var(--sp-3); padding-right: var(--sp-3); }

  .service-grid          { grid-template-columns: 1fr; gap: 12px; }

  /* Icon left, heading + body right — only when cards are full-width */
  .service-card {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: var(--sp-2);
    padding: 20px;
  }
  .service-card__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    align-self: start;
  }
  .service-card__rule { display: none; }
  .service-card h3 { grid-column: 2; grid-row: 1; margin-bottom: 2px; }
  .service-card p  { grid-column: 2; grid-row: 2; }

  .cta-band__inner       { grid-template-columns: 1fr; gap: var(--sp-4); }
  .services-panel        { grid-template-columns: 1fr; }
  .panel-graphic         { display: none; }
  .panel-graphic.is-animating,
  .panel-copy.is-animating { animation: none; }
  .services-full__item   { grid-template-columns: 1fr; gap: var(--sp-2); }

  .faq-chat { padding: var(--sp-6) 0; }

  .pairs-strip { flex-direction: column; gap: var(--sp-2); }
  .pairs-simple { gap: 12px; }

  .svc-hero { grid-template-columns: 1fr; padding: var(--sp-6) 0; }
  .svc-hero__content { order: -1; }
  .svc-hero__graphic { display: none; }
  .whats-possible { padding: var(--sp-6) 0; }
  .how-it-works { padding: var(--sp-6) 0; }
  .included-section { padding: var(--sp-6) 0; }
  .whats-possible .card { padding: var(--sp-3); }
  .whats-possible__grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .how-different__grid   { grid-template-columns: 1fr; }
  .the-door-block { grid-template-columns: 1fr; gap: var(--sp-4); }
  /* One var scales both SVG and sketch together; 180/252 ≈ 0.714 of desktop size */
  .door-graphic { --door-w: 180px; }
  .door-hint__idle,
  .door-hint__hover { display: none; }
  .door-hint__touch { opacity: 1; }

  /* Center text content once the block stacks to a single column */
  .the-door-block > div:first-child { text-align: center; }
  .the-door-block p { margin-left: auto; margin-right: auto; }

  .about-hero { padding: var(--sp-6) 0; }
  .missions-section,
  .how-different { padding: var(--sp-6) 0; }
  .how-different__card { padding: var(--sp-3); }

  .section--spacious { padding: var(--sp-5) 0 var(--sp-6); }

  .contact-chat-page {
    min-height: calc(100vh - 73px);
    min-height: calc(100svh - 73px);
  }

  .hub-nav   { padding: 14px var(--sp-3); gap: var(--sp-3); }
  .hub-hero  { min-height: auto; padding: var(--sp-10) var(--sp-3) var(--sp-8); }
  .hub-share-card { padding: 0 var(--sp-3); }
  .hub-share-card__inner { grid-template-columns: 1fr; }
  .hub-section { padding-left: var(--sp-3); padding-right: var(--sp-3); }
  .hub-steps   { grid-template-columns: repeat(2, 1fr); }
  .hub-docudrama { padding: 0 var(--sp-3); grid-template-columns: 1fr; }
  .hub-growth { padding: var(--sp-4) 0; }

  .ethos-quote { padding: var(--sp-6) 0; }
  .ethos-quote blockquote { padding-left: 0; }
  .ethos-quote blockquote::before { display: none; }
  .ethos-quote__attr { padding-left: 0; }
}

@media (max-width: 600px) {
  h1 { font-size: 36px; }
  h2 { font-size: 26px; text-align: center; }

  /* Tighter side padding on small phones */
  .container,
  .container--sm { padding: 0 var(--sp-2); }

  /* Reduce hero vertical padding */
  .hero-statement { padding: var(--sp-6) var(--sp-2) var(--sp-6); }
  /* Needs matching specificity to override .above-fold > .hero-statement (0,2,0) */
  .above-fold > .hero-statement { padding: var(--sp-6) var(--sp-2); }

  /* Stack hero buttons full-width for easier tapping */
  .hero-statement__btns { flex-direction: column; align-items: stretch; }
  .hero-statement__btns .btn { justify-content: center; }

  /* Prevent iOS Safari auto-zoom (requires font-size >= 16px on inputs) */
  .contact-input,
  .contact-textarea { font-size: 16px; }

  .faq-chat__window.is-open { height: 360px; }
  .faq-bubble-sent,
  .faq-bubble-received { max-width: 96%; }

  /* ── Hub nav: collapse to hamburger ── */
  .hub-nav { flex-wrap: wrap; gap: 0; padding: 12px var(--sp-3); }
  .hub-nav__return { display: none; }
  .hub-nav__links  { display: none; }
  .hub-nav__toggle { display: flex; }
  .hub-nav__logo img { height: 36px; }

  /* ── Hub hero ── */
  .hub-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hub-hero__actions .btn,
  .hub-hero__actions .hub-back-btn { text-align: center; justify-content: center; }

  /* ── Hub section ── */
  .hub-section h2 { text-align: center; }
  .hub-steps { grid-template-columns: 1fr; }

  /* ── Hub docudrama & invite ── */
  .hub-docudrama__inner p,
  .hub-docudrama__invite p:not(.hub-docudrama__invite-lead) { font-size: 15px; }
  .hub-docudrama__invite-lead { font-size: 16px; }
  .hub-docudrama__invite .btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* ── Global button tap targets ── */
  .btn { min-height: 44px; }
  .btn--sm { min-height: 40px; font-size: 13px; }

  /* ── Hub footer ── */
  .hub-footer__inner { flex-direction: column; align-items: center; gap: var(--sp-3); padding: 0 var(--sp-3); }
  .hub-footer__links { gap: var(--sp-2); flex-wrap: wrap; justify-content: center; margin-left: 0; }

  /* ── Contact page: full-screen native messaging UI ──
     All rules scoped to body.page--contact.
     Natural block layout (no position:fixed) so iOS handles keyboard scroll
     natively. dvh recalculates on Android/Chrome when keyboard opens.
     73px = mobile navbar: 44px logo + 14px×2 padding + 1px border. */

  body.page--contact .contact-chat-page {
    height: calc(100dvh - 73px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
  }

  /* No side padding — chat bleeds edge-to-edge like a native app */
  body.page--contact .container--sm {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  /* Hero copy and contact meta both gone — phone/email live in the navbar */
  body.page--contact .contact-chat__header { display: none; }

  /* Story note sits above the chat window with its own horizontal padding */
  body.page--contact .contact-chat__story-note {
    flex-shrink: 0;
    order: 1;
    margin-top: 0;
    padding: 8px var(--sp-2) 6px;
    text-align: left;
    font-size: 12px;
  }

  /* Chat window fills remaining space, no border/radius — native thread feel.
     overflow-y: scroll (not auto) keeps scrollbar track reserved so width
     stays stable when content first appears. */
  body.page--contact .contact-chat__window {
    flex: 1;
    min-height: 0;
    max-height: none;
    order: 2;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: var(--sp-3) var(--sp-2);
    overflow-y: scroll;
    overscroll-behavior-y: contain;
  }

  /* Input bar: flat strip with a top rule — no card border or radius */
  body.page--contact .contact-chat__input-zone {
    flex-shrink: 0;
    order: 3;
    border: none;
    border-top: 1px solid var(--hairline);
    border-radius: 0;
    padding: var(--sp-2);
    margin-bottom: max(12px, env(safe-area-inset-bottom));
    background: #fff;
  }

  body.page--contact .footer { display: none; }

  .missions-chips .mission-chip,
  .included-list .mission-chip { width: 100%; }
  .missions-chips .mission-chip__name,
  .included-list .mission-chip__name { white-space: normal; }

  .steps-grid  { grid-template-columns: 1fr; }
  .hub-steps   { grid-template-columns: 1fr; }

  .footer      { padding: var(--sp-3) 0; }
  .footer__inner { justify-content: center; align-items: center; gap: var(--sp-2); padding: 0 var(--sp-2); }
  .footer__links { margin-left: 0; gap: var(--sp-2); justify-content: center; }
  .footer__links a { font-size: 12px; }
  .footer__nap { justify-content: center; font-size: 12px; }
  .footer__copy { display: none; }

  .mission-band   { padding: var(--sp-8) var(--sp-2); }
  .cta-band       { padding: var(--sp-4) 0; }
  .section        { padding: var(--sp-4) 0; }
  .svc-hero, .whats-possible, .how-it-works, .included-section, .faq-chat { padding: var(--sp-4) 0; }
  .faq-chat .eyebrow { text-align: center; }
  .faq-q-btn { width: 100%; text-align: left; }

  .cta-band__form { padding: var(--sp-2); }
  #home-chat-win  { max-height: 42vh; }
  .cta-band .contact-chat__window { min-height: 200px; padding: var(--sp-2); margin-bottom: 8px; }
  .cta-band .contact-chat__input-zone { min-height: auto; padding: 10px var(--sp-2); }

  .the-door-block { padding: var(--sp-3); }
  .about-hero,
  .missions-section,
  .how-different,
  .ethos-quote { padding: var(--sp-4) 0; }

  .missions-section .eyebrow,
  .how-different .eyebrow { text-align: center; }
  .missions-section__intro { text-align: center; }

  .section--spacious { padding: 36px 0 48px; }
  .services-h1 { font-size: 26px; line-height: 1.25; margin-bottom: 12px; }
  .section-intro { display: none; }
  .services-tabs { flex-wrap: nowrap; gap: 6px; margin-top: 20px; margin-bottom: 12px; }
  .services-tab  { flex: 1; min-width: 0; font-size: 11px; padding: 8px 8px; letter-spacing: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .services-panel { padding: var(--sp-3); }
  .svc-hero { min-height: 75vh; min-height: 75svh; align-content: center; }
  .about-hero { padding-top: var(--sp-5); }
}

@media (min-width: 961px) {
  .section--spacious {
    padding: var(--sp-8) 0;
    min-height: calc(100vh - 101px);
    min-height: calc(100svh - 101px);
  }
}
