/* ============================================================
   AW3 — Agence de Vibe Marketing · Guadeloupe · LIGHT
   Palette: white + near-black + orange/coral #FF5A3D
   Type: Fraunces (display serif) + Inter (body) + JetBrains Mono
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Colors — light theme */
  --bg: #FFFFFF;
  --bg-2: #FAF7F2;
  --bg-3: #F2EFEA;
  --ink: #0A0A0B;
  --ink-2: #3A3A3E;
  --ink-3: #6E6E75;
  --line: rgba(10,10,11,0.10);
  --line-strong: rgba(10,10,11,0.22);
  --coral: #FF5A3D;
  --coral-hot: #FF3D28;
  --coral-soft: #FFB39F;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Fluid type scale */
  --text-xs:  clamp(11px, 0.72vw + 8px, 13px);
  --text-sm:  clamp(13px, 0.5vw + 12px, 15px);
  --text-base: clamp(15px, 0.35vw + 14px, 17px);
  --text-lg:  clamp(17px, 0.6vw + 15px, 20px);
  --text-xl:  clamp(22px, 1.5vw + 18px, 32px);
  --text-2xl: clamp(28px, 2.2vw + 20px, 44px);
  --text-3xl: clamp(38px, 4vw + 20px, 68px);
  --text-display: clamp(48px, 6vw + 20px, 108px);
  --text-hero: clamp(44px, 9vw + 16px, 156px);

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px; --space-40: 160px;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 180ms;
  --t-med: 300ms;
  --t-slow: 600ms;

  --container: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--coral); color: var(--bg); }

/* ---------- Utility helpers ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
}
.accent { color: var(--coral); }

/* Grain overlay */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 90;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: var(--coral);
  transition: width 60ms linear;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: 18px var(--gutter);
  transition: background var(--t-med) var(--ease-out), backdrop-filter var(--t-med), border-color var(--t-med), transform var(--t-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav--hidden { transform: translateY(-100%); }

.nav__brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); position: relative; }
.nav__logo { height: 28px; width: auto; display: block; transition: opacity var(--t-med) var(--ease-out); }
/* Dual logo swap: white while over hero image, dark when scrolled */
.nav__logo--dark { position: absolute; inset: 0; opacity: 0; }
.nav--scrolled .nav__logo--light { opacity: 0; }
.nav--scrolled .nav__logo--dark  { opacity: 1; position: static; }
.nav--scrolled .nav__logo--light { position: absolute; inset: 0; }

.nav__links {
  display: flex;
  gap: clamp(14px, 2vw, 32px);
  align-items: center;
}
.nav__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast) var(--ease-out);
}
.nav__links a sup {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-right: 4px;
  vertical-align: super;
  transition: color var(--t-fast) var(--ease-out);
}
.nav__links a:hover { color: #FFFFFF; }
.nav__links a:hover sup { color: var(--coral); }
.nav--scrolled .nav__links a { color: var(--ink-2); }
.nav--scrolled .nav__links a sup { color: var(--ink-3); }
.nav--scrolled .nav__links a:hover { color: var(--ink); }
@media (max-width: 960px) { .nav__links { display: none; } }

/* CTA button */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 10px 20px 10px 8px;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  position: relative;
}
.cta { background: var(--coral); border-color: var(--coral); color: #FFFFFF; }
.cta:hover { background: var(--coral-hot); border-color: var(--coral-hot); color: #FFFFFF; transform: translateY(-1px); }
.cta .cta__arrow { background: #FFFFFF; color: var(--coral); }
.cta:hover .cta__arrow { background: #FFFFFF; color: var(--coral-hot); }
.cta__arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.cta__arrow svg { width: 14px; height: 14px; }

/* ============ HERO — FULLBLEED ============ */
.hero--fullbleed {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 0;
  color: #FFFFFF;
}

.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__bg picture,
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
/* Subtle darkening at top + bottom for legibility of overlay elements */
.hero--fullbleed::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.35) 0%, transparent 22%, transparent 62%, rgba(10,10,11,0.55) 100%);
  pointer-events: none;
}
/* Slow, elegant zoom-in on hero image */
.hero__bg img { animation: heroZoom 18s var(--ease-out) forwards; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Content stack — title centered, CTA below */
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--gutter);
  max-width: 1200px;
}

