/* ============================================
   Puro Digital — Premium edition
   Primary: #003E33 (deep forest green)
   ============================================ */

:root {
  /* Brand */
  --green: #003E33;
  --green-deep: #002A22;
  --green-soft: #1A5448;
  --green-mid: #0F5A4B;

  /* Warm neutrals */
  --cream: #F7F2E8;
  --cream-soft: #FAF6EE;
  --cream-2: #EFE8D8;
  --bone: #ECE3D0;

  /* Accent */
  --gold: #B89B6E;
  --gold-soft: #D4BD93;
  --gold-deep: #8A7048;

  /* Text */
  --ink: #001E18;
  --ink-soft: #2A4B43;
  --ink-mute: #5C766F;

  --on-dark: #F1E9D6;
  --on-dark-mute: #B9C6BF;

  --border: rgba(0, 62, 51, 0.12);
  --border-strong: rgba(0, 62, 51, 0.22);
  --border-dark: rgba(255, 255, 255, 0.10);
  --border-dark-strong: rgba(255, 255, 255, 0.18);

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 24px 60px -24px rgba(0, 30, 24, 0.25);
  --shadow-lg: 0 40px 80px -30px rgba(0, 30, 24, 0.45);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 36px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease), opacity .2s var(--ease);
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 .6em;
  color: var(--green);
  font-variation-settings: "opsz" 120;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400;
}
h3 {
  font-size: 1.35rem;
  font-weight: 500;
}
h4 {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

em {
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100;
  color: var(--gold-deep);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--cream);
  padding: 8px 14px;
  z-index: 9999;
  border-radius: 6px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================
   Top announcement bar
   ============================================ */
.topbar {
  background: var(--green-deep);
  color: var(--on-dark-mute);
  font-size: .82rem;
  letter-spacing: .01em;
  border-bottom: 1px solid var(--border-dark);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--gold-soft);
  font-weight: 500;
  white-space: nowrap;
}
.topbar a:hover { color: var(--gold); }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid var(--border-dark);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px var(--gutter);
  min-height: 58px;
}

.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul > li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
/* Top-level nav links only — NOT dropdown items */
.main-nav ul > li > a {
  color: var(--on-dark);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  position: relative;
  height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.main-nav ul > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.main-nav ul > li > a:hover { color: var(--gold-soft); opacity: 1; }
.main-nav ul > li > a:hover::after { right: 0; }

.nav-cta { padding: 0 22px; font-size: .88rem; height: 38px; }

/* Dropdown */
.has-dropdown { position: relative; }
.caret {
  display: block;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.has-dropdown.open .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 660px;
  max-width: calc(100vw - 40px);
  background: var(--green-deep);
  border: 1px solid var(--border-dark-strong);
  border-radius: 6px;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  z-index: 50;
}
/* Invisible bridge fills the gap between trigger and dropdown */
.dropdown::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.has-dropdown.open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--green-deep);
  border: 1px solid var(--border-dark-strong);
  border-right: none;
  border-bottom: none;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.dd-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 14px 16px;
  border-radius: 4px;
  text-align: left;
  color: var(--on-dark);
  transition: background .25s var(--ease);
}
.dd-item:hover {
  background: rgba(184, 155, 110, 0.08);
  opacity: 1;
}
.dd-item:hover strong { color: var(--gold-soft); }
.dd-num {
  grid-row: span 2;
  font-family: 'Fraunces', serif;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .04em;
  align-self: start;
  padding-top: 3px;
  font-variation-settings: "opsz" 80;
}
.dd-item strong {
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -.005em;
  transition: color .25s var(--ease);
}
.dd-desc {
  font-size: .8rem;
  color: var(--on-dark-mute);
  letter-spacing: .005em;
  line-height: 1.45;
  margin-top: 2px;
}
.dd-foot {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 12px;
  border-top: 1px solid var(--border-dark);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.dd-foot:hover { color: var(--gold); opacity: 1; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-dark-strong);
  border-radius: 6px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--green-deep);
  border-top: 1px solid var(--border-dark);
}
.mobile-nav ul {
  list-style: none;
  padding: 16px var(--gutter) 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: var(--on-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a.btn { border-bottom: 0; text-align: center; margin-top: 16px; }
.mobile-nav.open { display: block; }

/* Mobile accordion */
.mob-acc { border-bottom: 1px solid var(--border-dark); }
.mob-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: transparent;
  border: 0;
  color: var(--on-dark);
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.mob-acc-toggle .caret { transition: transform .3s var(--ease); }
.mob-acc[aria-expanded="true"] .mob-acc-toggle .caret,
.mob-acc-toggle[aria-expanded="true"] .caret {
  transform: rotate(180deg);
}
.mob-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}
.mob-acc-toggle[aria-expanded="true"] + .mob-sub {
  max-height: 500px;
  padding-bottom: 12px;
}
.mob-sub li a {
  display: block;
  padding: 10px 0;
  color: var(--on-dark-mute);
  font-size: .94rem;
  border-bottom: 0;
}
.mob-sub li a:hover { color: var(--gold-soft); }
.mob-sub li a.mob-all {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 4px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 17px 32px; font-size: .92rem; }

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
  box-shadow: 0 14px 30px -14px rgba(184, 155, 110, .6);
}
.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -14px rgba(184, 155, 110, .7);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 242, 232, 0.35);
}
.btn-outline-light:hover {
  background: rgba(247, 242, 232, 0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ============================================
   Eyebrow + section
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow .dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light {
  color: var(--gold-soft);
}
.eyebrow-light .dash { background: var(--gold-soft); }

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section-dark {
  background: var(--green);
  color: var(--on-dark);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: var(--on-dark-mute); }
.section-dark em { color: var(--gold-soft); }

.section-cream { background: var(--cream-soft); }

.section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-lead { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding: clamp(100px, 12vw, 160px) 0 clamp(80px, 10vw, 120px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) brightness(.78);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 42, 34, 0.55) 0%, rgba(0, 30, 24, 0.55) 50%, rgba(0, 30, 24, 0.85) 100%),
    linear-gradient(120deg, rgba(0, 42, 34, 0.7) 0%, rgba(0, 42, 34, 0.2) 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.hero .lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--on-dark);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--on-dark-mute);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold-soft) 50%, transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--gold);
  animation: scrollDown 2.2s var(--ease) infinite;
}
@keyframes scrollDown {
  0% { top: -20px; }
  100% { top: 50px; }
}

