
/* ─── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --ink:        #1C1814;
  --ink-soft:   #5A5048;
  --terra:      #C4622A;
  --terra-l:    #D4784A;
  --warm:       #F8F5F0;
  --cream:      #F2EDE4;
  --gold:       #A8843A;
  --rule:       #D4C8B4;
  --rule-l:     #E4DAC8;
  --dark:       #1C1814;
  --lime:       #A8E63D;
  --coral:      #FF6B4A;
  --ann-gold:   #E8C547;

  --d1: 0 1px 2px rgba(60,40,20,.07),0 2px 4px rgba(60,40,20,.06);
  --d2: 0 1px 2px rgba(60,40,20,.07),0 2px 4px rgba(60,40,20,.07),0 4px 8px rgba(60,40,20,.06),0 8px 16px rgba(60,40,20,.05);
  --d3: 0 1px 2px rgba(60,40,20,.08),0 2px 4px rgba(60,40,20,.08),0 4px 8px rgba(60,40,20,.08),0 8px 16px rgba(60,40,20,.07),0 16px 32px rgba(60,40,20,.06);
  --d4: 0 2px 4px rgba(60,40,20,.1),0 4px 8px rgba(60,40,20,.1),0 8px 16px rgba(60,40,20,.1),0 16px 32px rgba(60,40,20,.08),0 32px 64px rgba(60,40,20,.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── Grain ──────────────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.03;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: overlay;
}

/* ── Cursor glow ──────────────────────────────────────────────────── */
.c-glow {
  position: fixed; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color, rgba(196,98,42,0.08)) 0%, transparent 68%);
  transform: translate(-50%,-50%);
  pointer-events: none; z-index: 1;
  transition: left .14s ease-out, top .14s ease-out,
              background .6s ease, width .5s ease, height .5s ease;
  will-change: left, top;
}
/* States applied via JS */
.c-glow.glow--dark {
  --glow-color: rgba(196,98,42,0.15);
  width: 620px; height: 620px;
}
.c-glow.glow--terra {
  --glow-color: rgba(255,253,248,0.17);
  width: 520px; height: 520px;
}
.c-glow.glow--light {
  --glow-color: rgba(196,98,42,0.08);
  width: 560px; height: 560px;
}

/* ── Annotations SVG ────────────────────────────────────────────────── */
.mark { position: relative; display: inline; white-space: nowrap; }
.mark svg {
  position: absolute; left: -4px; bottom: -8px;
  width: calc(100% + 8px); height: 16px;
  overflow: visible; pointer-events: none;
}
.mark-circle svg {
  bottom: auto; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% + 32px); height: calc(100% + 28px);
}
.mark svg path, .mark svg ellipse {
  stroke-dasharray: 500; stroke-dashoffset: 500;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.4,0,0.2,1);
  fill: none; stroke-linecap: round;
}
.mark.drawn svg path, .mark.drawn svg ellipse { stroke-dashoffset: 0; }
.mark-lime  svg path, .mark-lime  svg ellipse { stroke: var(--lime);     stroke-width: 2.5; }
.mark-coral svg path, .mark-coral svg ellipse { stroke: var(--coral);    stroke-width: 2.5; }
.mark-gold  svg path, .mark-gold  svg ellipse { stroke: var(--ann-gold); stroke-width: 2.5; }

/* ── Section label ──────────────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.section-label::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--terra);
}

/* ── Wavy section divider ────────────────────────────────────────────── */
.wave-divider {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  position: relative; z-index: 2;
}
.wave-divider svg { display: block; width: 100%; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-dark {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm); background: var(--ink);
  padding: 15px 30px; text-decoration: none; display: inline-block;
  border-radius: 6px; box-shadow: var(--d2);
  transition: background .25s, transform .2s, box-shadow .3s;
}
.btn-dark:hover { background: var(--terra); transform: translateY(-2px); box-shadow: var(--d3); }

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  padding: 15px 0; position: relative; transition: color .25s;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost::before {
  content: ''; position: absolute;
  bottom: 10px; left: 0; right: 0; height: 1px;
  background: var(--rule); transform-origin: left;
  transition: background .25s, transform .3s;
}
.btn-ghost:hover { color: var(--terra); }
.btn-ghost:hover::before { background: var(--terra); transform: scaleX(0.5); }

