/* ============================================================
   FORM + FUNKTION — Growth Partnership
   Editorial boutique-consultancy aesthetic, atmospheric imagery
   ============================================================ */

:root {
  --ink:        #14110f;   /* near-black, warm */
  --ink-soft:   #3a3530;
  --black:      #0c0a09;   /* hero / deepest */
  --paper:      #f5f1ea;   /* warm bone */
  --paper-pure: #faf7f1;
  --cream:      #ece6db;
  --line:       #d8cfc0;
  --line-dark:  #2c2825;
  --accent:     #9a6a3c;   /* muted bronze / clay */
  --gold:       #c9a063;   /* warm gold for dark grounds */
  --gold-soft:  #d8b885;
  --white:      #ffffff;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --pad:  clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Drop real photography at these paths and it appears automatically.
     Until then, a warm atmospheric gradient stands in. */
  --hero-img: url('assets/hero.jpg');
  --cta-img:  url('assets/cta.jpg');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--black); }

/* ───────── Typography primitives ───────── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}
.eyebrow--gold { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.05rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease), border-color 0.4s var(--ease);
}
.btn span { transition: transform 0.3s var(--ease); }
.btn:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }
.btn:hover span { transform: translateX(5px); }
.btn--small { padding: 0.7rem 1.2rem; font-size: 0.68rem; letter-spacing: 0.1em; }
.btn--light { background: var(--paper-pure); color: var(--ink); border-color: var(--paper-pure); }
.btn--light:hover { background: transparent; color: var(--paper-pure); }
.btn--dark { background: var(--ink); color: var(--paper-pure); border-color: var(--ink); }
.btn--dark:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold); color: var(--black); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }
.link-arrow--light { color: var(--paper); }
.link-arrow--light:hover { color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.6rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo-img { height: 92px; width: auto; }
.nav__logo-img--light { display: none; }

.nav__links { display: flex; align-items: center; gap: clamp(1.4rem, 2.2vw, 2.1rem); }
.nav__links a {
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

/* Over the dark hero: light logo + light links */
.nav--over-hero .nav__logo-img--dark { display: none; }
.nav--over-hero .nav__logo-img--light { display: block; }
.nav--over-hero .nav__links a { color: rgba(245,241,234,0.82); }
.nav--over-hero .nav__links a:hover { color: #fff; }
.nav--over-hero .nav__toggle span { background: var(--paper); }

/* Scrolled (solid) state always uses dark-on-paper */
.nav--scrolled {
  background: rgba(245, 241, 234, 0.9);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav--scrolled .nav__logo-img--dark { display: block; }
.nav--scrolled .nav__logo-img--light { display: none; }
.nav--scrolled .nav__links a { color: var(--ink-soft); }
.nav--scrolled .nav__links a:hover { color: var(--ink); }
.nav--scrolled .nav__toggle span { background: var(--ink); }
.nav--scrolled .nav__cta { background: var(--ink); color: var(--paper-pure); border-color: var(--ink); }
.nav--scrolled .nav__cta:hover { background: transparent; color: var(--ink); }

/* Right-side actions: quiet secondary link + primary CTA */
.nav__actions { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.6rem); }
.nav__assess {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  color: var(--accent);
  transition: color 0.3s var(--ease);
}
.nav__assess:hover { color: var(--ink); }
.nav--over-hero .nav__assess { color: var(--gold-soft); }
.nav--over-hero .nav__assess:hover { color: #fff; }
.nav--scrolled .nav__assess { color: var(--accent); }
.nav--scrolled .nav__assess:hover { color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.nav--open .nav__toggle span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__toggle span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 var(--pad) 1.5rem;
  background: rgba(245, 241, 234, 0.98);
  backdrop-filter: blur(14px);
}
.nav__mobile a {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile .btn { margin-top: 0.8rem; border-bottom: none; justify-content: center; }
.nav--open .nav__mobile { display: flex; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
  position: relative;
}
.section.dark {
  max-width: none;
  background: var(--ink);
  color: var(--paper);
}
/* Tighten the seam where two same-tone sections sit back to back
   (Case → Approach are both light; Results → Who We Serve are both dark) */
#case     { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
#approach { padding-top:    clamp(2.5rem, 5vw, 4rem); }
#impact   { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
#partners { padding-top:    clamp(2.5rem, 5vw, 4rem); }
.section.dark > *:not(.discovery__scrim) { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section__head { margin-bottom: clamp(3rem, 6vw, 5rem); max-width: 58rem; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }
.section__num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.dark .section__num { color: var(--gold); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.04; }
.section__title em { color: var(--accent); font-weight: 400; }
.dark .section__title { color: var(--paper-pure); }
.dark .section__title em { color: var(--gold); }
.section__sub { margin-top: 1.6rem; font-size: 1.12rem; color: var(--ink-soft); max-width: 46rem; line-height: 1.65; }
.dark .section__sub { color: #b7afa3; }

/* ============================================================
   HERO  (atmospheric / image-ready)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(9rem, 16vw, 12rem) var(--pad) clamp(2rem, 4vw, 3rem);
  color: var(--paper);
  isolation: isolate;
  /* Warm, dim-lit hospitality fallback; real photo layers on top when present */
  background-color: var(--black);
  background-image:
    radial-gradient(60% 50% at 78% 28%, rgba(201,160,99,0.32), transparent 60%),
    radial-gradient(45% 40% at 90% 12%, rgba(216,184,133,0.30), transparent 60%),
    radial-gradient(35% 45% at 65% 75%, rgba(154,106,60,0.22), transparent 65%),
    radial-gradient(120% 90% at 50% 0%, #1c1714, #0c0a09 70%);
  background-size: cover;
  background-position: center;
}
/* When assets/hero.jpg exists it renders above the gradient via this layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
/* Readability scrim — left-weighted so headline stays crisp over any photo */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.72) 38%, rgba(12,10,9,0.32) 70%, rgba(12,10,9,0.55) 100%),
    linear-gradient(0deg, rgba(12,10,9,0.85) 0%, transparent 30%);
}
.hero__inner { max-width: 56rem; }
.hero__title {
  font-size: clamp(2.8rem, 8.2vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 1.8rem 0 0;
  color: #fff;
}
.hero__title em { color: var(--gold); font-weight: 400; }
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: rgba(245,241,234,0.82);
  max-width: 38rem;
  margin-top: 1.8rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
}

/* Client brand lockup strip */
.hero__brands {
  margin-top: auto;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.hero__brands-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.45);
  font-weight: 600;
  white-space: nowrap;
}
.brandmarks {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.2rem);
  flex-wrap: wrap;
}
/* Partner logos sit on clean light chips so any logo reads over the dark hero */
.brandmark {
  background: var(--paper-pure);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}