.hero__title-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-size: clamp(56px, 8vw + 20px, 148px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  max-width: 12ch;
  margin: 0 0 clamp(28px, 5vh, 52px);
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero__title-line .asterisk {
  color: var(--coral);
  display: inline-block;
  transform: translateY(-0.05em) scale(0.82);
  margin-left: 0.02em;
  font-family: var(--font-body);
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(255,90,61,0.55);
}
.hero__title-line .nowrap { white-space: nowrap; }

.hero__cta {
  background: var(--coral);
  border-color: var(--coral);
  color: #FFFFFF;
  padding: 16px 26px 16px 8px;
  font-size: 16px;
  gap: 12px;
  box-shadow: 0 12px 36px -12px rgba(255,90,61,0.6);
}
.hero__cta:hover {
  background: var(--coral-hot);
  border-color: var(--coral-hot);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -14px rgba(255,90,61,0.7);
}
.hero__cta .cta__arrow {
  width: 40px; height: 40px;
  background: #FFFFFF;
  color: var(--coral);
}
.hero__cta .cta__arrow svg { width: 16px; height: 16px; }

/* Giant AW3* logomark, bottom-left, L7V-style */
.hero__logo-mark {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(20px, 4vh, 48px);
  z-index: 2;
  pointer-events: none;
}
.hero__logo-mark img {
  display: block;
  height: clamp(80px, 13vw, 190px);
  width: auto;
  filter: drop-shadow(0 4px 40px rgba(0,0,0,0.35));
}

/* Hero responsive */
@media (max-width: 780px) {
  .hero__inner {
    padding-top: 110px;
    padding-bottom: 220px;
    justify-content: center;
  }
  .hero__title-line {
    font-size: clamp(44px, 12vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    max-width: 100%;
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
  }
  .hero__cta { padding: 14px 22px 14px 6px; font-size: 15px; }
  .hero__cta .cta__arrow { width: 34px; height: 34px; }
  .hero__logo-mark img { height: clamp(72px, 22vw, 110px); }
  .hero__bg img { object-position: center 30%; }
}
@media (max-width: 480px) {
  .hero__inner { padding-left: 20px; padding-right: 20px; }
  .hero__logo-mark { left: 20px; bottom: 22px; }
}

/* Retain generic .display utilities (used elsewhere on the page) */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--ink);
}
.display em { font-style: italic; font-weight: 400; color: var(--ink-2); }
.display--md   { font-size: var(--text-2xl); }
.display--xl   { font-size: var(--text-3xl); line-height: 0.96; }
.display--hero { font-size: var(--text-hero); }

.aw3-mark { height: clamp(64px, 8vw, 110px); width: auto; display: block; }
.aw3-mark--foot { height: clamp(52px, 6vw, 80px); }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 32px);
  font-style: italic;
  color: var(--ink-2);
  font-weight: 400;
}
.marquee__track .mark { color: var(--coral); font-style: normal; font-weight: 400; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(72px, 10vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
  position: relative;
}
.section__label {
  max-width: var(--container);
  margin: 0 auto var(--space-12);
}
.section__content {
  max-width: 900px;
  margin: 0 auto;
}
.section__content--wide { max-width: var(--container); }
.section__lede {
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 58ch;
  margin-top: var(--space-8);
  line-height: 1.5;
}
.prose {
  font-size: var(--text-base);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 60ch;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--coral); font-style: italic; }

/* ---------- Manifeste ---------- */
.section--manifest .display--xl em { color: var(--coral); font-family: var(--font-display); }
.manifest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-16);
}
@media (max-width: 780px) { .manifest__grid { grid-template-columns: 1fr; gap: var(--space-8); } }

