/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1c2e;
  --ink-soft: #1a2d45;
  --amber: #e8a838;
  --amber-dim: #c48a20;
  --cream: #f9f6f1;
  --cream-deep: #ede8df;
  --steel: #7a8899;
  --steel-light: #a8b4c0;
  --white: #ffffff;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: linear-gradient(180deg, rgba(15,28,46,0.85) 0%, transparent 100%);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.nav-aetern {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
}

.nav-habitat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 400;
  color: rgba(249,246,241,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,168,56,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(26,45,69,0.8) 0%, transparent 50%);
  pointer-events: none;
}

/* Geometric grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(232,168,56,0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.hl-aetern {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hl-habitat {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(249,246,241,0.7);
  max-width: 480px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,168,56,0.6);
  padding: 6px 14px;
  border: 1px solid rgba(232,168,56,0.2);
}

.meta-sep {
  width: 4px;
  height: 4px;
  background: rgba(232,168,56,0.3);
  border-radius: 50%;
}

/* === HERO RIGHT - ORB === */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-orb-container {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 40% 35%, rgba(232,168,56,0.12) 0%, transparent 70%);
  border: 1px solid rgba(232,168,56,0.15);
  animation: pulse-orb 4s ease-in-out infinite;
}

.orb-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(232,168,56,0.06) 0%, transparent 70%);
  border: 1px solid rgba(232,168,56,0.2);
  animation: pulse-orb 4s ease-in-out infinite 0.8s;
}

.orb-3 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 50% 50%, rgba(232,168,56,0.15) 0%, transparent 70%);
  border: 1px solid rgba(232,168,56,0.3);
  animation: pulse-orb 4s ease-in-out infinite 1.6s;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.8; }
}

.hero-emblem {
  position: absolute;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.hero-emblem svg {
  width: 100%;
  height: 100%;
  animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-label {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.orb-label span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,168,56,0.5);
}

/* === SCROLL INDICATOR === */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(232,168,56,0.6) 0%, transparent 100%);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.35);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream);
  padding: 120px 48px;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--amber) 50%, transparent 100%);
  opacity: 0.3;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.manifesto-overline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.overline-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--amber);
  padding-left: 32px;
}

.manifesto-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--steel);
  font-weight: 300;
}

/* === SYSTEMS === */
.systems {
  background: var(--ink-soft);
  padding: 100px 48px;
  position: relative;
}

.systems::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(232,168,56,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(232,168,56,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.systems-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.systems-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.systems-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,168,56,0.1);
}

.sys-card {
  background: var(--ink-soft);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.3s ease;
}

.sys-card:hover {
  background: rgba(232,168,56,0.04);
}

.sys-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(232,168,56,0.25);
  line-height: 1;
}

.sys-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.sys-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--steel-light);
  font-weight: 300;
}

/* === COMMITMENT === */
.commitment {
  background: var(--cream);
  padding: 100px 48px;
}

.commitment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.commitment-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.commitment-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}

.commitment-left > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--steel);
  font-weight: 300;
}

.commitment-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
}

.pillar > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.pillar span {
  font-size: 13px;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.5;
}

/* === INCIDENTS DIAGRAM === */
.incidents-diagram {
  background: var(--ink);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.diagram-header {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.7;
}

.diagram-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diagram-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
}

.item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.item-dot.dimmed {
  background: var(--steel);
  opacity: 0.4;
}

.diagram-item span.dimmed,
span.dimmed {
  color: var(--steel);
  font-weight: 300;
  font-style: italic;
}

.diagram-expansion {
  border-top: 1px solid rgba(232,168,56,0.15);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(122,136,153,0.6);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  background: var(--ink);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,168,56,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}

.closing p {
  font-size: 16px;
  color: rgba(249,246,241,0.55);
  line-height: 1.7;
  font-weight: 300;
}

.closing-signature {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.sig-aetern {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.06em;
}

.sig-habitat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.closing-note {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,168,56,0.4);
}

/* === FOOTER === */
.footer {
  background: var(--cream-deep);
  padding: 32px 48px;
  border-top: 1px solid rgba(15,28,46,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-aetern {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--amber-dim);
  letter-spacing: 0.08em;
}

.footer-habitat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--steel);
  letter-spacing: 0.04em;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--steel);
  font-weight: 300;
}

.footer-sep {
  width: 3px;
  height: 3px;
  background: var(--steel);
  border-radius: 50%;
  opacity: 0.4;
}

