/* ═══════════════════════════════════════════════════════════════
   PALM LIFE COMMERCIAL — Case Study Page
   Mira Vista Townhomes
   Warm white · Gold accents · Institutional editorial
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand */
  --gold:          #C6A66B;
  --gold-lt:       #D9BD8E;
  --gold-dk:       #A8893B;
  --gold-tint:     rgba(198,166,107,0.13);
  --gold-pale:     #F8F3EA;

  /* Text */
  --ink:           #1C1B18;
  --ink-60:        #4A4843;
  --ink-40:        #7A7870;
  --ink-20:        #B0AEA8;

  /* Surfaces */
  --warm-white:    #FAF9F7;
  --warm-off:      #F4F2EE;
  --warm-mid:      #EAE8E3;
  --warm-border:   #DDD9D1;
  --dark-section:  #18170F;
  --dark-card:     rgba(255,255,255,0.04);

  /* Type */
  --serif:         'Cormorant Garamond', Georgia, serif;
  --sans:          'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:             0.28s;

  /* Geometry */
  --r-sm:          3px;
  --r-md:          8px;
  --r-lg:          12px;

  /* Shadows */
  --sh-sm:         0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md:         0 4px 20px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  --sh-lg:         0 12px 40px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--ink); background: var(--warm-white); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Container ─── */
.cs-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .cs-container { padding: 0 20px; } }

/* ─── Section base ─── */
.cs-section { padding: 96px 0; }
@media (max-width: 768px) { .cs-section { padding: 64px 0; } }

/* ─── Shared typography ─── */
.cs-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cs-eyebrow--centered { text-align: center; }
.cs-eyebrow--gold { color: var(--gold-lt); }

.cs-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.cs-h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

.cs-body-lg { font-size: 1.0625rem; color: var(--ink-60); line-height: 1.8; margin-bottom: 16px; }
.cs-body { font-size: 0.9375rem; color: var(--ink-60); line-height: 1.78; margin-bottom: 12px; }

/* ─── Buttons ─── */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.cs-btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.cs-btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(198,166,107,0.32); }
.cs-btn--outline { background: transparent; color: var(--ink); border-color: var(--warm-border); }
.cs-btn--outline:hover { border-color: var(--gold); color: var(--gold); }


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.cs-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.cs-nav.scrolled {
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--warm-border);
}

.cs-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) { .cs-nav-inner { padding: 0 20px; } }

/* Brand */
.cs-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.cs-brand-top {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--ink);
  transition: color var(--t);
}
.cs-brand-btm {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}
.cs-nav:not(.scrolled) .cs-brand-top { color: rgba(255,255,255,0.92); }
.cs-nav:not(.scrolled) .cs-brand-btm { color: var(--gold-lt); }

/* Breadcrumb */
.cs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-40);
  flex: 1;
  justify-content: center;
}
.cs-breadcrumb a { transition: color var(--t); }
.cs-breadcrumb a:hover { color: var(--gold); }
.cs-breadcrumb i { font-size: 0.58rem; color: var(--ink-20); }
.cs-breadcrumb span { color: var(--ink-60); font-weight: 500; }
.cs-nav:not(.scrolled) .cs-breadcrumb,
.cs-nav:not(.scrolled) .cs-breadcrumb a,
.cs-nav:not(.scrolled) .cs-breadcrumb span { color: rgba(255,255,255,0.5); }
.cs-nav:not(.scrolled) .cs-breadcrumb i { color: rgba(255,255,255,0.25); }

/* Nav CTA */
.cs-nav-cta {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.cs-nav-cta:hover { background: var(--gold); color: #fff; }
.cs-nav:not(.scrolled) .cs-nav-cta { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.cs-nav:not(.scrolled) .cs-nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); color: #fff; }

@media (max-width: 640px) { .cs-breadcrumb { display: none; } .cs-nav-cta { display: none; } }


/* ══════════════════════════════════════════
   01 · HERO
══════════════════════════════════════════ */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}

/* Video */
.cs-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.85);
  transform: scale(1.02);
}

