/* ==========================================================================
   未来灯塔 — Landing (refresh v2)
   Warm paper · deep brown · burnt amber · editorial
   ========================================================================== */

:root {
  --bg: #FBF7EF;
  --bg-warm: #F5EDDD;
  --bg-deep: #1A120A;
  --paper: #FEFCF7;
  --ink: #1A120A;
  --ink-2: #3A2A1A;
  --ink-3: #6B553F;
  --ink-4: #9B8769;
  --rule: rgba(26, 18, 10, 0.12);
  --rule-2: rgba(26, 18, 10, 0.06);
  --amber: #B8651E;
  --amber-deep: #8A4410;
  --amber-soft: rgba(184, 101, 30, 0.08);
  --cream: #E8DBC1;
  --clay: #C89471;
  --serif: 'Noto Serif SC', 'Cormorant Garamond', serif;
  --display: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --sans: 'Noto Sans SC', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ------------ TYPE ------------ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow .dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); margin: 0 10px 2px; vertical-align: middle; }

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.serif-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}

/* ------------ LAYOUT ------------ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 400ms var(--ease);
  padding: 20px 0;
}
.nav.scrolled {
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo .zh {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  font-weight: 500;
  padding-left: 12px;
  border-left: 1px solid var(--rule);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px; font-weight: 400;
  padding: 8px 16px; border-radius: 999px;
  color: var(--ink-2);
  transition: all 220ms var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--amber); }
.nav-link.active { color: var(--amber); }
.nav-link.active::before {
  content: ''; position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--amber);
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px; font-weight: 500;
  transition: all 220ms var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--amber-deep); transform: translateY(-1px); }
.nav-cta svg { transition: transform 220ms var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }
.nav-mobile { display: none; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-mobile { display: flex; gap: 8px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero > .wrap { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-meta .rule { flex: 0 0 40px; height: 1px; background: var(--amber); opacity: 0.6; }
.hero-meta .tag { font-size: 11px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; }

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero-title .italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
  padding: 0 4px;
}
.hero-title .mask-line {
  display: block;
  overflow: hidden;
}
.hero-title .mask-line > span {
  display: inline-block;
  animation: riseIn 900ms var(--ease) both;
}
.hero-title .mask-line:nth-child(1) > span { animation-delay: 60ms; }
.hero-title .mask-line:nth-child(2) > span { animation-delay: 200ms; }
.hero-title .mask-line:nth-child(3) > span { animation-delay: 340ms; }

@keyframes riseIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--ink-3);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 900ms var(--ease) 520ms both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeUp 900ms var(--ease) 680ms both; }
.btn-primary {
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 260ms var(--ease);
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(138, 68, 16, 0.28); }
.btn-primary svg { transition: transform 260ms var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: 14px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 260ms var(--ease);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(26,18,10,0.03); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}
.hero-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Testimonial strip below hero */
.hero-testimonial {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  animation: fadeUp 900ms var(--ease) 900ms both;
}
.hero-testimonial .quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 68px;
  line-height: 0.9;
  color: var(--amber);
  opacity: 0.5;
}
.hero-testimonial-text {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 12px;
}
.hero-testimonial-meta {
  font-size: 12px; letter-spacing: 0.08em; color: var(--ink-4);
}

/* Trust strip under hero CTAs */
.hero-trust {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  animation: fadeUp 900ms var(--ease) 840ms both;
}
.hero-trust .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(184,101,30,0.15);
  animation: pulse-live 2s ease-in-out infinite;
}
.hero-trust .sep { opacity: 0.4; }
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,101,30,0.15); }
  50% { box-shadow: 0 0 0 7px rgba(184,101,30,0.05); }
}

/* ==========================================================================
   SCENARIOS — entrepreneur-family self-identification
   ========================================================================== */
.scenarios {
  padding: clamp(100px, 14vw, 160px) 0;
  border-top: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  position: relative;
}
.sc-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 16px;
  align-items: start;
}
@media (max-width: 900px) {
  .sc-layout { grid-template-columns: 1fr; gap: 28px; }
}

.sc-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.sc-row {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 18px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: all 320ms var(--ease);
  align-items: center;
  position: relative;
}
.sc-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 320ms var(--ease);
}
.sc-row.active::before { transform: scaleY(1); }
.sc-row:hover, .sc-row.active {
  background: rgba(254, 252, 247, 0.5);
  padding-left: 20px;
}
.sc-row-idx {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--ink-4);
  line-height: 1;
  transition: color 320ms var(--ease);
}
.sc-row.active .sc-row-idx { color: var(--amber); }
.sc-row-cat {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
  font-weight: 500;
}
.sc-row.active .sc-row-cat { color: var(--amber); }
.sc-row-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.sc-row-caret {
  color: var(--ink-4);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 320ms var(--ease);
}
.sc-row.active .sc-row-caret,
.sc-row:hover .sc-row-caret { opacity: 1; transform: translateX(0); color: var(--amber); }