/* ══════════════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 64px;
  background: rgba(248,245,240,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,200,180,0.45);
  box-shadow: 0 1px 16px rgba(60,40,20,0.055);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--ink);
  text-decoration: none; letter-spacing: 0.01em;
}
.nav-logo em { font-style: italic; color: var(--terra); }
.nav-links {
  display: flex; gap: 36px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm); background: var(--ink);
  padding: 10px 22px; border-radius: 6px; text-decoration: none;
  box-shadow: var(--d1); transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--terra); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 501;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 498;
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212,200,180,0.45);
  box-shadow: 0 8px 32px rgba(60,40,20,0.10);
  padding: 8px 32px 32px;
  flex-direction: column;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform .28s ease, opacity .22s ease, visibility 0s .28s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: transform .28s ease, opacity .22s ease, visibility 0s;
}
.nav-mobile a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid rgba(212,200,180,0.3);
  transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.nav-active { color: var(--terra); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile {
  margin-top: 20px; border-bottom: none;
  color: var(--warm); background: var(--ink);
  padding: 14px 24px; border-radius: 6px;
  text-align: center; box-shadow: var(--d1);
  letter-spacing: 0.12em;
  transition: background .25s;
}
.nav-mobile .nav-cta-mobile:hover { background: var(--terra); color: var(--warm); }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
}

/* ══════════════════════════════════════════════════════════════════════
   SITE HERO — landing section
══════════════════════════════════════════════════════════════════════ */
.site-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 80px 110px;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(196,98,42,0.20) 0%, transparent 52%),
    radial-gradient(ellipse 50% 50% at 12% 82%, rgba(168,132,58,0.09) 0%, transparent 50%),
    var(--dark);
}

.site-hero-inner {
  display: flex; flex-direction: column; align-items: flex-start;
  width: 100%; max-width: 1240px; margin: 0 auto;
  position: relative; z-index: 1;
}

.sh-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(88px, 12.5vw, 184px);
  font-weight: 300; letter-spacing: -0.03em; line-height: 0.94;
  color: var(--cream); margin: 0;
  opacity: 0; transform: translateY(18px);
}
.sh-wordmark em { font-style: italic; color: var(--terra); }

.sh-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(242,237,228,0.32);
  margin: 0 0 32px 4px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
}
.sh-tagline::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: rgba(196,98,42,0.45);
}

.sh-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 64px; width: 100%;
}

.sh-payoff {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 300; font-style: italic;
  color: rgba(242,237,228,0.78);
  line-height: 1.42; letter-spacing: 0.005em;
  margin: 0; max-width: 460px;
  padding-bottom: 30px; /* aggancio ottico alla baseline del wordmark */
  flex-shrink: 0;
  opacity: 0;
}
.sh-payoff .mark svg { bottom: -6px; }

.sh-actions {
  display: flex; gap: 24px; align-items: center;
  margin-top: 56px;
  opacity: 0;
}

.sh-deco {
  position: absolute; right: -40px; bottom: -100px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 520px; font-weight: 300; font-style: italic; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.022);
  pointer-events: none; user-select: none;
}

.sh-scroll {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; opacity: 0;
}
.sh-scroll span {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(242,237,228,0.22);
}
.sh-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(196,98,42,0.55), transparent);
  animation: sh-pulse 2.2s ease-in-out infinite;
}
@keyframes sh-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1;   transform: scaleY(1.2); transform-origin: top; }
}

@media (max-width: 900px) {
  .sh-row { flex-direction: column; align-items: flex-start; gap: 36px; }
  .sh-payoff { padding-bottom: 0; }
}
@media (max-width: 768px) {
  .site-hero { padding: 80px 24px 96px; }
  .sh-tagline { margin-bottom: 24px; }
  .sh-payoff { font-size: clamp(19px, 5vw, 24px); }
  .sh-actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 36px; }
  .sh-scroll { left: 24px; }
  .sh-deco { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   HERO — narrative section (sezione 2)
══════════════════════════════════════════════════════════════════════ */
.hero {
  display: grid; grid-template-columns: 55% 45%;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(196,98,42,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 95%,  rgba(168,132,58,0.06) 0%, transparent 55%),
    var(--warm);
  position: relative;
}

.hero-left {
  padding: 96px 64px 88px 80px;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px; opacity: 0;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--ink-soft); }

.hero-headline {
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 300; line-height: 0.98;
  letter-spacing: -0.022em; margin-bottom: 36px;
  opacity: 0; transform: translateY(30px);
}
.hero-headline em { font-style: italic; color: var(--terra); display: block; margin-top: 6px; }

.hero-body {
  font-size: 20px;
  font-weight: 300; color: var(--ink-soft);
  max-width: 400px; line-height: 1.72; margin-bottom: 52px;
  opacity: 0; transform: translateY(20px);
}
.hero-actions {
  display: flex; gap: 24px; align-items: center;
  opacity: 0; transform: translateY(16px);
}

.hero-right {
  padding: 96px 80px 88px 52px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}

.hero-decor {
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-52%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 440px; font-weight: 300; font-style: italic;
  line-height: 1; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,98,42,0.09);
  pointer-events: none; user-select: none; z-index: 0;
}

