/* ════════════════════════════════════════════════════════════════
   Urgence Débouchage 94 — Navy profond × Rouge urgence × Crème chaude
   Typo : Outfit (variable géo-moderne)
   ════════════════════════════════════════════════════════════════ */

:root {
  --paper:     #FBF8F3;
  --paper-2:   #F1ECE1;
  --paper-3:   #E8DECD;
  --surface:   #FFFFFF;

  --ink:       #0F172A;
  --ink-2:     #1E293B;
  --ink-3:     #475569;
  --ink-4:     #64748B;
  --ink-5:     #94A3B8;

  --navy:      #1E3A8A;
  --navy-d:    #172554;
  --navy-l:    #3B5BA5;
  --navy-soft: #DBEAFE;
  --navy-tint: #EEF2FA;

  --red:       #DC2626;
  --red-d:     #B91C1C;
  --red-l:     #EF4444;
  --red-soft:  #FEE2E2;
  --red-tint:  #FEF2F2;

  --line:      #E5DDD0;
  --line-2:    #D4C9B5;
  --line-soft: #EFE9DC;

  --dark:      #0F2A47;
  --dark-2:    #091B30;

  --maxw:      1240px;
  --r-sm:      6px;
  --r:         10px;
  --r-lg:      16px;

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Inter', system-ui, sans-serif;

  --shadow-sm:    0 1px 2px 0 rgba(15, 42, 71, .05);
  --shadow:       0 4px 14px -3px rgba(15, 42, 71, .1), 0 2px 6px -2px rgba(15, 42, 71, .05);
  --shadow-md:    0 18px 40px -12px rgba(15, 42, 71, .18), 0 6px 14px -8px rgba(15, 42, 71, .08);
  --shadow-red:   0 14px 32px -10px rgba(220, 38, 38, .4);
  --shadow-red-l: 0 18px 40px -10px rgba(220, 38, 38, .5);
  --shadow-navy:  0 12px 32px -10px rgba(30, 58, 138, .35);
}

* { box-sizing: border-box; }
*::selection { background: var(--red); color: #fff; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Typographie */
h1, h2, h3, h4 { font-family: var(--font); color: var(--navy); margin: 0 0 .55em; letter-spacing: -.02em; line-height: 1.08; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 5.8vw, 4.4rem); letter-spacing: -.035em; line-height: 1.02; font-weight: 700; }
h1 em, h2 em, h3 em { color: var(--red); font-style: normal; font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.4rem); font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
h4 { font-size: 1.02rem; font-weight: 600; }
p  { margin: 0 0 1rem; max-width: 64ch; color: var(--ink-3); }
em { font-style: normal; color: var(--red); font-weight: 700; }
strong { font-weight: 700; color: var(--ink); }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section--alt { background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255, 255, 255, .72); }

.eyebrow, .kicker { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 700; color: var(--red); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.eyebrow::before, .kicker::before { content: ""; width: 24px; height: 2px; background: var(--red); }
.section--dark .eyebrow, .section--dark .kicker { color: var(--red-l); }
.section--dark .eyebrow::before, .section--dark .kicker::before { background: var(--red-l); }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: var(--ink-3); line-height: 1.55; max-width: 60ch; font-weight: 400; }

.ornament, .rule-double, .chapter-no, .scribble::after, .marquee, .photo-strip,
.hero-since, .hero-issue, .hero-stamp { display: none; }

/* Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: 1rem 1.6rem; font-family: var(--font); font-weight: 600; font-size: .98rem; letter-spacing: -.005em; border: 1.5px solid transparent; border-radius: var(--r-sm); cursor: pointer; transition: transform .12s, background .2s, color .2s, border-color .2s, box-shadow .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); font-weight: 700; }
.btn-primary:hover { background: var(--red-d); box-shadow: var(--shadow-red-l); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-navy); font-weight: 700; }
.btn-navy:hover { background: var(--navy-d); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-cream { background: #fff; color: var(--navy); border-color: #fff; font-weight: 700; }
.btn-cream:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn-urgent, .btn-gold, .btn-accent { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-urgent:hover, .btn-gold:hover, .btn-accent:hover { background: var(--red-d); }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1.04rem; }
.btn-arrow::after { content: "→"; margin-left: .15rem; transition: transform .25s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Topbar navy */
.topbar { background: var(--navy-d); color: rgba(255, 255, 255, .82); font-size: .82rem; padding: .55rem 0; font-variant-numeric: tabular-nums; border-bottom: 1px solid var(--navy-l); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: #fff; font-weight: 600; transition: color .2s; }
.topbar a:hover { color: var(--red-l); }
.topbar .est { color: #fff; font-weight: 600; }
.topbar .glyph { color: var(--red-l); margin: 0 .55rem; }
.topbar .pulse { display: inline-block; width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2.4s infinite; margin-right: .6rem; box-shadow: 0 0 0 0 rgba(220, 38, 38, .65); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, .65); } 70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); } 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); } }
@media (prefers-reduced-motion: reduce) { .topbar .pulse { animation: none; } }
@media (max-width: 700px) { .topbar .desktop { display: none; } }