/* Scenario detail card */
.sc-detail {
  position: sticky;
  top: 96px;
  background: var(--paper);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 60px rgba(26, 18, 10, 0.06);
}
@media (max-width: 900px) {
  .sc-detail { position: relative; top: 0; }
}
.sc-detail-inner {
  animation: sceneFade 500ms var(--ease) both;
}
@keyframes sceneFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.sc-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.sc-detail-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 20px 0 32px;
}

.sc-pain-label, .sc-insight-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot-red {
  width: 8px; height: 8px; border-radius: 50%;
  background: #C8523C;
  box-shadow: 0 0 0 3px rgba(200, 82, 60, 0.15);
}
.sc-insight-label .bar {
  width: 16px; height: 2px; background: var(--amber); display: inline-block;
}

.sc-pains {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-top: 1px solid var(--rule);
}
.sc-pains li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.sc-pains li .pain-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--amber);
  padding-top: 1px;
}

.sc-insight {
  background: var(--bg-warm);
  border-left: 2px solid var(--amber);
  padding: 22px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
.sc-insight-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 400;
}

.sc-action-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.sc-action-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.sc-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-family: var(--serif);
  font-weight: 500;
}
.dot-amber {
  width: 6px; height: 6px; border-radius: 50%; background: #E8A560;
}
.sc-action-cta {
  margin-left: auto;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 260ms var(--ease);
}
.sc-action-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.sc-action-cta svg { transition: transform 260ms var(--ease); }
.sc-action-cta:hover svg { transform: translateX(3px); }

.sc-counter {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sc-counter-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  color: var(--amber);
  line-height: 1;
}
.sc-counter-total {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-4);
  font-size: 20px;
}
.sc-counter-track {
  flex: 1;
  max-width: 300px;
  height: 2px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.sc-counter-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--amber);
  transition: width 400ms var(--ease);
}

/* ==========================================================================
   SECTION BASICS
   ========================================================================== */
section { position: relative; }
.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 20px; display: inline-block; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--ink);
}
.section-head h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.section-head p {
  font-size: clamp(15px, 1.3vw, 16px);
  color: var(--ink-3);
  line-height: 1.85;
  font-weight: 300;
  max-width: 620px;
}

.section-divider {
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--rule);
}

/* ==========================================================================
   WHO WE ARE
   ========================================================================== */
.who {
  padding: clamp(100px, 14vw, 160px) 0;
  border-top: 1px solid var(--rule);
}
.who-manifesto {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  max-width: 980px;
  letter-spacing: -0.005em;
}
.who-manifesto em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.who-manifesto .muted { color: var(--ink-4); }

.who-meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
@media (max-width: 720px) {
  .who-meta { grid-template-columns: 1fr; gap: 20px; }
}
.who-meta .cell .k { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 10px; }
.who-meta .cell .v { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.6; font-weight: 500; }

/* ==========================================================================
   SCROLLY STORY — Family Dynamic System
   ========================================================================== */
.story {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  color: var(--ink);
  padding: clamp(100px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.story .eyebrow { color: var(--amber-deep); }
.story h2 { color: var(--ink); }
.story h2 em { color: var(--amber-deep); font-family: var(--display); font-style: italic; font-weight: 500; }
.story .section-head p { color: var(--ink-3); }

.story-scenes {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 140px);
  margin-top: clamp(60px, 8vw, 100px);
}

/* per-scene row: illustration left, text right; alternating for rhythm */
.scene-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  border-bottom: 1px solid var(--rule);
  padding-bottom: clamp(60px, 10vw, 120px);
}
.scene-row:last-child { border-bottom: none; padding-bottom: 0; }
.scene-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.scene-row.reverse .scene-visual { order: 2; }
.scene-row.reverse .scene-copy { order: 1; }

@media (max-width: 900px) {
  .scene-row,
  .scene-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .scene-row .scene-visual,
  .scene-row.reverse .scene-visual { order: 1; }
  .scene-row .scene-copy,
  .scene-row.reverse .scene-copy { order: 2; }
}

.scene-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}
.scene-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-copy { max-width: 520px; }
.scene-copy .step {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.scene-copy h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.scene-copy p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink-3);
  font-weight: 300;
}
.scene-copy ul {
  margin-top: 24px;
  list-style: none;
}
.scene-copy li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.scene-copy li .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber-deep);
  font-size: 15px;
}