.pull-quote {
  margin: var(--space-24) 0;
  padding: var(--space-16) 0 var(--space-16) var(--space-16);
  border-left: 2px solid var(--coral);
  position: relative;
}
.pull-quote__mark {
  position: absolute; top: -8px; left: -8px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--bg);
  font-size: 24px; font-weight: 700;
  display: grid; place-items: center;
  transform: rotate(-8deg);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}

.consequences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}
.consequences li {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  transition: border-color var(--t-fast) var(--ease-out), transform var(--t-fast);
}
.consequences li:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.consequences .num { color: var(--coral); display: block; margin-bottom: 12px; font-size: var(--text-sm); }
.consequences p { color: var(--ink-2); font-size: var(--text-base); line-height: 1.5; }
@media (max-width: 780px) { .consequences { grid-template-columns: 1fr; } }

/* ---------- Tiers ---------- */
.section--tiers .display--xl em { color: var(--coral); }
.tiers__viz {
  margin: var(--space-16) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  max-height: 560px;
}
.tiers__viz img { width: 100%; height: 100%; object-fit: cover; }

.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: var(--space-12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tier {
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: background var(--t-med) var(--ease-out);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: 0; }
.tier:hover { background: var(--bg-2); }
.tier__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-6);
}
.tier__budget {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.tier[data-tier="1"] .tier__title { color: var(--coral); }
.tier p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.55; }
.tier::before {
  content: attr(data-tier);
  position: absolute; top: var(--space-6); right: var(--space-6);
  font-family: var(--font-display);
  font-size: 90px;
  color: rgba(10,10,11,0.06);
  line-height: 1;
  font-weight: 500;
  pointer-events: none;
  transition: color var(--t-med);
}
.tier:hover::before { color: rgba(255,90,61,0.12); }

@media (max-width: 1100px) {
  .tiers { grid-template-columns: 1fr 1fr; }
  .tier { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .tier:nth-child(2n) { border-right: 0; }
  .tier:last-child { border-bottom: 0; }
}
@media (max-width: 640px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0 !important; }
}

/* ---------- Method ---------- */
.section--method .display--xl em { color: var(--coral); font-family: var(--font-display); }
.method__hero {
  max-width: var(--container);
  margin: 0 auto var(--space-20);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  max-height: 620px;
}
.method__hero img { width: 100%; height: 100%; object-fit: cover; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}
.step {
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  transition: border-color var(--t-med), transform var(--t-med), background var(--t-med);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 0%), rgba(255,90,61,0.14), transparent 60%);
  opacity: 0; transition: opacity var(--t-med);
  pointer-events: none;
}
.step:hover { border-color: rgba(255,90,61,0.35); transform: translateY(-4px); }
.step:hover::before { opacity: 1; }
.step__num {
  font-size: 12px;
  color: var(--coral);
  display: block;
  margin-bottom: var(--space-6);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  color: var(--ink);
}
.step p { color: var(--ink-2); line-height: 1.6; font-size: var(--text-base); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* Pods */
.pods {
  margin-top: var(--space-32);
  padding: var(--space-16);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-12);
}
@media (max-width: 900px) { .pods { grid-template-columns: 1fr; padding: var(--space-8); } }
.pods__head span { display: block; margin-bottom: var(--space-4); }
.pods__head h3 em { color: var(--coral); font-style: italic; font-family: var(--font-display); }

.pod-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-6);
  margin: var(--space-8) 0;
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.pod-node { text-align: center; }
.pod-node svg { width: 48px; height: 48px; margin: 0 auto 10px; color: var(--coral); }
.pod-node span { display: block; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; color: var(--ink); }
.pod-node small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.pod-link { color: var(--ink-3); text-align: center; }
.pod-link svg { width: 120px; height: 20px; }
.pod-link span { display: block; margin-top: 4px; font-size: 10px; }