/* Header sticky */
.header { position: sticky; top: 0; z-index: 50; background: rgba(251, 248, 243, .92); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; min-height: 78px; position: relative; }
.logo { display: flex; align-items: center; gap: .9rem; color: var(--navy); }
.logo-mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: -.02em; border-radius: 8px; position: relative; box-shadow: var(--shadow-navy); }
.logo-mark::after { content: ""; position: absolute; top: -3px; right: -3px; width: 12px; height: 12px; background: var(--red); border: 2px solid var(--paper); border-radius: 50%; }
.logo-name { font-family: var(--font); font-weight: 800; font-size: 1.22rem; line-height: 1.05; letter-spacing: -.025em; color: var(--navy); }
.logo-name small { display: block; font-weight: 500; font-size: .7rem; letter-spacing: .04em; color: var(--ink-3); margin-top: .25rem; text-transform: none; }

.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-weight: 500; font-size: .94rem; color: var(--ink-3); padding: .4rem 0; position: relative; transition: color .15s ease; }
.nav a:hover { color: var(--red); }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 700; }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--red); border-radius: 2px; }
.nav-toggle { display: none; background: var(--paper); border: 1.5px solid var(--navy); color: var(--navy); padding: .55rem .95rem; cursor: pointer; font: 700 .9rem var(--font); border-radius: var(--r-sm); }
@media (max-width: 1040px) {
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: -28px; right: -28px; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1rem 28px 1.4rem; gap: 0; align-items: stretch; z-index: 49; }
  .nav.is-open a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav.is-open a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
}

.header-tel { display: inline-flex; align-items: center; gap: .55rem; padding: .85rem 1.3rem; background: var(--red); color: #fff; font-weight: 700; font-size: .98rem; font-variant-numeric: tabular-nums; letter-spacing: -.005em; border-radius: var(--r-sm); box-shadow: var(--shadow-red); transition: background .2s, transform .12s, box-shadow .2s; }
.header-tel:hover { background: var(--red-d); transform: translateY(-1px); box-shadow: var(--shadow-red-l); }
@media (max-width: 540px) { .header-tel .tel-txt { display: none; } }

/* HERO dark navy */
.hero { background: var(--dark); color: #fff; padding: clamp(64px, 8vw, 110px) 0; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -260px; right: -180px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(220, 38, 38, .22) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -150px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(30, 58, 138, .3) 0%, transparent 65%); pointer-events: none; z-index: 0; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.4rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
.hero-text { max-width: 620px; }
.hero h1 { color: #fff; max-width: 14ch; margin: 0 0 .5em; font-weight: 700; }
.hero h1 em { color: var(--red-l); }
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .95rem; background: rgba(220, 38, 38, .15); color: #fff; border: 1px solid rgba(220, 38, 38, .35); border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 1.6rem; }
.hero-badge .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse-urg 1.6s infinite; box-shadow: 0 0 8px var(--red); }
@keyframes pulse-urg { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.9); } }
@media (prefers-reduced-motion: reduce) { .hero-badge .dot { animation: none; } }
.hero-lead { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: rgba(255, 255, 255, .8); line-height: 1.6; margin: 0 0 2rem; max-width: 54ch; font-weight: 400; }
.hero-lead strong { color: #fff; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-meta { display: flex; align-items: center; gap: 2rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; color: rgba(255, 255, 255, .7); flex-wrap: wrap; }
.hero-meta > span { display: inline-flex; align-items: center; gap: .55rem; }
.hero-meta strong { color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.hero-meta .ic-check { color: var(--red-l); }

.hero-photo { position: relative; aspect-ratio: 4/5; background: var(--navy-d); overflow: hidden; border-radius: var(--r-lg); box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5), 0 12px 24px -6px rgba(220, 38, 38, .3); border: 1px solid rgba(255, 255, 255, .1); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); }