/* Quote card — tilted, hand-drawn border via SVG, 3D hover */
.quote-card {
  position: relative; z-index: 1;
  padding: 44px 42px 36px;
  background: rgba(248,245,240,0.86);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 6px;
  box-shadow: var(--d3);
  transform: rotate(-1.8deg) perspective(1200px);
  transition: transform .5s cubic-bezier(0.23,1,0.32,1), box-shadow .5s;
  opacity: 0; transform: rotate(-1.8deg) translateY(24px);
  /* Roughen filter for hand-drawn edges */
  filter: url(#roughen);
}
.quote-card:hover { box-shadow: var(--d4); will-change: transform; }

/* SVG hand-drawn border overlay on quote card */
.quote-card-border {
  position: absolute; inset: 0;
  pointer-events: none; overflow: visible;
}

.quote-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; line-height: 1;
  color: var(--rule); position: absolute;
  top: 10px; left: 32px; letter-spacing: -4px;
}
.quote-card p {
  font-size: 21px;
  font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--ink-soft); margin-top: 30px;
}
.quote-attr {
  font-family: 'Caveat', cursive; font-size: 17px;
  color: var(--terra); margin-top: 22px; display: block;
}
.quote-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 18px; display: block;
  border-top: 1px solid var(--rule-l); padding-top: 16px;
}

/* ══════════════════════════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════════════════════════ */
.problem {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%,  rgba(196,98,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at -10% 100%, rgba(196,98,42,0.05) 0%, transparent 50%),
    var(--dark);
  color: var(--cream);
  padding: 88px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 80px;
  position: relative; overflow: hidden;
}
/* Header full-width sopra la griglia */
.problem-header {
  grid-column: 1 / -1;
  margin-bottom: 56px;
}
/* Colonna iceberg */
.iceberg-col {
  grid-column: 1; grid-row: 2;
  display: flex; align-items: flex-start; justify-content: center;
  padding-bottom: 24px;
}
.problem-right {
  grid-column: 2; grid-row: 2;
}

/* Iceberg illustration */
.iceberg-svg-wrap {
  width: 100%; display: flex; justify-content: flex-start;
  padding: 16px 0 0;
}
.iceberg-svg {
  width: 94%; max-width: 520px; height: auto;
  overflow: visible;
}
/* The drawn path — starts invisible, animates in via JS */
.iceberg-outline {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4,0,0.2,1);
}
.iceberg-water-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1) 0.4s;
}
.iceberg-fill-above,
.iceberg-fill-below {
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
}
.iceberg-facet,
.iceberg-hatch {
  opacity: 0;
  transition: opacity 0.8s ease 1.1s;
}
.iceberg-label {
  opacity: 0;
  transition: opacity 0.6s ease 1.3s;
}
.iceberg-svg.drawn .iceberg-outline    { stroke-dashoffset: 0; }
.iceberg-svg.drawn .iceberg-water-line { stroke-dashoffset: 0; }
.iceberg-svg.drawn .iceberg-fill-above,
.iceberg-svg.drawn .iceberg-fill-below { opacity: 1; }
.iceberg-svg.drawn .iceberg-facet,
.iceberg-svg.drawn .iceberg-hatch      { opacity: 1; }
.iceberg-svg.drawn .iceberg-label      { opacity: 1; }

.problem-bg-text {
  position: absolute; bottom: -80px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 380px; font-weight: 300; font-style: italic; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  pointer-events: none; user-select: none; letter-spacing: -0.02em;
}

.problem .section-label { color: rgba(242,237,228,0.38); }
.problem .section-label::before { background: var(--terra); }

.problem h2 {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.015em;
}
.problem h2 em { font-style: italic; color: var(--terra); display: block; margin-top: 8px; }

.problem-right p {
  font-size: 20px;
  font-weight: 300; line-height: 1.78;
  color: rgba(242,237,228,0.65); margin-bottom: 20px;
}
.problem-right p strong { color: var(--cream); font-weight: 400; }

.problem-symptoms { margin-top: 32px; }
.symptom {
  display: flex; align-items: baseline; gap: 14px;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.055);
  font-size: 18px;
  font-weight: 300; color: rgba(242,237,228,0.66);
  transition: color .22s, padding-left .22s; cursor: default;
}
.symptom:first-child { border-top: 1px solid rgba(255,255,255,0.055); }
.symptom:hover { color: rgba(242,237,228,0.96); padding-left: 8px; }
.symptom-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 300; letter-spacing: 0.06em;
  color: rgba(196,98,42,0.7); flex-shrink: 0; padding-top: 2px;
}