/* ---------- Vibe Marketing ---------- */
.section--vibe { background: var(--bg-2); }
.section--vibe .display--xl em { color: var(--coral); }
.section--vibe a { color: var(--coral); border-bottom: 1px solid rgba(255,90,61,0.3); }
.section--vibe a:hover { border-bottom-color: var(--coral); }

.vibe__stack {
  margin-top: var(--space-16);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.stack__label { display: block; margin-bottom: var(--space-4); }
.stack__grid {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 4px;
}
.stack__item {
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  min-width: 130px;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.stack__item:hover { border-color: var(--coral); transform: translateY(-1px); }
.stack__item strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.stack__item small { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.stack__sep { color: var(--coral); font-size: 20px; }

.vibe-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--space-16);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.vibe-step {
  padding: var(--space-8);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-med);
  position: relative;
}
.vibe-step:hover { background: var(--bg); }
.vibe-step .mono { color: var(--coral); display: block; margin-bottom: var(--space-4); }
.vibe-step h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.vibe-step p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .vibe-steps { grid-template-columns: 1fr; } }

/* ---------- Caribbean ---------- */
.section--caribbean { padding-top: 0; padding-bottom: clamp(72px, 10vw, 160px); border-top: 0; }
.caribbean__media {
  position: relative;
  height: 70vh; min-height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.caribbean__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.caribbean__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.35) 0%, rgba(10,10,11,0.7) 100%);
}
.caribbean__content {
  position: absolute; inset: auto var(--gutter) 56px var(--gutter);
  max-width: 900px;
}
.caribbean__content .mono {
  display: block;
  color: rgba(242,239,234,0.85);
  margin-bottom: var(--space-4);
}
.caribbean__content .display--xl em { color: var(--coral); }

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}
.local-card {
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.local-card:hover { border-color: rgba(255,90,61,0.35); transform: translateY(-3px); }
.local-card .mono { color: var(--coral); display: block; margin-bottom: var(--space-3); font-size: 14px; }
.local-card h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 500; margin-bottom: var(--space-3); color: var(--ink); letter-spacing: -0.015em; }
.local-card p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.55; }
@media (max-width: 900px) { .local-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .local-grid { grid-template-columns: 1fr; } }

/* ---------- Offers ---------- */
.section--offers .display--xl em { color: var(--coral); font-family: var(--font-display); }
.offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}
.offer {
  padding: var(--space-8);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-2);
  display: flex; flex-direction: column;
  transition: border-color var(--t-med), transform var(--t-med), background var(--t-med);
  position: relative;
  overflow: hidden;
}
.offer:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.offer--featured {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border-color: rgba(255,90,61,0.35);
}
.offer--featured::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--coral);
}
.offer__head { margin-bottom: var(--space-6); }
.offer__head .mono { display: block; color: var(--coral); margin-bottom: var(--space-3); }
.offer__head h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: var(--space-2);
}
.offer__budget {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
}
.offer ul { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); }
.offer li {
  font-size: var(--text-sm);
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.offer li::before {
  content: "✱";
  position: absolute; left: 0; top: 0;
  color: var(--coral);
}
.offer li em { font-style: italic; color: var(--ink); font-weight: 500; }
@media (max-width: 1100px) { .offers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .offers { grid-template-columns: 1fr; } }

.offer__note {
  margin-top: var(--space-16);
  padding: var(--space-8);
  border-left: 2px solid var(--coral);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
}
.offer__note .mono { color: var(--coral); font-size: 24px; line-height: 1; }
.offer__note p { color: var(--ink-2); font-size: var(--text-base); line-height: 1.6; max-width: 70ch; }

/* ---------- CTA Final ---------- */
.section--cta {
  background: var(--bg);
  padding: clamp(96px, 14vw, 200px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.section--cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,90,61,0.18), transparent 70%);
  pointer-events: none;
}
.cta-block {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-block > .mono { display: block; margin-bottom: var(--space-6); color: var(--coral); }
.cta-block .display--hero em { color: var(--coral); }
.cta__lede {
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 62ch;
  margin: var(--space-10) auto 0;
  line-height: 1.55;
}
.cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-16);
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--text-base);
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--coral);
  color: var(--bg);
}
.btn--primary:hover { background: var(--coral-hot); transform: translateY(-2px); }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-2px); }