/* === SOCIAL PROOF === */
.social-proof {
  background: var(--ink);
  padding: 100px 48px;
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,168,56,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(232,168,56,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.social-proof-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.social-proof-inner > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Testimonials */
.testimonials-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  border-left: 2px solid var(--amber);
  padding-left: 24px;
  margin: 0;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.2;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-location {
  font-size: 12px;
  color: var(--steel-light);
  font-weight: 300;
}

/* Case Study Hook */
.case-study-hook {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-study-card {
  background: var(--ink-soft);
  border: 1px solid rgba(232,168,56,0.15);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-study-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.case-study-outcome {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream);
  font-weight: 300;
}

.case-study-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.case-study-link:hover {
  text-decoration: underline;
}

/* How It Works */
.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.step-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  text-align: center;
}

.step-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,168,56,0.4) 0%, rgba(232,168,56,0.1) 100%);
  margin: 0 12px;
  margin-bottom: 28px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .manifesto, .systems, .commitment, .closing, .social-proof {
    padding: 80px 24px;
  }

  .social-proof-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-row {
    flex-direction: column;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .step-item {
    flex-direction: row;
    gap: 20px;
  }

  .systems-grid {
    grid-template-columns: 1fr;
  }

  .commitment-left h2 {
    font-size: 32px;
  }

  .closing h2 {
    font-size: 28px;
  }

  .footer {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* === FORFAIT CARD (replaces .incidents-diagram in commitment) === */
.forfait-card { background: var(--ink); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.forfait-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); opacity: 0.7; }
.forfait-price { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 5vw, 72px); font-weight: 600; color: var(--amber); line-height: 1; }
.forfait-sub { font-size: 13px; color: var(--steel-light); font-weight: 300; margin-top: -12px; }
.forfait-rows { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid rgba(232,168,56,0.15); padding-top: 20px; }
.forfait-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.forfait-row-label { color: var(--steel-light); font-weight: 300; }
.forfait-row-amount { color: var(--cream); font-weight: 500; }
.forfait-row-pct { font-size: 11px; color: rgba(232,168,56,0.5); margin-left: 6px; }
.forfait-note { font-size: 12px; color: rgba(122,136,153,0.6); font-style: italic; border-top: 1px solid rgba(232,168,56,0.1); padding-top: 16px; }

/* === ARTISANS SECTION === */
.artisans { background: var(--cream-deep); padding: 100px 48px; }
.artisans-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.artisans-left { display: flex; flex-direction: column; gap: 28px; }
.artisans-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3vw, 46px); font-weight: 400; line-height: 1.25; color: var(--ink); }
.artisans-left > p { font-size: 16px; line-height: 1.75; color: var(--steel); font-weight: 300; }
.artisan-benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.artisan-cta-card { background: var(--ink); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.artisan-cta-card .section-label { color: var(--amber); }
.artisan-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--cream); line-height: 1.2; }
.artisan-cta-body { font-size: 15px; line-height: 1.7; color: var(--steel-light); font-weight: 300; }
.btn-artisan { display: inline-block; background: var(--amber); color: var(--ink); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: background 0.25s ease; margin-top: 8px; width: fit-content; }
.btn-artisan:hover { background: var(--amber-dim); }

@media (max-width: 1024px) {
  .artisans-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .artisans { padding: 80px 24px; }
}

/* === FAQ PAGE === */
.faq-page { background: var(--cream); }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 12px; font-weight: 500; color: var(--cream); letter-spacing: 0.16em; text-transform: uppercase; transition: color 0.2s ease; }
.nav-link:hover { color: var(--amber); }

.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-link { font-size: 12px; font-weight: 500; color: var(--steel); letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s ease; }
.footer-link:hover { color: var(--amber-dim); }

.faq-hero { background: var(--ink); padding: 160px 48px 80px; position: relative; overflow: hidden; }
.faq-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(232,168,56,0.08) 0%, transparent 60%); pointer-events: none; }
.faq-hero-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.faq-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 56px); font-weight: 400; color: var(--cream); line-height: 1.15; }
.faq-hero .eyebrow { color: var(--amber); }
.faq-hero-lede { font-size: 18px; line-height: 1.65; color: rgba(249,246,241,0.7); font-weight: 300; max-width: 720px; }
.faq-hero-cta { margin-top: 16px; }