.problem-quote {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 64px; margin-top: 16px;
  text-align: center;
}
.problem-quote p {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 300;
  color: rgba(242,237,228,0.9); line-height: 1.38;
  max-width: 900px; margin: 0 auto;
  letter-spacing: -0.01em;
}
.problem-quote p strong { color: var(--terra-l); font-weight: 400; }
.problem-quote .caveat-note {
  font-family: 'Caveat', cursive; font-size: 20px;
  color: rgba(242,237,228,0.32); margin-top: 20px; display: block;
}

/* ══════════════════════════════════════════════════════════════════════
   APPROACH
══════════════════════════════════════════════════════════════════════ */
.approach {
  background:
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(196,98,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 0%,  rgba(168,132,58,0.05) 0%, transparent 50%),
    var(--cream);
  padding: 88px 80px;
}

.approach-header {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center; margin-bottom: 60px;
}
.approach h2 {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.015em;
}
.approach h2 em { font-style: italic; color: var(--terra); display: block; margin-top: 8px; }
.approach-lead {
  font-size: 19px; font-weight: 300; line-height: 1.76;
  color: var(--ink-soft); margin-top: 28px; max-width: 460px;
}
.approach-blockquote {
  border-left: 3px solid var(--terra);
  padding: 18px 22px; margin-top: 26px;
  background: rgba(196,98,42,0.04);
  border-radius: 0 6px 6px 0; box-shadow: var(--d1);
}
.approach-blockquote p {
  font-size: 19px;
  font-style: italic; font-weight: 300;
  color: var(--ink-soft); line-height: 1.68;
}

/* Venn diagram */
.approach-diagram {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 0;
}
.venn-svg {
  width: 100%; max-width: 440px; height: auto;
  overflow: visible;
}
/* Draw-in allo scroll — cerchi tracciati in sequenza, poi centro e labels */
.venn-circle {
  stroke-dasharray: 980; stroke-dashoffset: 980;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.venn-circle:nth-of-type(2) { transition-delay: 0.15s; }
.venn-circle:nth-of-type(3) { transition-delay: 0.3s; }
.venn-circle:nth-of-type(4) { transition-delay: 0.45s; }
.venn-center, .venn-scribble {
  opacity: 0;
  transition: opacity 0.8s ease 1.2s;
}
.venn-label {
  opacity: 0;
  transition: opacity 0.6s ease 1.5s;
}
.venn-svg.drawn .venn-circle { stroke-dashoffset: 0; }
.venn-svg.drawn .venn-center,
.venn-svg.drawn .venn-scribble,
.venn-svg.drawn .venn-label { opacity: 1; }

/* Steps — trattamento editoriale: numerali, hairline, niente card */
.steps-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(28,24,20,0.14);
}

.step-card {
  padding: 40px 32px 8px 28px;
  opacity: 0; transform: translateY(24px);
}
.step-card:first-child { padding-left: 0; }
.step-card + .step-card { border-left: 1px solid rgba(28,24,20,0.12); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300; line-height: 1;
  color: rgba(196,98,42,0.3);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}
.step-card:hover .step-num { color: var(--terra); }