.floating-tag { position: absolute; left: 16px; bottom: 16px; background: #fff; padding: .85rem 1.1rem; border-radius: var(--r); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .65rem; font-size: .82rem; font-weight: 600; }
.floating-tag .ic { width: 32px; height: 32px; background: var(--red-soft); color: var(--red-d); border-radius: var(--r-sm); display: grid; place-items: center; }
.floating-tag .lbl { color: var(--ink-3); font-weight: 500; font-size: .72rem; display: block; }
.floating-tag .val { font-weight: 800; color: var(--navy); font-size: 1.06rem; font-variant-numeric: tabular-nums; letter-spacing: -.015em; display: block; }
.floating-stat { position: absolute; right: 16px; top: 16px; background: var(--red); color: #fff; padding: .9rem 1.15rem; border-radius: var(--r); box-shadow: var(--shadow-red); text-align: right; }
.floating-stat .big { font-size: 1.4rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.floating-stat .big .star { color: #fff; margin-right: .15rem; }
.floating-stat .sub { font-size: .72rem; color: rgba(255, 255, 255, .82); font-weight: 500; margin-top: .25rem; }

@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; } .hero-photo { aspect-ratio: 4/3; max-width: 580px; } }

/* Process 3 étapes */
.process { background: var(--paper); border-bottom: 1px solid var(--line); }
.process-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.4vw, 2.2rem); display: flex; gap: 1.3rem; align-items: flex-start; transition: background .2s ease; border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: background .2s; }
.process-step:hover::before { background: var(--red); }
.process-step:hover { background: var(--paper-2); }
.process-step .step-no { font-family: var(--font); font-weight: 800; font-size: 2rem; color: var(--red); font-variant-numeric: tabular-nums; letter-spacing: -.03em; line-height: 1; min-width: 56px; }
.process-step h3 { margin: 0 0 .4rem; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.process-step p { margin: 0; font-size: .96rem; color: var(--ink-3); line-height: 1.6; max-width: none; }
@media (max-width: 880px) { .process-inner { grid-template-columns: 1fr; } .process-step { border-right: 0; border-bottom: 1px solid var(--line); } .process-step:last-child { border-bottom: 0; } }

/* Trust strip */
.trust { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: clamp(34px, 5vw, 60px) 0; gap: 1rem; }
.stat { padding: 0 1.4rem; text-align: center; }
.stat .num { font-family: var(--font); font-weight: 800; font-size: clamp(1.9rem, 3.2vw, 2.8rem); color: var(--navy); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat .num em { font-style: normal; color: var(--red); }
.stat .lbl { font-weight: 500; font-size: .82rem; color: var(--ink-3); margin-top: .7rem; letter-spacing: .04em; }
.stat + .stat { border-left: 1px solid var(--line-2); }
@media (max-width: 760px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 0; } .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-2); padding-top: 1.6rem; } .stat:nth-child(3) { border-left: 0; } }

/* Section head */
.section-head { max-width: 720px; margin: 0 0 clamp(2.4rem, 4vw, 3.4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--ink-3); font-size: 1.05rem; line-height: 1.6; max-width: 58ch; }
.section-head.center p { margin-inline: auto; }