/* ============================================
   Stats strip
   ============================================ */
.stats-strip {
  background: var(--green-deep);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 36px 0;
}
.stats-strip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.stats-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.stats-strip li::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border-dark);
}
.stats-strip li:last-child::after { display: none; }
.stats-strip strong {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip span {
  font-size: .8rem;
  color: var(--on-dark-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================
   Values
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.values-intro h2 { margin-bottom: 24px; }
.values-intro .lead { font-size: 1.05rem; }

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.value-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.value-row:first-child { border-top: 1px solid var(--border); }
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  font-variation-settings: "opsz" 80;
  letter-spacing: .02em;
  padding-top: 6px;
}
.value-row h3 { margin-bottom: 8px; color: var(--green); }
.value-row p { margin: 0; }

/* ============================================
   Services
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
}
.service {
  padding: 44px 36px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  transition: background .3s var(--ease);
}
.service:hover {
  background: rgba(255, 255, 255, .025);
}
.service-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gold-soft);
  font-variation-settings: "opsz" 80;
  letter-spacing: .12em;
  margin-bottom: 24px;
}
.service h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.ticks li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: .92rem;
  color: var(--on-dark-mute);
  border-top: 1px solid var(--border-dark);
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 1px;
  background: var(--gold-soft);
}

/* ============================================
   Results
   ============================================ */
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.result {
  padding: 44px 32px;
  background: var(--cream-soft);
  position: relative;
  transition: background .3s var(--ease);
}
.result:hover { background: var(--bone); }

.result-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  letter-spacing: -0.03em;
}
.result-num small {
  font-size: .45em;
  margin-left: 4px;
  color: var(--gold);
  font-weight: 500;
}
.result h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.result p {
  font-size: .9rem;
  margin-bottom: 16px;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--ink-mute);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================
   Process
   ============================================ */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: steps;
}
.step {
  padding: 36px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.step-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  font-variation-settings: "opsz" 80;
  letter-spacing: .04em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.step h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.step p { font-size: .92rem; margin: 0; }

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  margin: 0;
  position: relative;
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about-photo figcaption {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.4);
}
.about-photo figcaption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.about-photo figcaption span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.about-text h2 { margin-bottom: 24px; }
.about-text .lead {
  font-size: 1.1rem;
  color: var(--on-dark);
  margin-bottom: 32px;
}