/* Gradient overlay */
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(18,16,10,0.88) 0%,
    rgba(18,16,10,0.50) 40%,
    rgba(18,16,10,0.20) 75%,
    rgba(18,16,10,0.10) 100%
  );
}

/* Text */
.cs-hero-body {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  width: 100%;
}
@media (max-width: 768px) { .cs-hero-body { padding: 0 20px 60px; } }

.cs-eyebrow-light {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
}

.cs-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.cs-hero-h1 em { font-style: italic; font-weight: 300; color: var(--gold-lt); }

.cs-hero-loc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cs-hero-loc i { color: var(--gold); font-size: 0.72rem; }

.cs-hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.cs-hero-micro {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cs-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
}
.cs-hero-badges i { color: var(--gold-lt); font-size: 0.68rem; }

/* Scroll cue */
.cs-scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.cs-scroll-line { display: block; width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: csScrollPulse 2.4s ease-in-out infinite; }
.cs-scroll-word { font-size: 0.6rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); text-transform: uppercase; writing-mode: vertical-rl; }
@keyframes csScrollPulse { 0%,100%{opacity:.3;} 50%{opacity:.8;} }


/* ══════════════════════════════════════════
   02 · PERFORMANCE METRICS BAR
══════════════════════════════════════════ */
.cs-metrics-bar {
  background: var(--ink);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cs-metrics-grid {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.cs-metric {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 26px 16px;
  text-align: center;
}

.cs-metric-val {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}
.cs-metric-lbl {
  font-size: 0.675rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.cs-metric-div {
  width: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 768px) {
  .cs-metrics-grid { flex-wrap: wrap; }
  .cs-metric { min-width: 45%; }
  .cs-metric-div:nth-child(even) { display: none; }
}


/* ══════════════════════════════════════════
   03 · EXECUTIVE SUMMARY
══════════════════════════════════════════ */
.cs-summary { background: var(--warm-white); }

.cs-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .cs-summary-grid { grid-template-columns: 1fr; gap: 40px; } }

.cs-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.cs-summary-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(198,166,107,0.28);
  padding: 5px 11px;
  border-radius: 2px;
}


/* ══════════════════════════════════════════
   04 · THE OPPORTUNITY
══════════════════════════════════════════ */
.cs-opportunity { background: var(--warm-off); border-top: 1px solid var(--warm-border); border-bottom: 1px solid var(--warm-border); }

.cs-opp-header { margin-bottom: 48px; }

.cs-opp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .cs-opp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .cs-opp-grid { grid-template-columns: 1fr; } }

.cs-opp-card {
  background: var(--warm-white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  padding: 24px 22px 26px;
  transition: box-shadow var(--t) var(--ease), border-color var(--t);
}
.cs-opp-card:hover { box-shadow: var(--sh-md); border-color: var(--gold); }

.cs-opp-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-tint);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.cs-opp-icon i { font-size: 0.95rem; color: var(--gold); }

.cs-opp-card h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.cs-opp-card p {
  font-size: 0.855rem;
  color: var(--ink-60);
  line-height: 1.68;
}


/* ══════════════════════════════════════════
   05 · EXECUTION STRATEGY
══════════════════════════════════════════ */
.cs-execution { background: var(--warm-white); }

.cs-exec-header { margin-bottom: 52px; }
.cs-exec-intro {
  font-size: 0.9375rem;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 4px;
}

.cs-exec-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .cs-exec-cols { grid-template-columns: 1fr; } }

.cs-exec-col {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--warm-border);
  position: relative;
  background: var(--warm-white);
  transition: background var(--t);
}
.cs-exec-col:hover { background: var(--warm-off); }
.cs-exec-col:last-child { border-right: none; }
@media (max-width: 900px) {
  .cs-exec-col { border-right: none; border-bottom: 1px solid var(--warm-border); }
  .cs-exec-col:last-child { border-bottom: none; }
}

.cs-exec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1.5px solid rgba(198,166,107,0.3);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
}