/* Grilles */
.grid { display: grid; gap: clamp(1rem, 1.8vw, 1.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Cartes */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.7rem, 2.2vw, 2.1rem); transition: transform .2s, box-shadow .25s, border-color .2s; display: flex; flex-direction: column; min-height: 280px; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: transparent; transition: background .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.card:hover::before { background: var(--red); }
.card .ic { display: grid; place-items: center; width: 50px; height: 50px; background: var(--navy-soft); color: var(--navy); border-radius: var(--r-sm); margin-bottom: 1.2rem; transition: background .2s, color .2s; }
.card:hover .ic { background: var(--navy); color: #fff; }
.card h3 { margin: 0 0 .55rem; font-size: 1.22rem; font-weight: 700; color: var(--navy); }
.card p { margin: 0; color: var(--ink-3); font-size: .96rem; line-height: 1.6; max-width: none; }
.card a.card-cta { margin-top: auto; padding-top: 1.4rem; font-weight: 700; font-size: .85rem; color: var(--red); display: inline-flex; align-items: center; gap: .35rem; letter-spacing: .04em; text-transform: uppercase; }
.card a.card-cta::after { content: "→"; transition: transform .2s; }
.card a.card-cta:hover::after { transform: translateX(4px); }

/* Feature équipement */
.feature-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s, border-color .25s; }
.feature-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.feature-img { margin: 0; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); filter: saturate(1.05) contrast(1.04); }
.feature-tile:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: clamp(1.6rem, 2.2vw, 2.1rem); }
.feature-body h3 { margin: 0 0 .6rem; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.feature-body p { margin: 0 0 1.4rem; color: var(--ink-3); font-size: .98rem; line-height: 1.6; max-width: none; }

/* CTA band navy/red gradient */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%); color: #fff; padding: clamp(44px, 5vw, 70px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 95% 30%, rgba(220, 38, 38, .25), transparent 50%), radial-gradient(circle at 5% 100%, rgba(255, 255, 255, .08), transparent 50%); pointer-events: none; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h3 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 2rem); margin: 0; font-weight: 700; max-width: 28ch; letter-spacing: -.025em; }
.cta-band p { color: rgba(255, 255, 255, .82); margin: .35rem 0 0; max-width: 50ch; font-size: 1rem; }
.cta-band .btn-cream { background: var(--red); color: #fff; border-color: var(--red); }
.cta-band .btn-cream:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Story split */
.story { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2.4rem, 4.5vw, 4.5rem); align-items: center; }
@media (max-width: 920px) { .story { grid-template-columns: 1fr; } .story-img { order: -1; max-width: 500px; } }
.story-img { overflow: hidden; aspect-ratio: 4/5; background: var(--paper-2); border-radius: var(--r-lg); box-shadow: var(--shadow-md); position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); }
.story-text p { font-size: 1.05rem; color: var(--ink-3); line-height: 1.7; max-width: 56ch; }
.story-text p.lead { font-family: var(--font); font-size: 1.22rem; color: var(--ink); font-weight: 500; font-style: normal; margin-bottom: 1.2rem; line-height: 1.45; max-width: 50ch; }
.drop-cap::first-letter { font-size: inherit; float: none; padding: 0; color: inherit; }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: clamp(2rem, 4vw, 3rem); counter-reset: step; }
.tl-step { padding: 0; position: relative; counter-increment: step; }
.tl-step .num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--red); color: #fff; border-radius: 50%; font-weight: 800; font-size: 1.08rem; font-variant-numeric: tabular-nums; margin-bottom: 1rem; box-shadow: var(--shadow-red); border: 2px solid rgba(255, 255, 255, .15); }
.tl-step .num::before { content: counter(step); }
.tl-step h3 { margin: .4rem 0 .55rem; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.section--dark .tl-step h3 { color: #fff; }
.tl-step p { margin: 0; color: var(--ink-3); font-size: .94rem; line-height: 1.6; max-width: none; }
.section--dark .tl-step p { color: rgba(255, 255, 255, .72); }
.tl-step::after { display: none; }
@media (max-width: 760px) { .timeline { grid-template-columns: 1fr; gap: 1.8rem; } }

/* Photo band */
.photo-band { display: block; position: relative; margin: 0; overflow: hidden; aspect-ratio: 21/9; }
@media (max-width: 760px) { .photo-band { aspect-ratio: 4/3; } }
.photo-band img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); }
.photo-band figcaption { position: absolute; left: clamp(20px, 4vw, 44px); bottom: clamp(20px, 4vw, 40px); background: var(--navy); color: #fff; padding: 1rem 1.4rem; border-radius: var(--r); font-size: .9rem; font-weight: 500; max-width: 56ch; border-left: 3px solid var(--red); }
.photo-band figcaption strong { color: var(--red-l); font-weight: 700; margin-right: .4rem; }

/* Zones */
.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); font-family: var(--font); font-size: 1rem; font-weight: 500; }
@media (max-width: 760px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
.zones-grid a { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding: 1rem 1.2rem 1rem 0; color: var(--navy); transition: background .15s, padding .25s, color .15s; }
.zones-grid a:hover { color: var(--red); padding-left: .8rem; background: var(--red-tint); }
.zones-grid a small { font-family: var(--font); font-size: .82rem; color: var(--ink-4); font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: .04em; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 920px) { .reviews { grid-template-columns: 1fr; } }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.7rem; position: relative; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review::before { content: ""; position: absolute; top: 0; left: 1.7rem; width: 36px; height: 3px; background: var(--red); border-radius: 2px; font-size: 0; background-image: none; padding: 0; display: block; }
.review-txt { font-family: var(--font); font-style: normal; font-weight: 400; font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; margin: 1.6rem 0 1.4rem; }
.review .stars { color: var(--red); display: flex; gap: .2rem; margin-bottom: 1rem; font-size: 1.05rem; letter-spacing: .12rem; }
.review-who { font-weight: 700; font-size: .94rem; color: var(--navy); display: block; }
.review-where { font-size: .82rem; color: var(--ink-3); margin-top: .15rem; display: block; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .8rem; padding: 0 1.5rem; transition: border-color .2s, box-shadow .2s; }
.faq details:hover { border-color: var(--line-2); }
.faq details[open] { border-color: var(--red); box-shadow: 0 8px 20px -10px rgba(220, 38, 38, .25); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-weight: 700; font-size: 1.05rem; color: var(--navy); line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--red); transition: transform .2s; flex: 0 0 auto; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-3); margin: 0 0 1.2rem; font-size: .98rem; line-height: 1.65; max-width: none; }