.faq-section { padding: 80px 48px; background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { background: var(--white); border: 1px solid rgba(15,28,46,0.08); border-radius: 12px; padding: 24px 28px; transition: border-color 0.2s ease; }
.faq-item + .faq-item { margin-top: 16px; }
.faq-item[open] { border-color: rgba(232,168,56,0.4); }

.faq-question { font-family: 'DM Sans', system-ui, sans-serif; font-size: 17px; font-weight: 500; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-right: 8px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--amber); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--steel); font-weight: 300; }

.faq-cta-band { background: var(--ink-soft); padding: 80px 48px; text-align: center; }
.faq-cta-band-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.faq-cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; color: var(--cream); line-height: 1.25; }
.faq-cta-band p { font-size: 16px; line-height: 1.7; color: rgba(249,246,241,0.65); font-weight: 300; }

@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; letter-spacing: 0.12em; }
  .footer-links { order: 3; }
  .footer-inner { flex-wrap: wrap; justify-content: center; }
  .faq-hero { padding: 120px 24px 60px; }
  .faq-section { padding: 60px 24px; }
  .faq-item { padding: 20px 22px; }
  .faq-question { font-size: 16px; }
  .faq-cta-band { padding: 60px 24px; }
}

/* === GARANTIE PAGE === */
.garantie-page { background: var(--cream); }

.garantie-section { padding: 80px 48px; background: var(--cream); }
.garantie-section--alt { background: var(--cream-deep); }
.garantie-section-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.garantie-section-inner .eyebrow { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 500; color: var(--amber); letter-spacing: 0.18em; text-transform: uppercase; }
.garantie-section-inner .eyebrow .eyebrow-line { display: block; width: 40px; height: 1px; background: var(--amber); opacity: 0.6; }
.garantie-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; color: var(--ink); line-height: 1.2; max-width: 760px; }
.garantie-section .zone-services { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.7; color: var(--steel); font-weight: 300; max-width: 760px; }
.garantie-section .zone-services li { padding-left: 16px; border-left: 2px solid rgba(232,168,56,0.4); }
.garantie-section .zone-services strong { color: var(--ink); font-weight: 500; }

.garantie-tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; width: 100%; max-width: 1000px; margin-top: 8px; }

@media (max-width: 720px) {
  .garantie-tiers { grid-template-columns: 1fr; }
  .garantie-section { padding: 60px 24px; }
}

/* === ZONES HUB PAGE === */
.zones-page { background: var(--cream); }

.zones-section { padding: 80px 48px; background: var(--cream); }
.zones-section--alt { background: var(--cream-deep); }
.zones-section-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.zones-section-inner .eyebrow { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 500; color: var(--amber); letter-spacing: 0.18em; text-transform: uppercase; }
.zones-section-inner .eyebrow .eyebrow-line { display: block; width: 40px; height: 1px; background: var(--amber); opacity: 0.6; }
.zones-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; color: var(--ink); line-height: 1.2; max-width: 760px; }
.zones-section-lede { font-size: 16px; line-height: 1.7; color: var(--steel); font-weight: 300; max-width: 760px; }
.zones-section-lede a { color: var(--amber-dim); text-decoration: none; border-bottom: 1px solid rgba(232,168,56,0.4); }
.zones-section-lede a:hover { border-bottom-color: var(--amber-dim); }

.zones-grid { width: 100%; max-width: 1100px; margin: 16px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.zone-card { background: var(--white); border: 1px solid rgba(15,28,46,0.08); border-radius: 12px; padding: 28px 30px; display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s ease; }
.zone-card:hover { border-color: rgba(232,168,56,0.4); }
.zone-card--planned { opacity: 0.6; }
.zone-card__badge { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-dim); border: 1px solid rgba(232,168,56,0.3); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
.zone-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1.25; }
.zone-card__cp { color: var(--steel); font-size: 14px; font-family: 'DM Sans', system-ui, sans-serif; letter-spacing: 0.04em; }
.zone-card .zone-meta { font-size: 13px; color: var(--steel); font-weight: 300; line-height: 1.6; }
.zone-card .zone-card__delai { font-size: 12px; color: var(--amber-dim); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.zone-card__actions { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.zone-card__cta { display: inline-block; padding: 10px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.zone-card .btn-secondary { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-dim); text-decoration: none; padding: 10px 0; }
.zone-card .btn-secondary:hover { color: var(--amber); }
.zone-card__placeholder { display: inline-block; padding: 10px 22px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(122,136,153,0.5); border: 1px dashed rgba(122,136,153,0.3); border-radius: 8px; cursor: not-allowed; }

@media (max-width: 720px) {
  .zones-grid { grid-template-columns: 1fr; }
  .zones-section { padding: 60px 24px; }
}