/* Scrolly SVG */
.story-svg {
  width: 100%; height: 100%;
  overflow: visible;
}

.story-svg .ring {
  fill: none;
  stroke: rgba(232, 165, 96, 0.14);
  stroke-width: 0.6;
}
.story-svg .ring.dashed { stroke-dasharray: 4 6; }

.story-svg .node {
  transition: transform 600ms var(--ease), opacity 600ms var(--ease);
  transform-box: fill-box;
  transform-origin: center;
}
.story-svg .node-circle {
  fill: rgba(254, 252, 247, 0.06);
  stroke: rgba(232, 165, 96, 0.4);
  stroke-width: 1;
  transition: all 600ms var(--ease);
}
.story-svg .node.active .node-circle {
  fill: rgba(232, 165, 96, 0.18);
  stroke: #E8A560;
  stroke-width: 1.4;
}
.story-svg .node-label {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  fill: rgba(254, 252, 247, 0.7);
  transition: fill 600ms var(--ease);
}
.story-svg .node.active .node-label { fill: var(--paper); }
.story-svg .node-id {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  fill: #E8A560;
}
.story-svg .link {
  fill: none;
  stroke: rgba(232, 165, 96, 0.3);
  stroke-width: 0.8;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1200ms var(--ease), opacity 600ms var(--ease);
  opacity: 0;
}
.story-svg .link.active { stroke-dashoffset: 0; opacity: 1; }

.story-svg .core {
  transition: all 600ms var(--ease);
}
.story-svg .core-text {
  font-family: var(--serif);
  font-weight: 600;
  fill: var(--paper);
  text-anchor: middle;
}



/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: clamp(100px, 14vw, 160px) 0;
  background: var(--paper);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}
@media (max-width: 820px) {
  .services-head { grid-template-columns: 1fr; gap: 28px; }
}

.service-list {
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  cursor: pointer;
  transition: all 300ms var(--ease);
  position: relative;
}
.service-row:hover { background: var(--amber-soft); padding-left: 20px; padding-right: 20px; }
.service-row .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--ink-4);
  line-height: 1;
  padding-top: 6px;
  transition: color 300ms var(--ease);
}
.service-row:hover .num { color: var(--amber); }
.service-row .body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.service-row .body p {
  font-size: 15px; line-height: 1.8; color: var(--ink-3); max-width: 560px;
}
.service-row .meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  padding-top: 10px;
}
.service-row .tag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--ink-2);
  font-weight: 500;
}
.service-row .dur { font-size: 12px; color: var(--ink-4); white-space: nowrap; }
.service-row .tag { white-space: nowrap; }
.service-row .arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 300ms var(--ease);
  color: var(--amber);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -12px;
}
.service-row:hover .arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 720px) {
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row .meta { grid-column: 2; flex-direction: row; align-items: center; padding-top: 8px; }
  .service-row .arrow { display: none; }
}