/* CTA dark */
.cta-dark { background: var(--dark); color: #fff; text-align: center; padding: clamp(72px, 9vw, 130px) 0; position: relative; overflow: hidden; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 0%, rgba(220, 38, 38, .25), transparent 55%), radial-gradient(circle at 100% 100%, rgba(30, 58, 138, .35), transparent 55%); pointer-events: none; }
.cta-dark .eyebrow { color: var(--red-l); }
.cta-dark .eyebrow::before { background: var(--red-l); }
.cta-dark h2 { color: #fff; max-width: 20ch; margin: 0 auto .5rem; font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -.03em; }
.cta-dark p { color: rgba(255, 255, 255, .76); max-width: 56ch; margin: 0 auto 1.6rem; font-size: 1.05rem; }
.cta-tel { display: inline-block; font-family: var(--font); font-weight: 800; font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; letter-spacing: -.035em; margin: 1.8rem 0; font-variant-numeric: tabular-nums; transition: color .2s; position: relative; }
.cta-tel::after { content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); width: 60px; height: 3px; background: var(--red); border-radius: 2px; }
.cta-tel:hover { color: var(--red-l); }

/* Footer */
.footer { background: var(--dark-2); color: rgba(255, 255, 255, .68); padding: clamp(64px, 7vw, 90px) 0 clamp(28px, 4vw, 40px); font-family: var(--font); font-size: .92rem; border-top: 1px solid rgba(220, 38, 38, .2); }
.footer h4 { color: #fff; font-family: var(--font); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.2rem; font-weight: 700; }
.footer a { color: rgba(255, 255, 255, .78); transition: color .15s; }
.footer a:hover { color: var(--red-l); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.6rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer .footer-brand { color: #fff; font-family: var(--font); font-size: 1.45rem; line-height: 1.05; letter-spacing: -.025em; font-weight: 800; }
.footer .footer-brand small { display: block; font-family: var(--font); font-size: .7rem; letter-spacing: .08em; color: var(--red-l); margin-top: .4rem; text-transform: uppercase; font-weight: 600; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .78rem; color: rgba(255, 255, 255, .45); letter-spacing: .02em; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating */
.floating { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }
.fab { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; box-shadow: var(--shadow-red-l); transition: transform .2s, background .2s; }
.fab:hover { transform: translateY(-3px) scale(1.04); background: var(--red-d); }
@media (max-width: 540px) { .floating { left: 16px; right: 16px; bottom: 16px; flex-direction: row; align-items: stretch; } .floating .fab { display: none; } .floating .btn-mobile { display: flex; flex: 1; } body { padding-bottom: 88px; } }
@media (min-width: 541px) { .floating .btn-mobile { display: none; } }

/* A11y */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
