:root {
  /* Palette artisan de confiance */
  --bg: #f4efe6;          /* crème chaud */
  --bg-2: #ebe4d6;
  --paper: #faf6ee;
  --ink: #14202b;          /* bleu nuit profond */
  --ink-2: #2a3a47;
  --muted: #6b7480;
  --line: #d9d0bd;
  --line-strong: #b8ac93;
  --water: #1d4e6b;        /* bleu eau profonde */
  --water-2: #2c7a9b;
  --water-light: #b9d4dc;
  --accent: #4a8b9d;       /* teal logo */
  --accent-2: #2d6577;
  --accent-warm: #c2562a;  /* terracotta highlight */
  --ok: #3e6b3a;

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --r: 4px;
  --r-lg: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.eyebrow .num {
  color: var(--ink);
  font-weight: 500;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
}
.h-card {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.italic { font-style: italic; color: var(--ink-2); }

p { margin: 0; }
.lead { font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 56ch; }
.muted { color: var(--muted); }

/* ---------- layout ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section.tight { padding: 80px 0; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .container, .container-sm { padding: 0 20px; }
}

.divider {
  height: 1px;
  background: var(--line);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
}
.btn-primary .btn-arrow { background: var(--accent); color: white; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 24px;
  background: rgba(250,246,238,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid rgba(184,172,147,0.35);
  border-radius: 999px;
  transition: background .3s ease, border .3s ease;
}
.nav.scrolled {
  background: rgba(20,32,43,0.92);
  border-color: rgba(255,255,255,0.08);
  color: var(--paper);
}
.nav.scrolled .nav-link { color: rgba(255,255,255,0.7); }
.nav.scrolled .nav-link:hover { color: white; }
.nav.scrolled .nav-logo { color: var(--paper); }
.nav.scrolled .btn-ghost { border-color: rgba(255,255,255,0.18); color: white; }
.nav.scrolled .btn-ghost:hover { background: var(--accent); border-color: var(--accent); }

.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  margin-right: 32px;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: height .25s ease, filter .25s ease;
}
.nav.scrolled .nav-logo-img {
  height: 48px;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex; gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .nav-cta .btn { padding: 10px 14px; font-size: 12px; }
  .nav-cta .nav-phone { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(244,239,230,0.45) 0%, rgba(244,239,230,0.05) 25%, rgba(20,32,43,0.25) 60%, rgba(20,32,43,0.55) 100%);
  pointer-events: none;
}
.hero-headline { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero-headline .italic { color: #fde9c8; }
.hero-lead { color: rgba(255,255,255,0.92); text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero .eyebrow { color: rgba(255,255,255,0.85); }
.hero .eyebrow .num { color: #fff; }
.hero .live { color: rgba(255,255,255,0.95); }
.hero-feature { border-top-color: rgba(255,255,255,0.4); }
.hero-feature .label { color: rgba(255,255,255,0.7); }
.hero-feature .value, .hero-feature a.value { color: #fff; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-scroll-cue .scroll-label { color: rgba(255,255,255,0.85); }
.hero-scroll-cue .scroll-line { background: linear-gradient(to bottom, transparent, #fff 50%, transparent); background-size: 100% 200%; }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 40px;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-headline {
  margin: 40px 0 0;
}
.hero-headline .strike {
  position: relative;
  display: inline-block;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: auto;
  padding-top: 60px;
}
@media (max-width: 880px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 36px; }
}
.hero-cta-block { display: flex; flex-direction: column; gap: 16px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-feature {
  border-top: 1px solid rgba(20,32,43,0.2);
  padding-top: 16px;
}
.hero-feature .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.hero-feature .value {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-scroll-cue .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink) 50%, transparent);
  background-size: 100% 200%;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.hero-scroll-cue .scroll-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@keyframes scrollPulse {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 60px 0 32px;
  background: linear-gradient(to right, var(--paper) 0%, var(--paper) 70%, rgba(250,246,238,0) 100%);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  z-index: 2;
  pointer-events: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 64px;
  padding-left: 280px;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee-item .star {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 14px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- about ---------- */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}
.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.about-text .h-section { margin: 18px 0 28px; }
.engagement-list { margin-top: 32px; display: grid; gap: 0; }
.engagement {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.engagement:last-child { border-bottom: 1px solid var(--line); }
.engagement-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.engagement-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 6px;
}
.engagement-desc {
  color: var(--ink-2);
  font-size: 14.5px;
  max-width: 50ch;
}
.engagement-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 8px;
}