.about-text blockquote {
  margin: 32px 0 12px;
  padding: 0 0 0 26px;
  border-left: 2px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

.signature {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 36px;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq-grid h2 { margin-bottom: 20px; }
.faq-grid > div:first-child p { font-size: 1.02rem; }

.link-arrow {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.link-arrow:hover { color: var(--green); }

.faq-list {}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 50px 24px 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--green);
  position: relative;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform .35s var(--ease);
  font-weight: 300;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary:hover::after { background: var(--gold); color: var(--cream); }
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.faq-item p { padding: 0 60px 24px 0; margin: 0; font-size: .98rem; }

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact-grid > div:first-child .lead {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-list {
  list-style: none;
  padding: 32px 0 0;
  margin: 0;
  border-top: 1px solid var(--border-dark);
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 1.05rem;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.contact-list a {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.contact-list a:hover { color: var(--gold-soft); }

.contact-form {
  padding: 44px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding-top: 12px;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%),
                    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.field select option { background: var(--cream); color: var(--green); }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-mute);
  font-style: italic;
}

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-mute);
  margin: 18px 0 0;
  letter-spacing: .02em;
}

.contact-form .btn { width: 100%; margin-top: 12px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--green-deep);
  color: var(--on-dark-mute);
  padding: 90px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand .logo-img { height: 50px; margin-bottom: 18px; }
.footer-brand p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--on-dark);
  max-width: 280px;
}
.footer-grid h4 {
  margin-bottom: 18px;
  color: var(--gold-soft);
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  padding: 6px 0;
  font-size: .94rem;
}
.footer-grid a { color: var(--on-dark); }
.footer-grid a:hover { color: var(--gold-soft); }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-dark-strong);
  color: var(--on-dark);
  transition: all .25s var(--ease);
}
.socials a:hover {
  color: var(--green-deep);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px var(--gutter);
  border-top: 1px solid var(--border-dark);
  color: var(--on-dark-mute);
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--on-dark-mute); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 880px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .topbar-inner span { font-size: .78rem; }

  .stats-strip ul { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats-strip li::after { display: none; }
  .stats-strip li:nth-child(odd)::after {
    display: block;
    right: -16px;
  }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .hero { min-height: 78vh; }
  .stats-strip ul { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stats-strip li::after { display: none; }
  .value-row { grid-template-columns: 50px 1fr; gap: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service { padding: 36px 24px; }
  .result-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .contact-form::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn { padding: 12px 22px; }
  .btn-lg { padding: 15px 26px; }
  .contact-list li { grid-template-columns: 90px 1fr; gap: 16px; }
}

/* ============================================
   Focus styles
   ============================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================
   Micro-interactions
   ============================================ */

/* Page entrance fade */
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: pageIn 1s var(--ease); }

/* Text selection */
::selection {
  background: var(--gold);
  color: var(--green-deep);
}

/* Scroll progress bar — thin gold line at top of viewport */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  z-index: 200;
  transition: width .12s linear;
  box-shadow: 0 0 14px rgba(184, 155, 110, .55);
}

/* Ken Burns slow zoom on hero image */
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero-bg img { animation: kenburns 26s ease-in-out infinite alternate; }

/* Hero content staggered entrance */
.hero-inner > * { animation: heroIn 1.1s var(--ease) both; }
.hero-inner > *:nth-child(1) { animation-delay: .15s; }
.hero-inner > *:nth-child(2) { animation-delay: .32s; }
.hero-inner > *:nth-child(3) { animation-delay: .5s; }
.hero-inner > *:nth-child(4) { animation-delay: .68s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hide hero scroll indicator after first scroll */
.hero-scroll { transition: opacity .4s var(--ease); }
body.scrolled .hero-scroll { opacity: 0; pointer-events: none; }

/* Section h2 — gold underline draws in on reveal */
.reveal h2 { position: relative; }
.reveal h2::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 26px;
  transition: width 1.3s var(--ease) .4s;
}
.section-head.reveal h2::after {
  margin-left: auto;
  margin-right: auto;
}
.reveal.in-view h2::after { width: 60px; }

/* Eyebrow dash draws in on reveal */
.reveal .eyebrow .dash {
  width: 0;
  transition: width .9s var(--ease) .2s;
}
.reveal.in-view .eyebrow .dash { width: 32px; }