.cs-exec-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 20px;
}

.cs-exec-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cs-exec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.865rem;
  color: var(--ink-60);
  line-height: 1.6;
}
.cs-exec-list i {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   06 · SALES PERFORMANCE
══════════════════════════════════════════ */
.cs-sales { background: var(--warm-off); border-top: 1px solid var(--warm-border); }

.cs-sales-header { margin-bottom: 40px; }

.cs-table-wrap {
  background: var(--warm-white);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.895rem;
}

.cs-table thead tr {
  background: var(--warm-off);
  border-bottom: 1px solid var(--warm-border);
}
.cs-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.cs-table tbody tr {
  border-bottom: 1px solid var(--warm-border);
  transition: background var(--t);
}
.cs-table tbody tr:last-child { border-bottom: none; }
.cs-table tbody tr:hover { background: var(--gold-pale); }

.cs-table td {
  padding: 14px 20px;
  color: var(--ink-60);
  vertical-align: middle;
}

/* Peak row */
.cs-tr--peak td { background: var(--gold-pale); }
.cs-tr--peak:hover td { background: #f5edda; }

.cs-unit-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--warm-off);
  border: 1px solid var(--warm-border);
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--sans);
  letter-spacing: 0.04em;
}

.cs-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.cs-psf {
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--ink-60);
}
.cs-psf--gold { color: var(--gold-dk); }

/* Bar graph in table */
.cs-bar-wrap {
  display: inline-block;
  width: 120px;
  height: 5px;
  background: var(--warm-mid);
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 10px;
}
.cs-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.9s var(--ease);
}
.cs-bar.animated { /* width set inline */ }
/* Trigger on parent .cs-table-wrap.animated */
.cs-table-wrap .cs-bar { width: var(--bar-w, 0) !important; }
.cs-bar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  vertical-align: middle;
}
.cs-bar-label--gold { color: var(--gold-dk); }

.cs-table-note {
  font-size: 0.775rem;
  color: var(--ink-40);
  padding: 14px 20px;
  border-top: 1px solid var(--warm-border);
  background: var(--warm-off);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.cs-table-note i { color: var(--gold); font-size: 0.78rem; flex-shrink: 0; }

@media (max-width: 640px) {
  .cs-table { font-size: 0.82rem; }
  .cs-table th, .cs-table td { padding: 11px 12px; }
  .cs-bar-wrap { display: none; }
  .cs-bar-label { display: none; }
}


/* ══════════════════════════════════════════
   07 · MARKET IMPACT
══════════════════════════════════════════ */
.cs-impact {
  background: var(--dark-section);
  padding: 96px 0;
}

.cs-impact-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cs-impact-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 1px;
}

.cs-impact-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 32px;
}

.cs-impact-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 0 24px;
  position: relative;
}
.cs-impact-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -24px;
  left: -8px;
  line-height: 1;
}

.cs-impact-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 48px;
}

.cs-impact-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  overflow: hidden;
  flex-wrap: wrap;
}

.cs-impact-stat {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px;
}
.cs-impact-val {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}
.cs-impact-lbl {
  font-size: 0.685rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-align: center;
  line-height: 1.5;
}

.cs-impact-div {
  width: 1px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   08 · EXECUTION TIMELINE
══════════════════════════════════════════ */
.cs-timeline { background: var(--warm-white); }

.cs-tl-header { margin-bottom: 56px; }

.cs-tl-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
}

.cs-tl-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.cs-tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-off);
  border: 1.5px solid var(--warm-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color var(--t), background var(--t);
}
.cs-tl-dot i { font-size: 0.85rem; color: var(--gold); }
.cs-tl-dot--gold {
  background: var(--gold-tint);
  border-color: var(--gold);
}
.cs-tl-dot--gold i { color: var(--gold-dk); }
.cs-tl-item:hover .cs-tl-dot { border-color: var(--gold); background: var(--gold-pale); }

.cs-tl-content {
  padding: 10px 0 28px;
  flex: 1;
}