/* Pathway bar */
.pathway {
  margin-top: 56px;
  padding: 28px;
  background: var(--bg-warm);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pathway .label { font-size: 11px; letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; font-weight: 500; }
.pathway .steps { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; flex: 1; }
.pathway .step-chip { font-family: var(--serif); font-size: 14px; color: var(--ink); font-weight: 500; }
.pathway .arrow { color: var(--amber); font-size: 12px; }

/* ==========================================================================
   VALUES
   ========================================================================== */
.values {
  padding: clamp(100px, 14vw, 160px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }
.value-cell {
  padding: 48px 36px 48px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.value-cell:last-child { border-right: none; }
@media (max-width: 820px) {
  .value-cell { border-right: none; padding: 36px 0; }
}
.value-cell .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 20px;
}
.value-cell h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.value-cell p { font-size: 15px; line-height: 1.85; color: var(--ink-3); }

/* ==========================================================================
   VOICES — testimonials
   ========================================================================== */
.voices {
  padding: clamp(100px, 14vw, 160px) 0;
}
.voices-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}
@media (max-width: 900px) { .voices-row { grid-template-columns: 1fr; } }
.voice {
  padding: 0 36px;
  border-left: 1px solid var(--rule);
}
.voice:first-child { padding-left: 0; border-left: none; }
@media (max-width: 900px) { .voice { padding: 36px 0; border-left: none; border-top: 1px solid var(--rule); } .voice:first-child { border-top: none; padding-top: 0; } }
.voice .qm {
  font-family: var(--display);
  font-style: italic;
  color: var(--amber);
  font-size: 56px;
  line-height: 0.8;
  margin-bottom: 16px;
}
.voice-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}
.voice-meta { font-size: 12px; letter-spacing: 0.1em; color: var(--ink-4); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: clamp(100px, 14vw, 160px) 0;
  background: var(--bg-deep);
  color: var(--paper);
}
.contact h2 { color: var(--paper); }
.contact h2 em { color: #E8A560; font-family: var(--display); font-style: italic; }
.contact .eyebrow { color: #E8A560; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  margin-top: 48px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-left p {
  color: rgba(254, 252, 247, 0.7);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 440px;
}
.contact-checklist { margin-bottom: 40px; }
.contact-checklist li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(254, 252, 247, 0.08);
  font-size: 15px;
  color: rgba(254, 252, 247, 0.88);
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-checklist li .c {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(232, 165, 96, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: #E8A560;
  flex-shrink: 0;
}

.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
}
.contact-channel .ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(232, 165, 96, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: #E8A560;
}
.contact-channel .k { font-size: 11px; letter-spacing: 0.12em; color: rgba(254, 252, 247, 0.45); text-transform: uppercase; }
.contact-channel .v { font-size: 15px; color: var(--paper); font-family: var(--serif); font-weight: 500; }

.form-card {
  background: rgba(254, 252, 247, 0.03);
  border: 1px solid rgba(254, 252, 247, 0.1);
  border-radius: 24px;
  padding: 40px;
}
@media (max-width: 560px) { .form-card { padding: 28px; } }
.form-card label {
  display: block;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(254, 252, 247, 0.5);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(254, 252, 247, 0.18);
  color: var(--paper);
  outline: none;
  transition: border-color 220ms var(--ease);
  border-radius: 0;
}
.form-card textarea { resize: none; min-height: 80px; }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { border-bottom-color: #E8A560; }
.form-card input::placeholder,
.form-card textarea::placeholder { color: rgba(254, 252, 247, 0.3); }
.form-card option { color: var(--ink); }
.form-field + .form-field { margin-top: 28px; }

.form-submit {
  margin-top: 36px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: #E8A560;
  color: var(--bg-deep);
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 260ms var(--ease);
}
.form-submit:hover { background: #F5B872; transform: translateY(-1px); }
.form-privacy {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(254, 252, 247, 0.4);
  letter-spacing: 0.04em;
}

.form-success { text-align: center; padding: 20px; }
.form-success .check {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(232, 165, 96, 0.18);
  color: #E8A560;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 { font-family: var(--serif); font-size: 22px; color: var(--paper); margin-bottom: 12px; font-weight: 500; }
.form-success p { color: rgba(254, 252, 247, 0.65); font-size: 15px; line-height: 1.75; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  padding: 64px 0 36px;
  background: var(--bg-deep);
  color: rgba(254, 252, 247, 0.7);
  border-top: 1px solid rgba(254, 252, 247, 0.08);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(254, 252, 247, 0.08);
}
@media (max-width: 720px) { .foot-top { grid-template-columns: 1fr; gap: 32px; } }
.foot h4 { font-family: var(--serif); font-size: 13px; color: var(--paper); margin-bottom: 20px; font-weight: 500; }
.foot-tagline { font-size: 13px; line-height: 1.8; color: rgba(254, 252, 247, 0.55); max-width: 340px; margin-top: 16px; }
.foot-links { list-style: none; }
.foot-links li { padding: 6px 0; font-size: 13px; }
.foot-links a { color: rgba(254, 252, 247, 0.6); transition: color 220ms var(--ease); }
.foot-links a:hover { color: #E8A560; }
.foot-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(254, 252, 247, 0.4);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   SUBTLE PAPER TEXTURE
   ========================================================================== */
.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 22% 32%, rgba(139, 108, 75, 0.045) 0.5px, transparent 1px),
    radial-gradient(circle at 78% 26%, rgba(184, 101, 30, 0.04) 0.6px, transparent 1px),
    radial-gradient(circle at 40% 74%, rgba(139, 108, 75, 0.04) 0.55px, transparent 1px);
  background-size: 96px 96px, 128px 128px, 112px 112px;
  mix-blend-mode: multiply;
}

/* Hero visual animations — pure CSS, GPU-accelerated */
.hero-spin { transform-origin: 300px 300px; animation: heroSpin 120s linear infinite; }
.hero-pulse-a { transform-origin: 180px 230px; animation: heroPulseA 5s ease-in-out infinite; }
.hero-pulse-b { transform-origin: 420px 380px; animation: heroPulseB 5s ease-in-out infinite; }
@keyframes heroSpin { to { transform: rotate(360deg); } }
@keyframes heroPulseA { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes heroPulseB { 0%, 100% { transform: scale(1.025); } 50% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-spin, .hero-pulse-a, .hero-pulse-b { animation: none; }
}