.brandmark img {
  height: 100%;
  width: auto;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   PROBLEM  — numbered cycle, no icons
   ============================================================ */
.cycle {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.cycle__item {
  background: var(--ink);
  padding: clamp(1.6rem, 2.4vw, 2.2rem) clamp(1.3rem, 2vw, 1.7rem);
  display: flex;
  flex-direction: column;
  transition: background 0.4s var(--ease);
}
.cycle__item:hover { background: #1c1815; }
.cycle__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.cycle__item h3 { font-size: 1.22rem; color: var(--paper-pure); line-height: 1.15; margin-bottom: 0.7rem; }
.cycle__item p { font-size: 0.92rem; color: #a59c90; line-height: 1.55; }

/* ============================================================
   APPROACH  — numbered stepper, no icons
   ============================================================ */
.approach__top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.approach__intro .section__num { margin-bottom: 1.5rem; }
.approach__intro .section__title { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.approach__intro .section__sub { margin-bottom: 2rem; }

.stepper { list-style: none; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  min-width: 2.2rem;
}
.step h3 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.step p { font-size: 1rem; color: var(--ink-soft); }

.approach__exec {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.approach__exec-head h3 { font-size: 1.7rem; }
.approach__exec-head p { color: var(--ink-soft); margin-top: 0.7rem; font-size: 1rem; }
.approach__exec-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}
.approach__exec-list li {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.approach__exec-list li::before { content: "+"; position: absolute; left: 0; color: var(--accent); }

/* ============================================================
   IMPACT  — metrics
   ============================================================ */
.impact { background: var(--black); }
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-block: 1px solid var(--line-dark);
}
.metric {
  background: var(--black);
  padding: clamp(1.8rem, 3vw, 2.6rem) 1rem;
  text-align: center;
}
.metric__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.metric__num span { font-size: 0.5em; }
.metric__num--word { font-style: italic; font-size: clamp(2rem, 3.4vw, 2.9rem); }
.metric p { font-size: 0.9rem; color: #b7afa3; line-height: 1.45; max-width: 12rem; margin: 0 auto; }
.metrics__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  font-style: italic;
  color: #7a7268;
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case__head { max-width: 52rem; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.case__head .section__num { margin-bottom: 1.5rem; }
.case__name { font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.04; margin-bottom: 1.1rem; }
.case__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: 44rem;
}
.case__confidential {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* Narrative blocks */
.case__body { max-width: 64rem; }
.case__block { padding-top: 1.9rem; margin-bottom: 1.9rem; border-top: 1px solid var(--line); }
.case__block:first-child { border-top: none; padding-top: 0; }
.case__block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.case__block p { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.68; }
.case__block p + p { margin-top: 1rem; }

.case__points {
  list-style: none;
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.8rem;
}
.case__points li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.case__points li::before { content: "+"; position: absolute; left: 0; color: var(--accent); }

/* Results panel — featured */
.case__results {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--ink);
  color: var(--paper);
  border-radius: 2px;
  padding: clamp(2rem, 4.5vw, 3.4rem);
}
.case__results-k {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.case__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  margin-bottom: 2rem;
}
.case__stat {
  background: var(--ink);
  padding: clamp(1.4rem, 3vw, 2.2rem) 1.2rem;
  text-align: center;
}
.case__stat span {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.case__stat p { font-size: 0.92rem; color: #b7afa3; line-height: 1.45; }
.case__results .case__points li { color: #c8c0b4; border-bottom-color: var(--line-dark); }
.case__results .case__points li::before { color: var(--gold); }
.case__most { margin-top: 1.8rem; font-size: 1.04rem; line-height: 1.7; color: #c8c0b4; }
.case__most strong { color: var(--paper-pure); font-weight: 500; }

/* Takeaway pull-quote */
.case__takeaway {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 2px solid var(--gold);
  max-width: 54rem;
}
.case__takeaway .case__results-k { color: var(--accent); margin-bottom: 1rem; }
.case__takeaway p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
}

/* Case CTA */
.case__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid var(--line);
}
.case__cta h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); max-width: 38rem; }
.case__cta p { color: var(--ink-soft); font-size: 1.06rem; margin: 0.9rem 0 1.6rem; max-width: 38rem; }

/* ============================================================
   WHO WE PARTNER WITH  — typographic, no icons
   ============================================================ */
.partners__row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-block: 1px solid var(--line-dark);
}
.partners__row li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 300;
  color: var(--paper-pure);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2.4rem);
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
}
.partners__row li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 1.6em;
  background: var(--line-dark);
}
.partners__fit {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.partners__fit h3 { font-size: 1.5rem; color: var(--paper-pure); margin-bottom: 2rem; }
.partners__check {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: left;
}
.partners__check li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 1.02rem;
  color: #c8c0b4;
}
.partners__check li::before { content: "✦"; position: absolute; left: 0; top: 1.05rem; color: var(--gold); font-size: 0.85rem; }

/* ============================================================
   PARTNERSHIP MODEL
   ============================================================ */
.partnership__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid var(--line-dark);
  background: var(--ink);
  padding: clamp(2.2rem, 5vw, 4rem);
}
.partnership__badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border: 1px solid var(--line-dark);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}
.partnership__lead h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--paper-pure); }
.partnership__lead p { color: #b7afa3; margin-top: 1.3rem; font-size: 1.08rem; line-height: 1.65; }
.partnership__price { border-bottom: 1px solid var(--line-dark); padding-bottom: 1.8rem; margin-bottom: 1.8rem; }
.partnership__price-k { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.partnership__price-v { font-family: var(--serif); font-size: clamp(3rem, 6vw, 4.4rem); color: var(--paper-pure); line-height: 1; }
.partnership__price-v span { font-size: 1.3rem; color: var(--gold); }
.partnership__price-note { display: block; margin-top: 1rem; font-size: 0.92rem; color: #b7afa3; }
.partnership__includes { list-style: none; margin-bottom: 2rem; }
.partnership__includes li { position: relative; padding: 0.6rem 0 0.6rem 1.6rem; font-size: 0.98rem; color: var(--paper); border-bottom: 1px solid var(--line-dark); }
.partnership__includes li::before { content: "+"; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 56rem; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  padding: 1.6rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }
.faq__icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); transition: transform 0.35s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__item[open] summary { color: var(--accent); }
.faq__body { overflow: hidden; padding-bottom: 1.7rem; max-width: 44rem; }
.faq__body p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }

/* ============================================================
   DISCOVERY / CLOSING CTA  (atmospheric / image-ready)
   ============================================================ */
.discovery {
  max-width: none;
  color: var(--paper);
  isolation: isolate;
  background-color: var(--black);
  background-image:
    radial-gradient(50% 60% at 20% 30%, rgba(154,106,60,0.28), transparent 60%),
    radial-gradient(55% 55% at 85% 70%, rgba(201,160,99,0.24), transparent 60%),
    linear-gradient(160deg, #1a1512, #0c0a09 75%);
  background-size: cover;
  background-position: center;
}
.discovery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--cta-img);
  background-size: cover;
  background-position: center;
}
.discovery__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,10,9,0.82), rgba(12,10,9,0.9));
}
.discovery__inner { max-width: 62rem; margin: 0 auto; }
.discovery__inner .section__num { color: var(--gold); margin-bottom: 1.5rem; }
.discovery__title { font-size: clamp(2.4rem, 5.5vw, 4.4rem); color: var(--paper-pure); line-height: 1.02; }
.discovery__lede { font-size: 1.18rem; color: #b7afa3; margin-top: 1.5rem; max-width: 42rem; line-height: 1.6; }

.discovery__form { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.7rem; }
.field label span { color: #6b645c; text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-pure);
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 0.7rem 0.6rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); background: rgba(255,255,255,0.05); }
.field input::placeholder, .field textarea::placeholder { color: #6b645c; }
.field input:user-invalid { border-bottom-color: #a8553f; }
.discovery__submit { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.discovery__or { font-size: 0.92rem; color: #b7afa3; }
.discovery__or a { color: var(--gold); border-bottom: 1px solid var(--line-dark); padding-bottom: 1px; }
.discovery__or a:hover { color: var(--paper-pure); }
.discovery__success { grid-column: 1 / -1; font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--gold); }

/* Two conversion paths */
.discovery__path-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2.6rem;
}
.discovery__form .discovery__path-label,
.discovery__inner > .discovery__path-label { margin-top: 2.6rem; margin-bottom: 1.4rem; }
.discovery__secondary {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-dark);
}
.leadmagnet {
  margin-top: 1.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
}
.leadmagnet__lead h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--paper-pure); }
.leadmagnet__lead > p { color: #b7afa3; margin-top: 0.9rem; font-size: 1.04rem; line-height: 1.6; max-width: 42rem; }
.leadmagnet__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.8rem;
  margin: 1.6rem 0 2rem;
}
.leadmagnet__list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.4rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
  color: var(--paper);
}
.leadmagnet__list li::before { content: "+"; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   LEAD MAGNET MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,6,5,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--paper);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  color: #b7afa3;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.modal__close:hover { color: var(--gold); }
.modal__step { display: none; }
.modal__step.is-active { display: block; }
.modal__step .section__num { color: var(--gold); margin-bottom: 1rem; display: inline-block; }
.modal__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--paper-pure); line-height: 1.06; }
.modal__title em { color: var(--gold); font-style: italic; }
.modal__title--gold { color: var(--gold); }
.modal__sub { color: #b7afa3; margin-top: 1rem; font-size: 1.04rem; line-height: 1.6; }
.modal__error { margin-top: 1rem; font-size: 0.92rem; line-height: 1.5; color: #d3866b; }
.modal__form { margin-top: 2rem; display: grid; gap: 1.4rem; }
.modal__form--two { grid-template-columns: 1fr 1fr; }
.modal__form .field select {
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-pure);
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 0.7rem 0.6rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.modal__form .field select:focus { outline: none; border-bottom-color: var(--gold); background: rgba(255,255,255,0.05); }
.modal__form .field select option { background: var(--ink); color: var(--paper-pure); }
.modal__actions { margin-top: 0.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.modal__actions--col { flex-direction: column; align-items: flex-start; }
.modal__actions .btn { width: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d0b0a; color: var(--paper); padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 2.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer__logo { height: 120px; margin-bottom: 1.6rem; }
.footer__brand p { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--paper); max-width: 24rem; line-height: 1.4; }
.footer__email { display: inline-block; margin-top: 1.4rem; font-size: 0.9rem; letter-spacing: 0.04em; color: var(--gold); border-bottom: 1px solid var(--line-dark); padding-bottom: 1px; transition: color 0.3s var(--ease); }
.footer__email:hover { color: var(--paper-pure); }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 3rem; align-content: start; }
.footer__nav a { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: #b7afa3; transition: color 0.3s var(--ease); }
.footer__nav a:hover { color: var(--gold); }
.footer__base { max-width: var(--maxw); margin: 2.5rem auto 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; letter-spacing: 0.04em; color: #6b645c; }

/* ============================================================
   MULTI-PAGE PIECES
   ============================================================ */
/* Current-page indicator in the nav */
.nav__links a.is-current { color: var(--ink); }
.nav__links a.is-current::after { width: 100%; }
.nav--over-hero .nav__links a.is-current { color: #fff; }
.nav--scrolled .nav__links a.is-current { color: var(--ink); }

/* Subpage dark intro band (acts as a compact hero under the fixed nav) */
.page-intro {
  background-color: var(--black);
  background-image:
    radial-gradient(55% 60% at 78% 20%, rgba(201,160,99,0.26), transparent 60%),
    radial-gradient(45% 50% at 12% 85%, rgba(154,106,60,0.20), transparent 62%),
    linear-gradient(160deg, #1a1512, #0c0a09 78%);
  color: var(--paper);
  padding: clamp(9rem, 16vw, 12rem) var(--pad) clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.page-intro__inner { max-width: 60rem; margin: 0 auto; }
.page-intro .eyebrow { display: inline-block; margin-bottom: 1.4rem; }
.page-intro__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--paper-pure);
}
.page-intro__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: #b7afa3;
  line-height: 1.6;
  max-width: 44rem;
  margin: 1.4rem auto 0;
  font-weight: 300;
}

/* Page-level closing CTA used on subpages */
.page-cta {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.dark .page-cta { border-top-color: var(--line-dark); }
.page-cta h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 40rem; margin: 0 auto; }
.dark .page-cta h3 { color: var(--paper-pure); }
.page-cta__actions {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem 2.2rem;
  flex-wrap: wrap;
}

/* Homepage "Who We Serve" forward links */
.partners__more {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  justify-content: center;
  gap: 1.6rem 2.6rem;
  flex-wrap: wrap;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .cycle { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .hero { min-height: auto; }
  .approach__top, .partnership__card, .approach__exec { grid-template-columns: 1fr; }
  .case__points, .leadmagnet__list { grid-template-columns: 1fr; }
  .case__stats { grid-template-columns: 1fr; }
  .modal__form--two { grid-template-columns: 1fr; }
  .modal__form--two .field--full { grid-column: auto; }
  .partners__check { grid-template-columns: 1fr; }
  .partners__row { flex-direction: column; }
  .partners__row li { white-space: normal; }
  .partners__row li:not(:last-child)::after { display: none; }
  .partners__row li:not(:last-child) { border-bottom: 1px solid var(--line-dark); }
  .discovery__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
  .approach__exec-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav__logo-img { height: 64px; }
  .footer__logo { height: 84px; }
  .cycle, .metrics { grid-template-columns: 1fr; }
  .hero__brands { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn { width: 100%; }
}

/* ============================================================
   HOMEPAGE HERO — SCORECARD PROMO
   Sits in the open top-right of the hero on desktop, drops
   inline below the hero copy on smaller screens.
   ============================================================ */
.hero__aside {
  position: absolute;
  top: clamp(8.5rem, 15vw, 11.5rem);
  right: var(--pad);
  z-index: 3;
  width: min(20rem, 30vw);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.hero__aside:hover { border-color: rgba(201, 160, 99, 0.6); background: rgba(255, 255, 255, 0.07); transform: translateY(-3px); }
.hero__aside .eyebrow { color: var(--gold); }
.hero__aside-title { font-family: var(--serif); font-weight: 300; font-size: 1.5rem; line-height: 1.1; color: var(--paper-pure); }
.hero__aside-sub { font-size: 0.9rem; font-weight: 300; line-height: 1.5; color: rgba(245, 241, 234, 0.72); }
.hero__aside .link-arrow { color: var(--gold); margin-top: 0.1rem; }
.hero__aside:hover .link-arrow span { transform: translateX(6px); }

@media (max-width: 1024px) {
  .hero__aside {
    position: static;
    width: auto;
    max-width: 30rem;
    margin-top: 2.6rem;
  }
}

/* ============================================================
   THE FULL ROOM SCORECARD  (interactive diagnostic page)
   Rebuilt entirely from the site's existing tokens — no new
   colors or fonts are introduced here.
   ============================================================ */
#scorecard { padding-top: clamp(8rem, 15vw, 11rem); scroll-margin-top: 110px; }
.scorecard .sc-stage { max-width: 44rem; margin: 0 auto; }

.sc-screen { display: none; }
.sc-screen.is-active { display: block; animation: sc-rise 0.6s var(--ease) both; }
@keyframes sc-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* quiet text-button used for Back / Retake */
.sc-ghost {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #b7afa3;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.sc-ghost:hover { color: var(--gold); }

/* ---- cover ---- */
.sc-cover .section__num { margin-bottom: 1.4rem; }
.sc-cover__title { font-size: clamp(2.4rem, 7vw, 4.4rem); }
.sc-reframe {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  color: var(--paper);
  max-width: 34ch;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  margin: 1.6rem 0 2.4rem;
}
.sc-meta { display: flex; gap: clamp(1.4rem, 4vw, 2.4rem); flex-wrap: wrap; margin-bottom: 2.4rem; }
.sc-meta span { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.82rem; color: #b7afa3; letter-spacing: 0.04em; }
.sc-meta b { font-family: var(--serif); font-weight: 300; color: var(--gold); font-size: 1.9rem; line-height: 1; }
.sc-tag { margin-top: 2.4rem; font-family: var(--serif); font-style: italic; color: #8a8278; font-size: 1rem; }

/* ---- progress ---- */
.sc-progress { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.4rem; }
.sc-progress__count { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #b7afa3; font-weight: 600; white-space: nowrap; }
.sc-progress__track { flex: 1; height: 2px; background: var(--line-dark); }
.sc-progress__fill { height: 100%; width: 25%; background: var(--gold); transition: width 0.45s var(--ease); }

/* ---- assessment step ---- */
.sc-step-head { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 0.4rem; }
.sc-step-num { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(2.4rem, 8vw, 3.4rem); color: var(--gold); line-height: 0.9; }
.sc-step-title h2 { font-size: clamp(1.6rem, 5vw, 2.1rem); color: var(--paper-pure); }
.sc-step-def { color: #b7afa3; font-size: 0.95rem; margin-top: 0.4rem; max-width: 42ch; line-height: 1.55; }

.sc-qlist { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.8rem; }
.sc-q__text { font-size: 1.05rem; color: var(--paper); margin-bottom: 0.85rem; line-height: 1.4; }
.sc-scale { display: flex; gap: 0.45rem; }
.sc-scale__btn {
  flex: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  color: #b7afa3;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-radius: 2px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.sc-scale__btn:hover { border-color: var(--gold); color: var(--paper-pure); }
.sc-scale__btn[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--black); }
.sc-scale-poles { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.72rem; color: #8a8278; letter-spacing: 0.02em; }

.sc-step-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }
.sc-step-foot--end { justify-content: flex-end; }

/* ---- email gate ---- */
.sc-gate__title { font-size: clamp(1.9rem, 6vw, 2.6rem); color: var(--paper-pure); line-height: 1.05; margin: 0.8rem 0 1rem; }
.sc-gate__lede { color: #b7afa3; max-width: 46ch; margin-bottom: 2rem; line-height: 1.6; }
.sc-form { display: grid; gap: 1.4rem; max-width: 30rem; }
.sc-gate-note { font-size: 0.8rem; color: #8a8278; margin-top: 0.8rem; line-height: 1.5; max-width: 42ch; }
.sc-err { color: #d3866b; font-size: 0.84rem; min-height: 1.1em; margin-top: 0.8rem; }
.field input.is-invalid { border-bottom-color: #a8553f; }

/* ---- results: the house "report" card (light, on the dark section) ---- */
.sc-program {
  background: var(--paper-pure);
  color: var(--ink);
  border-radius: 3px;
  padding: clamp(1.6rem, 5vw, 2.8rem);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
}
.sc-program__eyebrow { display: block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.sc-fullness { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin: 0.8rem 0 0.2rem; }
.sc-band { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 6vw, 2.5rem); line-height: 1; color: var(--ink); }
.sc-pct { font-family: var(--serif); font-weight: 300; font-size: 1.7rem; color: var(--accent); }
.sc-band-sub { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.sc-rule { height: 1px; background: var(--line); margin: 1.4rem 0; }

.sc-lead { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.sc-diagnosis h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 5vw, 2.3rem); line-height: 1.08; margin: 0.4rem 0 0.8rem; color: var(--accent); }
.sc-diagnosis p { font-size: 1rem; line-height: 1.6; max-width: 54ch; color: var(--ink-soft); }
.sc-fix { margin-top: 1rem; font-weight: 600; color: var(--ink); }
.sc-fix span { color: var(--accent); }

.sc-bill { margin: 1.2rem 0 0.4rem; display: flex; flex-direction: column; gap: 1.15rem; }
.sc-bill-row { opacity: 0; animation: sc-fadeline 0.5s var(--ease) forwards; }
.sc-bill-top { display: flex; align-items: baseline; gap: 0.6rem; }
.sc-bill-no { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 1rem; width: 1.6em; }
.sc-bill-name { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: var(--ink); }
.sc-bill-name small { font-family: var(--sans); font-weight: 600; font-size: 0.7rem; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-left: 0.5rem; }
.sc-bill-leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-0.25em); }
.sc-bill-score { font-family: var(--serif); font-weight: 300; font-size: 1.1rem; white-space: nowrap; color: var(--ink); }
.sc-bill-score span { color: var(--ink-soft); }
.sc-bar { height: 5px; background: var(--line); border-radius: 3px; margin-top: 0.5rem; overflow: hidden; }
.sc-bar__fill { height: 100%; width: 0; border-radius: 3px; background: var(--gold); transition: width 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.sc-bill-row.is-weak .sc-bill-name { color: var(--accent); }
.sc-bill-row.is-weak .sc-bar__fill { background: var(--accent); }
.sc-tagline { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 0.98rem; text-align: center; margin-top: 1.4rem; }
@keyframes sc-fadeline { to { opacity: 1; } }

.sc-result-cta { margin-top: 2rem; display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; }
.sc-result-sub { color: #b7afa3; font-size: 0.98rem; line-height: 1.6; max-width: 48ch; }
.sc-result-sub em { color: var(--paper-pure); font-style: italic; }
.sc-footer-mark { margin-top: 2.6rem; text-align: center; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: #6b645c; }

@media (max-width: 560px) {
  .sc-scale__btn { font-size: 0.9rem; padding: 0.6rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sc-screen.is-active { animation: none; }
  .sc-bill-row { opacity: 1; animation: none; }
  .sc-bar__fill { transition: none; }
}

/* ---- Room Report form (business details) — two-column, reuses .field ---- */
.sc-form--two { grid-template-columns: 1fr 1fr; max-width: 42rem; }
.sc-form--two .field--full { grid-column: 1 / -1; }
.sc-form .field select {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-pure);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.7rem 0.6rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.sc-form .field select:focus { outline: none; border-bottom-color: var(--gold); background: rgba(255, 255, 255, 0.05); }
.sc-form .field select option { background: var(--ink); color: var(--paper-pure); }
.sc-form--two .sc-step-foot { margin-top: 1.4rem; }

/* ---- Post-report success state ---- */
.sc-next { margin-top: 2.2rem; }
.sc-next__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.12; color: var(--paper-pure); }
.sc-next__body { color: #b7afa3; font-size: 1rem; line-height: 1.6; max-width: 52ch; margin: 0.9rem 0 1.6rem; }
.sc-blueprint-cta { margin-top: clamp(2.2rem, 4vw, 3rem); padding-top: clamp(1.8rem, 3vw, 2.4rem); border-top: 1px solid var(--line-dark); }
.sc-blueprint-cta__body { color: #b7afa3; font-size: 0.98rem; line-height: 1.6; max-width: 52ch; margin: 0.6rem 0 1rem; }
.sc-blueprint-cta__body strong { color: var(--paper-pure); font-weight: 600; }
.sc-lead--gold { color: var(--gold); }

@media (max-width: 600px) {
  .sc-form--two { grid-template-columns: 1fr; }
}