.cs-tl-step {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.cs-tl-content h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.cs-tl-content p {
  font-size: 0.875rem;
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 560px;
}

.cs-tl-connector {
  width: 1px;
  background: var(--warm-border);
  min-height: 0;
  flex-shrink: 0;
  align-self: stretch;
  margin-left: 21px; /* center under dot (44px/2 - 1px/2) */
  height: 1px; /* collapse — CSS will stretch it */
}

/* Build the vertical line between dots */
.cs-tl-item + .cs-tl-connector + .cs-tl-item { }

/* Use a simpler approach: left border on content */
.cs-tl-item:not(.cs-tl-item--final) .cs-tl-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--warm-border);
  z-index: 0;
}

/* Remove connector divs from visual flow */
.cs-tl-connector { display: none; }

/* Restyle track as simple stack */
.cs-tl-track { gap: 0; }
.cs-tl-item { padding-bottom: 28px; }
.cs-tl-item--final { padding-bottom: 0; }
.cs-tl-item--final .cs-tl-dot::after { display: none; }

@media (max-width: 640px) {
  .cs-tl-item { gap: 16px; }
  .cs-tl-dot { width: 36px; height: 36px; }
  .cs-tl-item:not(.cs-tl-item--final) .cs-tl-dot::after { height: 44px; }
}


/* ══════════════════════════════════════════
   09 · THE RESULT
══════════════════════════════════════════ */
.cs-result { background: var(--warm-off); border-top: 1px solid var(--warm-border); }

.cs-result-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) { .cs-result-grid { grid-template-columns: 1fr; gap: 40px; } }

.cs-result-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-result-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--warm-border);
}
.cs-result-item:first-child { border-top: 1px solid var(--warm-border); }

.cs-result-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  border: 1px solid rgba(198,166,107,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cs-result-icon i { font-size: 0.92rem; color: var(--gold); }

.cs-result-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.cs-result-item p {
  font-size: 0.855rem;
  color: var(--ink-60);
  line-height: 1.65;
}


/* ══════════════════════════════════════════
   10 · CALL TO ACTION
══════════════════════════════════════════ */
.cs-cta-section { background: var(--warm-white); border-top: 1px solid var(--warm-border); padding: 96px 0; }

.cs-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cs-cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.cs-cta-h2 em { font-style: italic; font-weight: 300; color: var(--gold); }

.cs-cta-body {
  font-size: 0.9375rem;
  color: var(--ink-60);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cs-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cs-cta-divider {
  width: 48px;
  height: 1px;
  background: var(--warm-border);
  margin: 0 auto 24px;
}

.cs-cta-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cs-cta-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-40);
}
.cs-cta-contact i { color: var(--gold); font-size: 0.78rem; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.cs-footer {
  background: var(--ink);
  padding: 32px 0;
}

.cs-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cs-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cs-footer-brand .cs-brand-top { color: rgba(255,255,255,0.85); font-size: 12px; letter-spacing: 0.16em; font-weight: 700; }
.cs-footer-brand .cs-brand-btm { color: var(--gold); font-size: 8px; letter-spacing: 0.24em; font-weight: 600; }

.cs-footer-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  flex: 1;
  text-align: center;
}

.cs-footer-links {
  display: flex;
  gap: 20px;
}
.cs-footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--t);
}
.cs-footer-links a:hover { color: var(--gold-lt); }

@media (max-width: 768px) {
  .cs-footer-inner { flex-direction: column; text-align: center; }
  .cs-footer-links { justify-content: center; }
}


/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: 0.14s; }

/* CSS animation fallback (in case IO is slow) */
@keyframes csForceReveal { to { opacity: 1; transform: none; } }
.reveal { animation: csForceReveal 0s 1.2s forwards; }
.reveal-stagger > * { animation: csForceReveal 0s 1.4s forwards; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0.00s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.08s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }

/* ─── Global polish ─── */
::selection { background: var(--gold-tint); color: var(--ink); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--warm-off); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