/* Button — diagonal gold light sweep on hover */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .85s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.btn:hover::after { left: 130%; }
.btn > * { position: relative; z-index: 1; }

/* Cursor-tracking soft gold glow on cards */
.service, .result, .step { isolation: isolate; }
.service::before,
.result::before,
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184, 155, 110, 0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.service:hover::before,
.result:hover::before,
.step:hover::before { opacity: 1; }
.service > *,
.result > *,
.step > * { position: relative; z-index: 1; }

/* Service tick list — slide on hover */
.ticks li {
  transition: padding-left .35s var(--ease), color .35s var(--ease);
}
.ticks li::before {
  transition: width .35s var(--ease), background .35s var(--ease);
}
.ticks li:hover {
  padding-left: 32px;
  color: var(--cream);
}
.ticks li:hover::before {
  width: 22px;
  background: var(--gold);
}

/* About photo — slow zoom and warm up on hover */
.about-photo img {
  transition: filter 1.2s var(--ease), transform 1.4s var(--ease);
  will-change: transform;
}
.about-photo:hover img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(1.03);
}

/* Logo soft gold drop-shadow on hover */
.logo-img { transition: filter .4s var(--ease); }
.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(184, 155, 110, 0.45));
}

/* Subtle film grain on dark sections */
.section-dark, .site-footer { position: relative; }
.section-dark::after, .site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 0;
}
.section-dark > *, .site-footer > * { position: relative; z-index: 1; }

/* FAQ open — smooth slide */
.faq-item[open] p { animation: faqIn .5s var(--ease); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Footer links — small nudge on hover */
.footer-grid li { transition: padding-left .25s var(--ease); }
.footer-grid li:hover { padding-left: 6px; }

/* Form field — bottom border thickens on focus */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-width: 2px;
  padding-bottom: 13px;
}

/* Result number — gold underline sweep on hover */
.result {
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.result:hover { transform: translateY(-3px); }
.result-num {
  position: relative;
  display: inline-flex;
}
.result-num::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .7s var(--ease);
}
.result:hover .result-num::after { width: 60px; }

/* Stat strip numbers — soft gold pulse */
@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(184, 155, 110, 0); }
  50%      { text-shadow: 0 0 24px rgba(184, 155, 110, 0.35); }
}
.stats-strip strong { animation: goldPulse 6s ease-in-out infinite; }

/* Top bar — gold accent line */
.topbar { position: relative; }
.topbar::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.4;
}

/* ============================================
   Content pages — service pages, hub
   ============================================ */
.page-hero {
  background: var(--green);
  color: var(--on-dark);
  padding: clamp(80px, 9vw, 130px) 0 clamp(70px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 880px;
  margin-bottom: 24px;
}
.page-hero h1 em { color: var(--gold-soft); }
.page-hero .lead {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--on-dark);
  max-width: 700px;
  margin-bottom: 36px;
}
.page-hero .hero-actions { margin-bottom: 0; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
  font-weight: 600;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before {
  content: '/';
  color: var(--gold-soft);
  opacity: .5;
}
.breadcrumbs a { color: var(--on-dark-mute); }
.breadcrumbs a:hover { color: var(--gold-soft); opacity: 1; }
.breadcrumbs [aria-current="page"] { color: var(--gold-soft); }

/* Article layout with sticky TOC */
.article-wrap {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--cream);
}
.article-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 100px;
  font-size: .9rem;
}
.toc-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  margin: 0;
  padding: 0;
}
.toc a {
  display: block;
  padding: 9px 0 9px 26px;
  color: var(--ink-mute);
  font-size: .9rem;
  line-height: 1.4;
  border-left: 1px solid var(--border);
  position: relative;
  transition: color .25s var(--ease), border-color .25s var(--ease), padding-left .25s var(--ease);
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: -34px;
  top: 9px;
  width: 24px;
  font-family: 'Fraunces', serif;
  font-size: .72rem;
  color: var(--gold);
  opacity: .6;
}
.toc a:hover,
.toc a.active {
  color: var(--green);
  border-left-color: var(--gold);
  padding-left: 30px;
  opacity: 1;
}