.step-card h4 {
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 16px;
  font-weight: 300; line-height: 1.7;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════════ */
.services {
  background:
    radial-gradient(ellipse 45% 55% at 95% 10%, rgba(196,98,42,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%,  rgba(168,132,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(242,237,228,0.6) 0%, transparent 65%),
    var(--warm);
  padding: 96px 80px 88px;
  border-top: 1px solid rgba(212,200,180,0.4);
}
.services-header { margin-bottom: 52px; }
.services h2 {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.015em; margin-top: 8px;
}
.services h2 em { font-style: italic; color: var(--terra); }

/* Services — colonne editoriali separate da hairline, niente card */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.service-card {
  padding: 16px 44px 12px 40px;
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  opacity: 0; transform: translateY(32px);
}
.service-card:first-child { padding-left: 0; }
.service-card + .service-card { border-left: 1px solid rgba(212,200,180,0.6); }

/* Service icon — hand-drawn oval container */
.service-icon-wrap {
  position: relative; display: inline-block; margin-bottom: 28px;
}
.service-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300; font-style: italic;
  color: rgba(196,98,42,0.35);
  line-height: 1;
  position: relative; z-index: 1;
}
/* Hand-drawn oval SVG behind icon */
.service-icon-oval {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100px; height: 80px;
  pointer-events: none;
}
.service-icon-oval path {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  stroke: rgba(196,98,42,0.18);
  stroke-width: 1.5;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s,
              stroke 0.4s ease, stroke-width 0.4s ease;
}
/* Drawn in when card enters viewport (class added via JS) */
.service-card.in-view .service-icon-oval path { stroke-dashoffset: 0; }
.service-card:hover .service-icon-oval path {
  stroke-dashoffset: 0;
  stroke: rgba(196,98,42,0.5);
  stroke-width: 2;
}

.service-card h3 {
  font-size: 25px; font-weight: 400; margin-bottom: 4px; color: var(--ink);
  transition: color .3s ease;
}
.service-card:hover h3 { color: var(--terra); }
.service-subtitle {
  font-family: 'Caveat', cursive; font-size: 17px;
  color: var(--terra); margin-bottom: 20px; display: block;
}
.service-card p:not(.service-tags) {
  font-size: 18px;
  font-weight: 300; line-height: 1.74;
  color: var(--ink-soft); margin-bottom: 10px;
}
/* Tag di servizio — small caps con separatori, condivisi tra home e servizi */
.service-tags {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.9;
  color: var(--ink-soft);
}
.service-card p.service-tags {
  margin: auto 0 0;
  padding-top: 18px; border-top: 1px solid rgba(212,200,180,0.5);
  align-self: stretch;
}

.services-footer {
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid rgba(212,200,180,0.35);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.services-footer p {
  font-size: 18px; font-weight: 300; color: var(--ink-soft); max-width: 480px;
}

/* ══════════════════════════════════════════════════════════════════════
   TARGET BAND
══════════════════════════════════════════════════════════════════════ */
.target-band {
  background: var(--terra);
  padding: 88px 96px; text-align: center;
  position: relative; overflow: hidden;
}
.target-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(255,255,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(0,0,0,0.08) 0%, transparent 55%);
}
.target-band::after {
  content: 'PMI';
  position: absolute; bottom: -50px; right: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px; font-weight: 300; font-style: italic; line-height: 1;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.target-band p {
  position: relative; z-index: 1;
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 300; line-height: 1.28;
  color: rgba(248,245,240,0.95); max-width: 860px; margin: 0 auto;
  letter-spacing: -0.01em;
}
.target-band p em { font-style: italic; }
.target-band p strong { font-weight: 400; color: #fff; }
.target-band .caveat-sub {
  font-family: 'Caveat', cursive; font-size: 22px;
  color: rgba(248,245,240,0.5); margin-top: 24px;
  display: block; position: relative; z-index: 1;
}
/* CTA button — white on terracotta */
.btn-white {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra); background: var(--warm);
  padding: 16px 36px; text-decoration: none; display: inline-block;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.1);
  transition: background .25s, color .25s, transform .2s, box-shadow .3s;
  position: relative; z-index: 1;
}
.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
}
.btn-ghost-white {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,245,240,0.7); text-decoration: none;
  padding: 16px 0; position: relative; z-index: 1;
  transition: color .25s;
}
.btn-ghost-white::after { content: ' →'; }
.btn-ghost-white::before {
  content: ''; position: absolute;
  bottom: 10px; left: 0; right: 0; height: 1px;
  background: rgba(248,245,240,0.3); transform-origin: left;
  transition: background .25s, transform .3s;
}
.btn-ghost-white:hover { color: #fff; }
.btn-ghost-white:hover::before { background: rgba(248,245,240,0.7); transform: scaleX(0.5); }
.target-cta {
  display: flex; gap: 28px; align-items: center; justify-content: center;
  margin-top: 48px; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════════════ */
.why {
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(196,98,42,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 100% 0%, rgba(196,98,42,0.04) 0%, transparent 50%),
    var(--dark);
  padding: 96px 80px 88px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: start; color: var(--cream);
}
.why .section-label { color: rgba(242,237,228,0.38); }
.why .section-label::before { background: var(--terra); }
.why h2 {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.015em; margin-bottom: 28px;
}
.why h2 em { font-style: italic; color: var(--terra-l); display: block; margin-top: 8px; }
.why-body p {
  font-size: 20px;
  font-weight: 300; line-height: 1.78;
  color: rgba(242,237,228,0.62); margin-bottom: 18px;
}
.why-body .caveat-note {
  font-family: 'Caveat', cursive; font-size: 18px;
  color: rgba(242,237,228,0.35); font-style: italic;
}
.why-team-cta { margin-top: 36px; display: inline-block; }

.why-values { display: flex; flex-direction: column; }
.why-value {
  padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start;
  cursor: default;
}
.why-value:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300;
  color: rgba(242,237,228,0.12); line-height: 1; padding-top: 4px;
}
.value-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; letter-spacing: -0.01em;
  color: var(--cream); margin-bottom: 8px;
  transition: color .25s;
}
.why-value:hover .value-content h4 { color: var(--terra-l); }
.value-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 300;
  color: rgba(242,237,228,0.42); line-height: 1.76;
}