/* ---------- services ---------- */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 880px) { .services-head { grid-template-columns: 1fr; gap: 24px; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

/* service card hover */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .4s ease, box-shadow .5s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(20,32,43,0.25);
}
.service-card:hover .service-visual svg { transform: scale(1.04); }
.service-visual svg { transition: transform .8s cubic-bezier(.2,.7,.2,1); }

.service-visual {
  height: 200px;
  border-radius: 10px;
  background: var(--bg-2);
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-desc {
  color: var(--ink-2);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.service-list {
  list-style: none;
  padding: 0; margin: auto 0 0;
  display: grid;
  gap: 8px;
}
.service-list li {
  font-size: 13.5px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.service-list li:first-child { padding-top: 0; border-top: none; }
.service-list .check {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 2px;
}

/* placeholder visual blocks */
.ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, var(--bg-2), var(--bg-2) 8px, var(--bg) 8px, var(--bg) 16px);
  display: grid; place-items: center;
}
.ph-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: var(--paper);
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid var(--line);
}

/* service visuals */
.svc-visual-1, .svc-visual-2, .svc-visual-3 {
  position: absolute; inset: 0;
}
.svc-visual-1 { background: linear-gradient(135deg, #1d4e6b 0%, #2c7a9b 100%); }
.svc-visual-2 { background: linear-gradient(135deg, #14202b 0%, #2a3a47 100%); }
.svc-visual-3 { background: linear-gradient(135deg, #c2562a 0%, #8a3a17 100%); }

/* ---------- process ---------- */
.process { background: var(--ink); color: var(--paper); }
.process .eyebrow { color: rgba(255,255,255,0.5); }
.process .eyebrow .num { color: var(--paper); }
.process .h-section { color: var(--paper); }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .process-head { grid-template-columns: 1fr; gap: 24px; } }
.process-head .lead { color: rgba(255,255,255,0.7); }

.process-steps {
  position: relative;
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr 0.6fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 880px) {
  .step { grid-template-columns: 60px 1fr; }
  .step > .step-desc, .step > .step-meta { grid-column: 2; }
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.step-desc {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 50ch;
}
.step-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
}
.step:hover .step-title { color: #fff; }

/* ---------- stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.stat:last-child { border-right: none; }
@media (max-width: 880px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.stat-value .unit { color: var(--accent); }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- testimonials ---------- */
.testimonials { background: var(--paper); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
@media (max-width: 980px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.t-stars {
  font-family: var(--mono);
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 14px;
}
.t-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  flex: 1;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 16px;
}
.t-name { font-size: 14px; font-weight: 500; }
.t-loc { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }

/* ---------- zones ---------- */
.zones-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .zones-grid { grid-template-columns: 1fr; gap: 40px; } }
.france-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 540px;
}
.france-map svg { width: 100%; height: 100%; }
.zone-pin {
  fill: var(--accent);
  cursor: pointer;
  transition: r .2s ease;
}
.zone-pin:hover { r: 7; }
.zone-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.zone-chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  background: var(--paper);
  transition: background .2s, color .2s, border-color .2s;
}
.zone-chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- contact ---------- */
.contact { background: var(--ink); color: var(--paper); }
.contact .h-section { color: var(--paper); }
.contact .lead { color: rgba(255,255,255,0.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
}
.contact-block .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-block .value {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  color: var(--paper);
  display: inline-flex; align-items: center; gap: 14px;
}
.contact-block .value:hover { color: var(--accent); }
.contact-block .sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 32px;
}
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--paper);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  outline: none;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 80px; }
.field select option { background: var(--ink); color: var(--paper); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--accent-2); transform: translateY(-1px); }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(62,107,58,0.18);
  border: 1px solid rgba(62,107,58,0.4);
  border-radius: 8px;
  font-size: 14px;
  color: #c8e6c5;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ---------- footer ---------- */
.footer {
  background: var(--bg-2);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-strong);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .h-card { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-width: 36ch; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}

.giant-word {
  font-family: var(--serif);
  font-size: clamp(80px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 60px 0 -30px;
  text-align: center;
  user-select: none;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.reveal-words.in .word { opacity: 1; transform: translateY(0); }

/* live indicator */
.live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.live .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  position: relative;
}
.live .pulse::after {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--ok);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(0.6); opacity: .9; }
  to { transform: scale(1.6); opacity: 0; }
}