/* Article body */
.article {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.article h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-top: 64px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
.article h2:first-child { margin-top: 0; }
.article h2 em { color: var(--gold-deep); }
.article h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--green);
}
.article p { font-size: 1.05rem; color: var(--ink-soft); }
.article p strong { color: var(--green); font-weight: 600; }
.article a:not(.btn) {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  font-weight: 500;
}
.article a:not(.btn):hover {
  color: var(--green);
  border-color: var(--green);
  opacity: 1;
}
.article ul:not(.ticks):not(.deliv-list):not(.related-list),
.article ol {
  padding-left: 22px;
  margin: 16px 0 24px;
}
.article ul:not(.ticks):not(.deliv-list):not(.related-list) li,
.article ol li {
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.article ul:not(.ticks):not(.deliv-list):not(.related-list) li::marker {
  color: var(--gold);
}

/* Callout / pull quote */
.callout {
  padding: 28px 32px;
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  margin: 36px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--green);
}
.callout p { font-family: inherit; font-size: inherit; color: inherit; margin: 0; }

/* Info box */
.info-box {
  padding: 28px;
  background: var(--green);
  color: var(--on-dark);
  border-radius: 2px;
  margin: 36px 0;
}
.info-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.info-box p { color: var(--on-dark); margin: 0; }
.info-box p + p { margin-top: 12px; }

/* Charts — bar chart */
.chart {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  margin: 36px 0;
  box-shadow: 0 6px 20px -10px rgba(0, 30, 24, .08);
}
.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.chart-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--green);
  margin: 0;
}
.chart-sub {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.bars {
  display: grid;
  grid-template-columns: repeat(var(--cols, 6), 1fr);
  gap: 14px;
  align-items: end;
  height: 220px;
  padding-bottom: 32px;
  position: relative;
}
.bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 28px;
  height: 1px;
  background: var(--border);
}
.bar {
  position: relative;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 3px 3px 0 0;
  height: 0;
  transition: height 1.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bars.in-view .bar { height: var(--h); }
.bar strong {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: .85rem;
  color: var(--green);
  white-space: nowrap;
}
.bar span {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .05em;
  white-space: nowrap;
}
.bar.bar-accent {
  background: linear-gradient(180deg, var(--green-soft) 0%, var(--green) 100%);
}
.bar.bar-accent strong { color: var(--green); }

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--ink-mute);
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chart-legend span::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--gold);
}
.chart-legend span.green::before { background: var(--green); }

/* Line chart (SVG) */
.line-chart {
  width: 100%;
  height: 220px;
  display: block;
}
.line-chart .grid-line { stroke: var(--border); stroke-width: 1; }
.line-chart .axis-label { font-size: 10px; fill: var(--ink-mute); font-family: 'Inter', sans-serif; }
.line-chart .area { fill: rgba(184, 155, 110, 0.12); }
.line-chart .line {
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-chart .dot { fill: var(--gold); stroke: #fff; stroke-width: 2; }
.line-chart.in-view .line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s var(--ease) forwards;
}
.line-chart.in-view .area {
  opacity: 0;
  animation: fadeIn 1.5s var(--ease) 1s forwards;
}
.line-chart.in-view .dot {
  opacity: 0;
  animation: fadeIn .4s var(--ease) forwards;
}
.line-chart.in-view .dot:nth-of-type(1) { animation-delay: 1.6s; }
.line-chart.in-view .dot:nth-of-type(2) { animation-delay: 1.8s; }
.line-chart.in-view .dot:nth-of-type(3) { animation-delay: 2.0s; }
.line-chart.in-view .dot:nth-of-type(4) { animation-delay: 2.2s; }
.line-chart.in-view .dot:nth-of-type(5) { animation-delay: 2.4s; }
.line-chart.in-view .dot:nth-of-type(6) { animation-delay: 2.6s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

/* Donut / Pie chart */
.donut-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
}
.donut {
  width: 200px; height: 200px;
  position: relative;
}
.donut svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.donut circle.track { fill: none; stroke: var(--border); stroke-width: 20; }
.donut circle.slice {
  fill: none;
  stroke-width: 20;
  stroke-linecap: butt;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.donut-center strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
}
.donut-center span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.donut-legend ul { list-style: none; padding: 0; margin: 0; }
.donut-legend li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--ink-soft);
}
.donut-legend li:last-child { border-bottom: 0; }
.donut-legend .swatch {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 10px;
}
.donut-legend strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--green);
}

/* Comparison table */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  font-size: .96rem;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare th {
  background: var(--cream-2);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.compare tr:last-child td { border-bottom: 0; }
.compare tbody tr { transition: background .2s; }
.compare tbody tr:hover { background: var(--cream-soft); }
.compare td:first-child {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--green);
}