/* ══════════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════════ */
.faq {
  background: var(--warm);
  padding: 96px 80px 88px;
  border-top: 1px solid rgba(212,200,180,0.4);
}
.faq-header { margin-bottom: 52px; }
.faq-title {
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -0.015em;
  margin-top: 8px;
}
.faq-title em { font-style: italic; color: var(--terra); }

.faq-list { border-top: 1px solid var(--rule-l); }

.faq-item {
  border-bottom: 1px solid var(--rule-l);
}
.faq-item[open] .faq-q { color: var(--terra); }

.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 400;
  color: var(--ink);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .2s;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 300;
  color: var(--terra);
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  transition: transform .3s cubic-bezier(0.4,0,0.2,1), opacity .2s;
  line-height: 1;
}
.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-a {
  padding: 0 40px 28px 0;
}
.faq-a p {
  font-size: 17px; font-weight: 300;
  line-height: 1.78; color: var(--ink-soft);
  margin: 0;
}
.faq-a p strong { color: var(--ink); font-weight: 400; }
.faq-a p a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
  .faq { padding: 80px 40px 72px; }
}
@media (max-width: 768px) {
  .faq { padding: 64px 24px; }
  .faq-q { font-size: 16px; }
  .faq-a p { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════════════
   CTA — asimmetrica
══════════════════════════════════════════════════════════════════════ */
.cta {
  background:
    radial-gradient(ellipse 65% 70% at 100% 100%, rgba(196,98,42,0.07) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 5% 10%,   rgba(168,132,58,0.05) 0%, transparent 50%),
    var(--warm);
  padding: 104px 80px;
  border-top: 1px solid rgba(212,200,180,0.4);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.cta .section-label { margin-bottom: 28px; }
.cta h2 {
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 300; line-height: 0.98;
  letter-spacing: -0.022em;
}
.cta h2 em { font-style: italic; color: var(--terra); display: block; }
.cta-right p {
  font-size: 19px;
  font-weight: 300; color: var(--ink-soft);
  max-width: 420px; line-height: 1.74; margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 20px; align-items: center; }

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--cream); text-decoration: none;
}
.footer-logo em { font-style: italic; color: var(--terra); }
.footer-tagline {
  font-family: 'Caveat', cursive; font-size: 14px;
  color: rgba(242,237,228,0.28); display: block; margin-top: 3px;
}
.footer-nav { display: flex; gap: 32px; list-style: none; }
.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,237,228,0.3); text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--terra); }
.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.06em; color: rgba(242,237,228,0.2);
}

/* ══════════════════════════════════════════════════════════════════════
   METRICS BAND
══════════════════════════════════════════════════════════════════════ */
.metrics-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196,98,42,0.04) 0%, transparent 65%),
    var(--cream);
  padding: 80px 80px 76px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(212,200,180,0.5);
  position: relative;
}
.metric-item {
  padding: 0 32px; text-align: center;
  border-right: 1px solid rgba(212,200,180,0.5);
  opacity: 0; transform: translateY(24px);
}
.metric-item:first-child { padding-left: 0; text-align: left; }
.metric-item:last-child  { border-right: none; }
.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 300; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink); display: block;
}
.metric-num em { font-style: italic; color: var(--terra); }
.metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 12px; display: block;
}
.metric-note {
  font-family: 'Caveat', cursive; font-size: 16px;
  color: var(--terra); opacity: 0.75; margin-top: 5px; display: block;
}