.cta__mini { margin-top: var(--space-8); color: var(--ink-3); }

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-20) var(--gutter) var(--space-8);
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer__brand {
  display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap;
  margin-bottom: var(--space-16);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .footer__cols { grid-template-columns: 1fr; gap: var(--space-8); } }
.footer__col-label { display: block; margin-bottom: var(--space-4); color: var(--coral); }
.footer__cols ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__cols a, .footer__cols li { font-size: var(--text-sm); color: var(--ink-2); transition: color var(--t-fast); }
.footer__cols a:hover { color: var(--coral); }

.footer__baseline {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-8);
  flex-wrap: wrap; gap: var(--space-4);
}
.footer__baseline .mono { color: var(--ink-3); }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee__track,
  .hero__meta .dot,
  .hero__scroll svg {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Focus states */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ==========================================================
   Hero floating phone (Agent IA)
   ========================================================== */
.hero-phone {
  /* Épinglé au viewport : reste visible et utilisable durant tout le scroll */
  position: fixed;
  right: clamp(24px, 6vw, 88px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  width: clamp(170px, 15.5vw, 215px);
  aspect-ratio: 250 / 510;
  max-height: 78vh;
  pointer-events: auto;
  animation: phoneFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50%      { transform: translateY(calc(-50% - 12px)) rotate(-1deg); }
}

.hero-phone__halo {
  position: absolute;
  inset: -18% -22%;
  background: radial-gradient(ellipse at center, rgba(255,90,61,0.55) 0%, rgba(255,90,61,0.15) 40%, transparent 70%);
  filter: blur(28px);
  animation: phoneHalo 4s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes phoneHalo {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

.hero-phone__device {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #14141A 0%, #0A0A0B 45%, #1a1a20 100%);
  border-radius: 40px;
  padding: 14px 12px 22px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.08),
    inset 0 2px 6px rgba(255,255,255,0.06),
    0 40px 80px -20px rgba(10,10,11,0.55),
    0 20px 40px -12px rgba(255,90,61,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #050506;
  border-radius: 999px;
  z-index: 4;
}
.hero-phone__notch::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4a4a58, #1a1a22);
  transform: translateY(-50%);
}

.hero-phone__screen {
  flex: 1;
  background: linear-gradient(180deg, #F8F4EF 0%, #EDE6DC 100%);
  border-radius: 26px;
  padding: 32px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.hero-phone__statusbar {
  position: absolute;
  top: 12px; left: 22px; right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 10px/1 var(--font-mono);
  color: #0A0A0B;
  letter-spacing: 0.02em;
}
.hero-phone__sig {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}
.hero-phone__sig i {
  display: block;
  width: 3px;
  background: #0A0A0B;
  border-radius: 1px;
}
.hero-phone__sig i:nth-child(1) { height: 4px; }
.hero-phone__sig i:nth-child(2) { height: 6px; }
.hero-phone__sig i:nth-child(3) { height: 8px; }
.hero-phone__sig i:nth-child(4) { height: 10px; }

.hero-phone__avatar {
  position: relative;
  margin-top: 10px;
  width: 64px; height: 64px;
}
.hero-phone__avatar svg {
  position: relative;
  width: 100%; height: 100%;
  z-index: 2;
  filter: drop-shadow(0 6px 18px rgba(255,90,61,0.4));
}
.hero-phone__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,90,61,0.55);
  animation: heroPulse 2s ease-out infinite;
}
.hero-phone__pulse--2 { animation-delay: 1s; }
@keyframes heroPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0;   }
}

.hero-phone__caller {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #0A0A0B;
  margin: 8px 0 0;
  letter-spacing: -0.01em;
}
.hero-phone__label {
  font: 500 10px/1 var(--font-mono);
  color: #FF5A3D;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-phone__label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: heroDot 1.6s ease-in-out infinite;
}
@keyframes heroDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero-phone__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
  margin-top: 2px;
}
.hero-phone__wave span {
  display: block;
  width: 3px;
  background: linear-gradient(180deg, #FF7A5E, #FF3D1F);
  border-radius: 2px;
  animation: heroWave 1.1s ease-in-out infinite;
}
.hero-phone__wave span:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.hero-phone__wave span:nth-child(2) { height: 14px; animation-delay: 0.08s; }
.hero-phone__wave span:nth-child(3) { height: 22px; animation-delay: 0.16s; }
.hero-phone__wave span:nth-child(4) { height: 28px; animation-delay: 0.24s; }
.hero-phone__wave span:nth-child(5) { height: 32px; animation-delay: 0.32s; }
.hero-phone__wave span:nth-child(6) { height: 28px; animation-delay: 0.40s; }
.hero-phone__wave span:nth-child(7) { height: 22px; animation-delay: 0.48s; }
.hero-phone__wave span:nth-child(8) { height: 14px; animation-delay: 0.56s; }
.hero-phone__wave span:nth-child(9) { height: 8px;  animation-delay: 0.64s; }
@keyframes heroWave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1;   }
}