/* Funnel chart */
.funnel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 32px 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.funnel-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-soft) 100%);
  color: var(--cream);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: width 1.2s var(--ease);
}
.funnel-step:nth-child(1) { width: 100%; }
.funnel-step:nth-child(2) { width: 85%; }
.funnel-step:nth-child(3) { width: 65%; }
.funnel-step:nth-child(4) { width: 45%; }
.funnel-step:nth-child(5) { width: 28%; }
.funnel-step strong {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
}
.funnel-step .funnel-num {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

/* Deliverables grid */
.deliv-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.deliv-list li {
  padding: 18px 20px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 44px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.deliv-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}
.deliv-list li:hover {
  border-color: var(--gold);
  background: #fff;
}

/* Related services */
.related {
  margin: 60px 0 0;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.related h3 { font-size: 1.4rem; margin-bottom: 24px; }
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--green);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  transition: all .25s var(--ease);
}
.related-list a:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateX(4px);
  opacity: 1;
}
.related-list a svg {
  color: var(--gold);
  transition: transform .25s var(--ease);
}
.related-list a:hover svg { transform: translateX(4px); }

/* CTA banner */
.cta-banner {
  background: var(--green);
  color: var(--on-dark);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.cta-banner h2 em { color: var(--gold-soft); }
.cta-banner p {
  color: var(--on-dark);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-banner .hero-actions {
  justify-content: center;
  margin: 0;
}

/* Service hub grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.hub-card {
  display: block;
  padding: 36px;
  background: var(--cream-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--green);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: #fff;
  opacity: 1;
}
.hub-card .hub-num {
  font-family: 'Fraunces', serif;
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.hub-card h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 14px 0 12px;
  color: var(--green);
}
.hub-card p { color: var(--ink-soft); margin-bottom: 18px; }
.hub-card .hub-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Service "Lue lisää" link */
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  width: 100%;
}
.service-more svg { transition: transform .3s var(--ease); }
.service:hover .service-more { color: var(--gold); }
.service:hover .service-more svg { transform: translateX(4px); }
.service h3 a {
  color: inherit;
  border: none;
  transition: color .25s var(--ease);
}
.service:hover h3 a { color: var(--gold-soft); }

/* Service page responsive */
@media (max-width: 960px) {
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .toc {
    position: static;
    background: var(--cream-2);
    padding: 20px 24px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .donut-wrap { grid-template-columns: 1fr; }
  .donut { margin: 0 auto; }
  .deliv-list { grid-template-columns: 1fr; }
  .related-list { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .dropdown { width: calc(100vw - 32px); }
  .dropdown-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .bars { height: 180px; gap: 8px; }
  .bar strong { font-size: .75rem; }
  .compare { font-size: .85rem; }
  .compare th, .compare td { padding: 12px 14px; }
}

/* ============================================
   References marquee
   ============================================ */
.references {
  background: var(--green);
  color: var(--on-dark);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  position: relative;
}
.references::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 0;
}
.references > * { position: relative; z-index: 1; }

.ref-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 36px;
  font-family: 'Inter', sans-serif;
}
.ref-eyebrow .dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
  opacity: .6;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 7%, black 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ref-logo {
  flex: 0 0 auto;
  height: 60px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity .4s var(--ease), transform .4s var(--ease), filter .4s var(--ease);
}
.ref-logo img {
  max-height: 100%;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.ref-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Wordmark for Helsingin Urheiluhieronta */
.ref-wordmark {
  flex-direction: column;
  line-height: 1;
  padding: 0 8px;
  color: var(--cream);
}
.ref-wordmark .wm-1 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-soft);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 120;
}
.ref-wordmark .wm-2 {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--cream);
  opacity: .9;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@media (max-width: 560px) {
  .marquee-track { gap: 60px; }
  .ref-logo { height: 48px; min-width: 90px; }
  .ref-logo img { max-width: 170px; }
  .ref-wordmark .wm-1 { font-size: 1.25rem; }
  .ref-wordmark .wm-2 { font-size: .62rem; letter-spacing: .25em; }
  .ref-eyebrow { font-size: .68rem; letter-spacing: .22em; }
}

/* Smooth value-row hover highlight */
.value-row {
  transition: padding-left .35s var(--ease);
}
.value-row:hover { padding-left: 12px; }
.value-row:hover .value-num { color: var(--gold-deep); }
.value-num { transition: color .35s var(--ease); }