/* ── GSAP initial states ─────────────────────────────────────────────── */
.g-fade { opacity: 0; transform: translateY(32px); }
.g-l    { opacity: 0; transform: translateX(-36px); }
.g-r    { opacity: 0; transform: translateX(36px); }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* NAV */
  nav { padding: 0 28px; }
  .nav-links { display: none; }

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 96px 28px 56px;
  }
  .hero-right { display: none; }

  /* METRICS */
  .metrics-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 56px 28px;
    gap: 40px 0;
  }
  .metric-item { padding: 0 20px; text-align: left; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-right: 1px solid rgba(212,200,180,0.5); padding-left: 0; }
  .metric-item:nth-child(4) { border-right: none; }
  .metric-item:first-child { padding-left: 0; }

  /* PROBLEM */
  .problem {
    padding: 72px 28px 64px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
  }
  .problem-header { grid-column: 1; margin-bottom: 40px; }
  .iceberg-col    { grid-column: 1; grid-row: 2; justify-content: center; margin-bottom: 48px; }
  .problem-right  { grid-column: 1; grid-row: 3; }
  .problem-quote  { grid-column: 1; }
  .iceberg-svg    { width: 65%; max-width: 280px; }

  /* APPROACH */
  .approach { padding: 72px 28px; }
  .approach-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .approach-diagram { overflow: visible; }
  .venn-svg { max-width: 320px; }
  .steps-bento { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 32px 24px 24px 0; }
  .step-card + .step-card { border-left: none; }
  .step-card:nth-child(even) { border-left: 1px solid rgba(28,24,20,0.12); padding-left: 24px; }
  .step-card:nth-child(n+3) { border-top: 1px solid rgba(28,24,20,0.12); }

  /* SERVICES */
  .services { padding: 72px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 0 32px; }
  .service-card + .service-card { border-left: none; border-top: 1px solid rgba(212,200,180,0.6); }
  .service-icon-wrap { margin-left: 16px; }

  /* TARGET BAND */
  .target-band { padding: 72px 28px; }
  .target-cta { flex-direction: column; gap: 16px; }

  /* WHY */
  .why {
    padding: 72px 28px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* CTA */
  .cta {
    padding: 80px 28px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-right p { max-width: none; }

  /* FOOTER */
  footer {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 540px
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  body { font-size: 17px; }

  /* NAV */
  nav { padding: 0 20px; height: 56px; }
  .nav-cta { padding: 8px 16px; font-size: 9px; }

  /* HERO */
  .hero-left { padding: 80px 20px 48px; }
  .hero-body { font-size: 17px; max-width: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* METRICS */
  .metrics-band {
    grid-template-columns: 1fr 1fr;
    padding: 48px 20px;
    gap: 32px 0;
  }
  .metric-item { padding: 0 14px; }
  .metric-item:first-child { padding-left: 0; }
  .metric-item:nth-child(3) { padding-left: 0; }

  /* PROBLEM */
  .problem { padding: 56px 20px 52px; }
  .iceberg-svg { width: 75%; max-width: 240px; }
  .problem-right p { font-size: 17px; }
  .symptom { font-size: 16px; }

  /* APPROACH */
  .approach { padding: 56px 20px; }
  .venn-svg { max-width: 280px; }
  .steps-bento { grid-template-columns: 1fr 1fr; }
  .approach-lead { font-size: 17px; }

  /* SERVICES */
  .services { padding: 56px 20px; }
  .service-card { padding: 32px 0 28px; }
  .service-card p:not(.service-tags) { font-size: 16px; }

  /* TARGET BAND */
  .target-band { padding: 56px 20px; }

  /* WHY */
  .why { padding: 56px 20px; gap: 40px; }
  .why-body p { font-size: 17px; }

  /* CTA */
  .cta { padding: 64px 20px; gap: 36px; }
  .cta-right p { font-size: 17px; }
  .cta-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* FOOTER */
  footer { padding: 32px 20px; }
  .footer-copy { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   CHI SIAMO
══════════════════════════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a.nav-active { color: var(--terra); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.cs-hero {
  min-height: 100svh;
  padding: 120px 80px 100px;
  display: flex; align-items: flex-end;
  background:
    radial-gradient(ellipse 65% 55% at 100% 8%, rgba(196,98,42,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 90%,  rgba(168,132,58,0.06) 0%, transparent 55%),
    var(--dark);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.cs-hero-inner { position: relative; z-index: 1; }
.cs-hero-h {
  font-size: clamp(40px, 5.2vw, 82px);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.018em;
  max-width: 880px; margin-bottom: 40px;
}
.cs-hero-h em { font-style: italic; color: var(--terra); display: block; margin-top: 8px; }
.cs-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 300; line-height: 1.78;
  color: rgba(242,237,228,0.48); max-width: 540px;
}
.cs-hero-deco {
  position: absolute;
  right: -60px; bottom: -80px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 520px; font-weight: 300; font-style: italic; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,98,42,0.06);
  pointer-events: none; user-select: none; z-index: 0;
}

/* ── Manifesto ───────────────────────────────────────────────────────── */
.cs-manifesto {
  background:
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(196,98,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 0%,  rgba(168,132,58,0.05) 0%, transparent 50%),
    var(--cream);
  padding: 96px 80px 112px;
}
.cs-manifesto-inner { max-width: 1200px; }
.cs-manifesto .section-label { margin-bottom: 64px; }

.cs-block {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 0 80px;
  padding: 72px 0;
  border-bottom: 1px solid var(--rule-l);
  align-items: center;
}
.cs-block:first-of-type { border-top: 1px solid var(--rule-l); }

.cs-block-phrase {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.012em;
  color: var(--ink);
}
.cs-block-phrase em { font-style: italic; display: inline; }

.cs-block-body {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--ink-soft);
}

/* ── Team ────────────────────────────────────────────────────────────── */
.cs-team {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(196,98,42,0.1) 0%, transparent 55%),
    var(--dark);
  padding: 96px 80px 112px;
  position: relative; overflow: hidden;
}
.cs-team-header { margin-bottom: 56px; }
.cs-team-label { color: rgba(242,237,228,0.35); }
.cs-team-label::before { background: var(--terra); }
.cs-team-h {
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 300; line-height: 1.06; letter-spacing: -0.015em;
  color: var(--cream);
}

/* Team cards */
.cs-team-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 24px;
  justify-content: center;
  position: relative; z-index: 1;
}

.tc-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
}

/* Isolated visual layer: img + duotone */
.tc-visual {
  position: absolute; inset: 0;
  isolation: isolate;
}
.tc-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
  transform: scale(1.02);
}
.tc-card:hover .tc-img { filter: grayscale(0%); transform: scale(1.06); }

.tc-duotone {
  position: absolute; inset: 0;
  background: var(--terra);
  mix-blend-mode: color;
  opacity: 0.55;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.tc-card:hover .tc-duotone { opacity: 0; }

/* Gradient overlay */
.tc-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,24,20,0.92) 0%,
    rgba(28,24,20,0.5) 40%,
    transparent 68%
  );
  z-index: 1; pointer-events: none;
}