.hero-phone__call {
  margin: 10px 6px 4px;
  border: none;
  background: linear-gradient(180deg, #FF7A5E 0%, #FF3D1F 100%);
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 999px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 8px 20px -6px rgba(255,90,61,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.hero-phone__call:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px -6px rgba(255,90,61,0.75),
    inset 0 1px 0 rgba(255,255,255,0.3);
  filter: brightness(1.05);
}
.hero-phone__call:active { transform: translateY(0); }
.hero-phone__call-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  align-items: center;
  justify-content: center;
  animation: heroRing 1.4s ease-in-out infinite;
}
.hero-phone__call-icon svg { width: 12px; height: 12px; }
@keyframes heroRing {
  0%, 100% { transform: rotate(0deg); }
  15%      { transform: rotate(-15deg); }
  30%      { transform: rotate(15deg); }
  45%      { transform: rotate(-10deg); }
  60%      { transform: rotate(10deg); }
  75%      { transform: rotate(0deg); }
}

/* --- 3-state phone: idle / connecting / in-call / error ------------------ */

/* Timer */
.hero-phone__timer {
  font: 500 11px/1 var(--font-mono);
  color: #A0A0A6;
  letter-spacing: 0.06em;
  margin: 2px 0 4px;
  opacity: 0;
  transition: opacity .3s ease;
  height: 12px;
}
.hero-phone.is-in-call .hero-phone__timer { opacity: 1; color: #FF5A3D; }

/* Hide/show alternate icons */
.hero-phone__icon-hangup { display: none; }
.hero-phone__spinner {
  display: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  animation: heroSpin 0.8s linear infinite;
}
@keyframes heroSpin {
  to { transform: rotate(360deg); }
}

/* Connecting state */
.hero-phone.is-connecting .hero-phone__call {
  background: linear-gradient(180deg, #A0A0A6 0%, #6B6B72 100%);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-phone.is-connecting .hero-phone__call-icon { animation: none; background: transparent; }
.hero-phone.is-connecting .hero-phone__icon-call { display: none; }
.hero-phone.is-connecting .hero-phone__spinner   { display: block; }
.hero-phone.is-connecting .hero-phone__wave      { opacity: 0.4; }

/* In-call state */
.hero-phone.is-in-call .hero-phone__call {
  background: linear-gradient(180deg, #EF4444 0%, #B91C1C 100%);
  box-shadow: 0 8px 20px -6px rgba(239,68,68,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-phone.is-in-call .hero-phone__call:hover {
  box-shadow: 0 12px 28px -6px rgba(239,68,68,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.05);
}
.hero-phone.is-in-call .hero-phone__call-icon {
  animation: none;
  background: rgba(255,255,255,0.18);
  transform: rotate(135deg);
}
.hero-phone.is-in-call .hero-phone__icon-call { display: none; }
.hero-phone.is-in-call .hero-phone__icon-hangup { display: block; }

/* Wave: kill CSS animation once JS drives it in-call */
.hero-phone.is-in-call .hero-phone__wave span { animation: none; }

/* Error state */
.hero-phone.is-error .hero-phone__call {
  background: linear-gradient(180deg, #F59E0B 0%, #B45309 100%);
}
.hero-phone.is-error .hero-phone__label { color: #B45309; }
.hero-phone.is-error .hero-phone__label::before { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }

/* Green dot when in-call (agent connected) */
.hero-phone.is-in-call .hero-phone__label::before {
  animation: heroDot 1.2s ease-in-out infinite;
}

/* Speaking/listening subtle avatar hint (in-call) */
.hero-phone.is-in-call.is-speaking .hero-phone__avatar { transform: scale(1.05); transition: transform .3s ease; }
.hero-phone.is-in-call.is-listening .hero-phone__avatar { transform: scale(1); transition: transform .3s ease; }

.hero-phone__home {
  width: 42%;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  margin: 4px auto 0;
}

/* Responsive: hide phone on tablet / mobile */
@media (max-width: 1100px) {
  .hero-phone { width: 210px; right: clamp(16px, 4vw, 40px); }
}
@media (max-width: 900px) {
  .hero-phone { display: none; }
}

/* ------------------------------------------------------------
   Mobile-only FAB — shown when the hero phone is hidden
   ------------------------------------------------------------ */
.hero-phone-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  padding: 14px 22px 14px 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF7A5E 0%, #FF3D1F 100%);
  color: #ffffff;
  font: 600 14px/1 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 12px 28px -6px rgba(255,90,61,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero-phone-fab__icon-call { width: 18px; height: 18px; }
.hero-phone-fab.is-in-call {
  background: linear-gradient(180deg, #EF4444 0%, #B91C1C 100%);
  box-shadow: 0 12px 28px -6px rgba(239,68,68,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-phone-fab.is-connecting {
  background: linear-gradient(180deg, #A0A0A6 0%, #6B6B72 100%);
}
@media (max-width: 900px) {
  .hero-phone-fab { display: inline-flex; }
}

/* ==========================================================
   Voice agent modal (deprecated — widget now runs standalone)
   ========================================================== */
.voice-modal--disabled-legacy {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.voice-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.voice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,11,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.voice-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 28px 24px;
  box-shadow: 0 30px 80px -20px rgba(10,10,11,0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(20px) scale(0.98);
  transition: transform .3s var(--ease-out);
  overflow: hidden;
}
.voice-modal.is-open .voice-modal__panel {
  transform: translateY(0) scale(1);
}
.voice-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: none;
  background: rgba(10,10,11,0.06);
  color: #0A0A0B;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.voice-modal__close:hover { background: rgba(10,10,11,0.12); }
.voice-modal__close svg { width: 18px; height: 18px; }

.voice-modal__head { padding-right: 40px; }
.voice-modal__head .mono {
  font: 500 11px/1 var(--font-mono);
  color: #FF5A3D;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.voice-modal__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.1;
  margin: 8px 0 10px;
  color: #0A0A0B;
  letter-spacing: -0.015em;
}
.voice-modal__head p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(10,10,11,0.65);
  margin: 0;
}

.voice-modal__widget {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FAF8F5 0%, #F2EDE5 100%);
  border-radius: 16px;
  padding: 20px;
}
/* Ensure ElevenLabs widget renders centred */
.voice-modal__widget elevenlabs-convai {
  width: 100%;
  display: block;
}

.voice-modal__mini {
  font: 500 10px/1 var(--font-mono);
  color: rgba(10,10,11,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

@media (max-width: 480px) {
  .voice-modal__panel { padding: 26px 20px 20px; border-radius: 18px; }
  .voice-modal__head h3 { font-size: 22px; }
}