/* Info panel */
.tc-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 22px 24px;
  z-index: 2;
}

/* Bio — hidden by default, slides up on hover */
.tc-hover-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease;
  margin-bottom: 0;
}
.tc-card:hover .tc-hover-content {
  max-height: 130px;
  opacity: 1;
  margin-bottom: 14px;
}
.tc-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 300; line-height: 1.68;
  color: rgba(242,237,228,0.68);
}

/* Base: role + name row */
.tc-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-l); display: block; margin-bottom: 6px;
}
.tc-name-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.tc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; line-height: 1.15;
  color: var(--cream);
}
.tc-linkedin {
  flex-shrink: 0;
  color: rgba(242,237,228,0.35);
  transition: color 0.22s;
  display: flex; align-items: center;
}
.tc-card:hover .tc-linkedin { color: rgba(242,237,228,0.8); }
.tc-linkedin:hover { color: var(--terra-l) !important; }

/* Team bg-text */
.cs-team-bg-text {
  position: absolute; bottom: -60px; right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 340px; font-weight: 300; font-style: italic; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  pointer-events: none; user-select: none; letter-spacing: -0.02em;
}

/* Carousel dots */
.tc-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 24px;
}
.tc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(242,237,228,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background .22s, transform .22s;
}
.tc-dot.active {
  background: var(--terra);
  transform: scale(1.4);
}
@media (max-width: 900px) {
  .tc-dots { display: flex; }
}

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cs-cta {
  background: var(--cream);
  padding: 96px 80px 104px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 80px; align-items: center;
}
.cs-cta-h {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink);
}
.cs-cta-h em { font-style: italic; color: var(--terra); display: block; margin-top: 6px; }
.cs-cta-right p {
  font-size: 18px; font-weight: 300; line-height: 1.76;
  color: var(--ink-soft); margin-bottom: 36px; max-width: 420px;
}
.cs-cta-actions {
  display: flex; gap: 24px; align-items: center;
}

/* Dark variant — active when the team section is hidden (showTeam = false) */
.cs-cta--dark {
  background:
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(196,98,42,0.1) 0%, transparent 55%),
    var(--dark);
}
.cs-cta--dark .section-label { color: rgba(242,237,228,0.35); }
.cs-cta--dark .section-label::before { background: var(--terra); }
.cs-cta--dark .cs-cta-h { color: var(--cream); }
.cs-cta--dark .cs-cta-right p { color: rgba(242,237,228,0.55); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cs-hero { padding: 96px 24px 72px; align-items: center; }
  .cs-hero-h { font-size: clamp(32px, 8vw, 52px); }
  .cs-hero-deco { display: none; }

  .cs-manifesto { padding: 64px 24px 80px; }
  .cs-block { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .cs-block-phrase { font-size: clamp(26px, 6vw, 40px); }

  .cs-team { padding: 64px 0 80px; overflow: hidden; }
  .cs-team-header { padding: 0 24px; margin-bottom: 40px; }
  .cs-team-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 24px;
  }
  .cs-team-track::-webkit-scrollbar { display: none; }
  .tc-card {
    flex-shrink: 0;
    width: 82vw;
    scroll-snap-align: center;
    cursor: default;
  }
  .tc-hover-content { max-height: none; opacity: 1; margin-bottom: 10px; }
  .cs-team-bg-text { display: none; }

  .cs-cta { padding: 64px 24px 72px; grid-template-columns: 1fr; gap: 32px; }
  .cs-cta-h { font-size: clamp(26px, 7vw, 44px); }
  .cs-cta-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* Blog shared */
.blog-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); border: 1px solid rgba(196,98,42,0.25);
  padding: 3px 9px; border-radius: 3px;
}

