/* ════════════════════════════════════════════
   TAXI CÔTE D'AZURE — Feuille de styles partagée
   ════════════════════════════════════════════ */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #152030;
  --navy-light: #1E3048;
  --gold:       #C9A84C;
  --gold-lt:    #DFBA6A;
  --gold-pale:  rgba(201,168,76,.1);
  --cream:      #F8F4EE;
  --cream-dk:   #EDE8E0;
  --white:      #FFFFFF;
  --muted:      #8899AA;
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans:  'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: .3s;
  --shadow-gold: 0 8px 32px rgba(201,168,76,.22);
  --shadow-dark: 0 12px 48px rgba(13,27,42,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); font-weight: 300; background: var(--cream); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }

/* ── Typo ── */
.overline { font-family: var(--sans); font-size: .67rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.gold-bar  { display: inline-block; width: 34px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; }

/* ── Scroll reveal ── */
.r { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.r.on { opacity: 1; transform: none; }
.r.d1 { transition-delay: .12s; } .r.d2 { transition-delay: .22s; } .r.d3 { transition-delay: .34s; } .r.d4 { transition-delay: .46s; }

/* ── Layout ── */
.wrap  { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.wrap--sm { max-width: 900px; }
.section { padding: 7rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); }

/* ── Section header ── */
.sh { text-align: center; margin-bottom: 4rem; }
.sh .overline { display: block; margin-bottom: 1rem; }
.sh-title { font-family: var(--serif); font-size: clamp(1.75rem,3.5vw,3rem); font-weight: 400; letter-spacing: -.01em; line-height: 1.1; }
.sh-title em { font-style: italic; color: var(--gold); }
.sh--left { text-align: left; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 2rem; font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: transform var(--t) var(--ease), box-shadow var(--t), background var(--t) var(--ease), color var(--t), border-color var(--t); }
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 1.5rem 0; transition: background .45s, padding .45s, backdrop-filter .45s, box-shadow .45s; }
.nav.stuck { background: rgba(13,27,42,.96); backdrop-filter: blur(14px); padding: 1rem 0; box-shadow: 0 2px 40px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo  { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--white); letter-spacing: .03em; }
.nav-logo-sub  { font-size: .58rem; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-size: .7rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color var(--t); display: flex; align-items: center; gap: .3rem; }
.nav-links > li > a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
/* Dropdown */
.nav-links li.has-dd > a .chevron { width: 8px; height: 8px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--t); }
.nav-links li.has-dd:hover > a .chevron { transform: rotate(180deg); }
.nav-dd { position: absolute; top: calc(100% + 12px); left: -1.25rem; min-width: 230px; background: var(--navy); border-top: 2px solid var(--gold); padding: .5rem 0; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 100; box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.nav-links li.has-dd:hover .nav-dd { opacity: 1; pointer-events: auto; transform: none; }
.nav-dd a { display: flex; align-items: center; gap: .75rem; padding: .7rem 1.5rem; font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .06em; transition: color var(--t), background var(--t); }
.nav-dd a:hover { color: var(--white); background: rgba(255,255,255,.04); }
.nav-dd a svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-tel { font-size: .8rem; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: .4rem; transition: color var(--t); }
.nav-tel svg { width: 13px; height: 13px; fill: currentColor; }
.nav-tel:hover { color: var(--gold-lt); }
/* Hamburger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--t); }
.nav-mob { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; border-top: 1px solid rgba(201,168,76,.18); }
.nav-mob.open { display: block; }
.nav-mob ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav-mob ul li a { display: block; padding: .7rem 0; font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.06); transition: color var(--t); }
.nav-mob ul li a:hover { color: var(--gold); }
.nav-mob-sub { padding-left: 1rem !important; font-size: .75rem !important; color: rgba(255,255,255,.5) !important; letter-spacing: .06em !important; }
@media (max-width: 960px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: flex; }
}

/* ════════════════════════════════════════════
   HERO — HOMEPAGE (two-panel)
   ════════════════════════════════════════════ */
.hero-home { display: grid; grid-template-columns: 1fr 38%; height: 100vh; min-height: 680px; }
.hero-home-left { position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1.06); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.62) 70%, rgba(13,27,42,.35) 100%); }
.hero-text { position: relative; z-index: 2; padding: 0 3rem 0 2rem; max-width: 640px; }
.hero-eyebrow { display: flex; align-items: center; margin-bottom: 2rem; opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards; }
.hero-h1 { font-family: var(--serif); font-size: clamp(2.6rem,5.5vw,5rem); font-weight: 300; color: var(--white); letter-spacing: -.025em; line-height: 1.05; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: .98rem; font-weight: 300; color: rgba(255,255,255,.7); max-width: 460px; line-height: 1.78; margin-bottom: 2.75rem; opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards; }
.hero-tel-btn { display: flex; align-items: center; gap: .7rem; padding: .875rem 1.5rem; border: 1px solid rgba(255,255,255,.28); color: var(--white); font-size: .88rem; font-weight: 400; transition: border-color var(--t), color var(--t); }
.hero-tel-btn svg { width: 15px; height: 15px; fill: currentColor; }
.hero-tel-btn:hover { border-color: var(--gold); color: var(--gold); }
/* Right panel */
.hero-home-right { background: var(--navy-mid); display: flex; flex-direction: column; justify-content: flex-end; align-items: center; position: relative; overflow: hidden; border-left: 1px solid rgba(201,168,76,.12); }
.hero-car-panel-label { position: absolute; top: 50%; right: 1.5rem; transform: translateY(-50%); writing-mode: vertical-rl; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.18); font-weight: 400; }
.hero-car-img { width: 100%; max-height: 68vh; object-fit: cover; object-position: center; position: relative; z-index: 1; opacity: 0; animation: fadeUp .9s var(--ease) 1s forwards; }
.hero-car-label { position: absolute; bottom: 1.75rem; left: 1.75rem; z-index: 2; }
.hero-car-label span { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.hero-car-label .model { color: var(--gold); margin-bottom: .15rem; }
.hero-car-label .desc { color: rgba(255,255,255,.35); }
/* Scroll cue */
.hero-scroll { position: absolute; bottom: 2.25rem; left: 37%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(255,255,255,.35); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; animation: scrollBounce 2s ease-in-out infinite; z-index: 3; }
.hero-scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }
@media (max-width: 900px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-home-right { display: none; }
  .hero-scroll { left: 50%; }
  .hero-text { padding: 0 1rem; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ════════════════════════════════════════════
   HERO — PAGES INTERNES (single, compact)
   ════════════════════════════════════════════ */
.page-hero { position: relative; height: 55vh; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero--lg { height: 68vh; min-height: 520px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,27,42,.95) 0%, rgba(13,27,42,.6) 60%, rgba(13,27,42,.2) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 2rem 4rem; max-width: 680px; }
.page-hero-content .overline { display: flex; align-items: center; margin-bottom: 1.25rem; }
.page-hero-h1 { font-family: var(--serif); font-size: clamp(2rem,4.5vw,3.8rem); font-weight: 300; color: var(--white); letter-spacing: -.02em; line-height: 1.08; margin-bottom: 1rem; }
.page-hero-h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 480px; }

/* ════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════ */
.trust { background: var(--navy); padding: 2.25rem 0; border-bottom: 1px solid rgba(201,168,76,.1); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: .9rem; padding: 0 1.75rem; border-right: 1px solid rgba(255,255,255,.07); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.trust-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.ti-label { font-size: .76rem; font-weight: 500; color: var(--white); }
.ti-desc  { font-size: .66rem; color: rgba(255,255,255,.38); margin-top: 2px; }
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .trust-item { padding: 0 0 1.25rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }
}

/* ════════════════════════════════════════════
   SERVICE CARDS (homepage overview)
   ════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.svc-card { position: relative; overflow: hidden; display: block; }
.svc-card img { width: 100%; height: 480px; object-fit: cover; transition: transform .75s var(--ease); display: block; }
.svc-card:hover img { transform: scale(1.05); }
.svc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.97) 0%, rgba(13,27,42,.35) 48%, rgba(13,27,42,.08) 100%); transition: background .4s; }
.svc-card:hover .svc-overlay { background: linear-gradient(to top, rgba(13,27,42,.99) 0%, rgba(13,27,42,.6) 52%, rgba(13,27,42,.18) 100%); }
.svc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; }
.svc-num { font-family: var(--serif); font-size: .72rem; color: var(--gold); letter-spacing: .22em; margin-bottom: .4rem; }
.svc-ttl { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
.svc-desc { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 1.4rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .45s; }
.svc-card:hover .svc-desc { max-height: 80px; opacity: 1; }
.svc-cta { font-size: .67rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .35rem; transition: gap var(--t); }
.svc-cta::after { content: '→'; transition: transform var(--t); }
.svc-card:hover .svc-cta::after { transform: translateX(4px); }
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card img { height: 340px; }
  .svc-desc { max-height: 80px; opacity: 1; }
}

/* ════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════ */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; height: 560px; object-fit: cover; }
.why-accent { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 160px; height: 160px; border: 1px solid var(--gold); z-index: -1; }
.why-content .overline { display: block; margin-bottom: 1.5rem; }
.why-ttl { font-family: var(--serif); font-size: clamp(1.7rem,3vw,2.75rem); color: var(--navy); margin-bottom: 1.25rem; line-height: 1.1; }
.why-ttl em { font-style: italic; }
.why-lead { font-size: .9rem; color: #4A5C6E; line-height: 1.85; margin-bottom: 2.5rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.75rem; }
.why-list li { display: flex; align-items: flex-start; gap: .9rem; font-size: .87rem; color: var(--navy); line-height: 1.55; }
.why-check { width: 17px; height: 17px; background: var(--gold-pale); border-radius: 50%; flex-shrink: 0; margin-top: 2px; position: relative; }
.why-check::after { content: ''; position: absolute; top: 50%; left: 50%; width: 5px; height: 5px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: translate(-65%, -65%) rotate(-45deg); }
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-img { height: 360px; }
  .why-accent { display: none; }
}

/* ════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ════════════════════════════════════════════ */
.detail-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.detail-intro img { width: 100%; height: 440px; object-fit: cover; }
.detail-content .overline { display: block; margin-bottom: 1rem; }
.detail-ttl { font-family: var(--serif); font-size: clamp(1.65rem,3vw,2.5rem); margin-bottom: 1.25rem; line-height: 1.1; }
.detail-lead { font-size: .9rem; color: #4A5C6E; line-height: 1.85; margin-bottom: 2rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .9rem; font-size: .86rem; line-height: 1.5; }
.fl-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: .45rem; }
@media (max-width: 900px) {
  .detail-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-intro img { height: 280px; }
}

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; }
.step-card { padding: 2rem 1.5rem; background: var(--white); border-top: 2px solid transparent; transition: border-color var(--t), transform var(--t) var(--ease); }
.step-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--gold-pale); line-height: 1; margin-bottom: .75rem; border-bottom: 1px solid var(--cream-dk); padding-bottom: .5rem; }
.step-ttl { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .6rem; }
.step-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* Tarifs / Inclus */
.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.inc-card { padding: 1.5rem; background: var(--cream); border-left: 3px solid var(--gold); }
.inc-card h4 { font-family: var(--serif); font-size: 1rem; font-weight: 500; margin-bottom: .4rem; }
.inc-card p { font-size: .8rem; color: #4A5C6E; line-height: 1.55; }
@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   DESTINATIONS
   ════════════════════════════════════════════ */
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 4rem; }
.dest-card { position: relative; overflow: hidden; }
.dest-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .65s var(--ease); display: block; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.15) 55%); }
.dest-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; }
.dest-name { font-family: var(--serif); font-size: 1.4rem; color: var(--white); font-weight: 400; margin-bottom: .25rem; }
.dest-dist { font-size: .68rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } .dest-card img { height: 240px; } }

/* ════════════════════════════════════════════
   COVERAGE SECTION (navy, watermark)
   ════════════════════════════════════════════ */
.cov-wrap { position: relative; overflow: hidden; }
.cov-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--serif); font-size: clamp(4rem,13vw,12rem); font-weight: 700; color: rgba(255,255,255,.025); white-space: nowrap; pointer-events: none; letter-spacing: .06em; }
.cov-inner { position: relative; z-index: 1; }
.cov-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem; margin-top: 4rem; }
.cov-col h3 { font-family: var(--serif); font-size: .95rem; font-weight: 400; color: var(--gold); letter-spacing: .1em; margin-bottom: 1.2rem; padding-bottom: .65rem; border-bottom: 1px solid rgba(201,168,76,.18); }
.cov-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.cov-col li { font-size: .8rem; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: .5rem; }
.cov-col li::before { content: ''; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 768px) { .cov-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .cov-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   BOOKING FORM
   ════════════════════════════════════════════ */
.book-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 5rem; align-items: start; }
.book-info .overline { display: block; margin-bottom: 1.25rem; }
.book-ttl { font-family: var(--serif); font-size: clamp(1.65rem,3vw,2.5rem); margin-bottom: 1.25rem; line-height: 1.1; }
.book-text { font-size: .88rem; color: #4A5C6E; line-height: 1.85; margin-bottom: 2rem; }
.book-contacts { display: flex; flex-direction: column; gap: .8rem; }
.book-ci { display: flex; align-items: center; gap: .7rem; font-size: .86rem; color: var(--navy); }
.book-ci svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.form-card { background: var(--white); padding: 3rem; border-top: 3px solid var(--gold); box-shadow: var(--shadow-dark); }
.form-ttl { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--navy); margin-bottom: .3rem; }
.form-sub { font-size: .72rem; color: var(--muted); margin-bottom: 2rem; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.fg { display: flex; flex-direction: column; gap: .32rem; }
.fg-full { grid-column: 1 / -1; }
.fl { font-size: .67rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.fi, .fs, .fta { width: 100%; padding: .82rem 1rem; font-family: var(--sans); font-size: .86rem; font-weight: 300; color: var(--navy); background: var(--cream); border: 1px solid var(--cream-dk); outline: none; transition: border-color var(--t), background var(--t); appearance: none; border-radius: 0; }
.fi:focus, .fs:focus, .fta:focus { border-color: var(--gold); background: var(--white); }
.fi.err, .fs.err { border-color: #c0392b; }
.ferr { font-size: .66rem; color: #c0392b; display: none; }
.fg.bad .ferr { display: block; }
.fta { resize: vertical; min-height: 86px; }
.fs { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.fsub { margin-top: 1.4rem; width: 100%; padding: 1rem; font-family: var(--sans); font-size: .75rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; background: var(--navy); color: var(--white); border: none; cursor: pointer; position: relative; overflow: hidden; }
.fsub::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform .45s var(--ease); }
.fsub span { position: relative; z-index: 1; transition: color .45s; }
.fsub:hover::before { transform: translateX(0); }
.fsub:hover span { color: var(--navy); }
.fsub:disabled { opacity: .6; cursor: not-allowed; }
.fsuccess { display: none; text-align: center; padding: 2.5rem 1rem; }
.fsuccess svg { width: 42px; height: 42px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 1rem; display: block; }
.fsuccess h4 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .4rem; }
.fsuccess p { font-size: .8rem; color: #4A5C6E; }
@media (max-width: 900px) {
  .book-layout { grid-template-columns: 1fr; gap: 3rem; }
  .fgrid { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; }
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.tcard { padding: 2.5rem; background: var(--cream); border-bottom: 2px solid transparent; transition: border-color var(--t), transform var(--t) var(--ease); }
.tcard:hover { border-color: var(--gold); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }
.tcard blockquote { font-family: var(--serif); font-style: italic; font-size: 1rem; font-weight: 300; color: var(--navy); line-height: 1.72; margin-bottom: 1.5rem; }
.tcard-author { display: flex; align-items: center; gap: .7rem; }
.tcard-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; filter: grayscale(20%); }
.tcard-name { font-size: .76rem; font-weight: 500; color: var(--navy); }
.tcard-loc  { font-size: .66rem; color: var(--muted); }
@media (max-width: 768px) { .tgrid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 3rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.75rem; background: var(--white); border-left: 3px solid var(--gold); box-shadow: var(--shadow-dark); transition: transform var(--t) var(--ease); }
.contact-card:hover { transform: translateX(4px); }
.contact-icon { width: 42px; height: 42px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-card-ttl { font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.contact-card-val { font-size: .92rem; font-weight: 400; color: var(--navy); }
.contact-card-val a { transition: color var(--t); }
.contact-card-val a:hover { color: var(--gold); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer { background: var(--navy); padding: 5rem 0 2rem; border-top: 1px solid rgba(201,168,76,.1); }
.footer-top { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--white); }
.footer-brand-tag  { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: .25rem 0 1.25rem; }
.footer-brand-desc { font-size: .76rem; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 1.5rem; max-width: 260px; }
.footer-socials { display: flex; gap: .6rem; }
.footer-soc { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: border-color var(--t), color var(--t); }
.footer-soc:hover { border-color: var(--gold); color: var(--gold); }
.footer-soc svg { width: 14px; height: 14px; }
.footer-col h4 { font-size: .64rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a { font-size: .76rem; color: rgba(255,255,255,.4); transition: color var(--t); }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.26); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .68rem; color: rgba(255,255,255,.26); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════
   SHARED JS UTIL STYLES
   ════════════════════════════════════════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ════════════════════════════════════════════
   WHATSAPP FAB
   ════════════════════════════════════════════ */
.wa-fab { position: fixed; right: 1.5rem; bottom: 1.75rem; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); z-index: 800; transition: transform var(--t), box-shadow var(--t); text-decoration: none; }
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }

/* ════════════════════════════════════════════
   MOBILE STICKY BAR
   ════════════════════════════════════════════ */
.mob-bar { display: none; }
@media (max-width: 768px) {
  .mob-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; height: 58px; background: var(--navy); border-top: 1px solid rgba(201,168,76,.2); }
  .mob-bar-tel, .mob-bar-wa { display: flex; flex: 1; align-items: center; justify-content: center; gap: .45rem; font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: background var(--t); text-decoration: none; }
  .mob-bar-tel { color: var(--gold); border-right: 1px solid rgba(255,255,255,.07); }
  .mob-bar-tel svg { width: 15px; height: 15px; }
  .mob-bar-wa { color: #25D366; }
  .mob-bar-wa svg { width: 18px; height: 18px; }
  .mob-bar-tel:hover { background: rgba(201,168,76,.06); }
  .mob-bar-wa:hover { background: rgba(37,211,102,.06); }
  .wa-fab { bottom: 4.75rem; right: 1rem; width: 46px; height: 46px; }
  .wa-fab svg { width: 24px; height: 24px; }
  body { padding-bottom: 58px; }
}

/* ════════════════════════════════════════════
   2-STEP BOOKING FORM
   ════════════════════════════════════════════ */
.fsteps-bar { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--cream-dk); }
.fstep-indicator { display: flex; align-items: center; gap: .6rem; flex: 1; }
.fstep-num { width: 28px; height: 28px; border-radius: 50%; background: var(--cream-dk); color: var(--muted); font-size: .7rem; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--t), color var(--t); }
.fstep-label { font-size: .67rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color var(--t); }
.fstep-indicator.active .fstep-num { background: var(--gold); color: var(--navy); }
.fstep-indicator.active .fstep-label { color: var(--navy); }
.fstep-indicator.done .fstep-num { background: var(--navy); color: var(--white); }
.fstep-sep { width: 28px; height: 1px; background: var(--cream-dk); flex-shrink: 0; }
.fstep-panel { display: none; }
.fstep-panel.active { display: block; }
.fstep-nav { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.fstep-back { background: none; border: none; font-family: var(--sans); font-size: .72rem; color: var(--muted); cursor: pointer; padding: 0; white-space: nowrap; transition: color var(--t); }
.fstep-back:hover { color: var(--navy); }

/* ════════════════════════════════════════════
   TARIFS PAGE
   ════════════════════════════════════════════ */
.tarif-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.tarif-card { background: var(--white); padding: 2rem 1.75rem; border-top: 2px solid var(--gold); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-dark); }
.tarif-route { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: .4rem; }
.tarif-info { font-size: .75rem; color: var(--muted); margin-bottom: 1.25rem; }
.tarif-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.tarif-price span { font-size: .85rem; font-family: var(--sans); color: var(--muted); font-weight: 400; }
@media (max-width: 768px) { .tarif-grid { grid-template-columns: 1fr; } }
@media (max-width: 960px) and (min-width: 769px) { .tarif-grid { grid-template-columns: repeat(2,1fr); } }

/* ════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════ */
.legal-content { max-width: 820px; margin: 0 auto; padding: 5rem 2rem; }
.legal-content h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin: 2.5rem 0 .75rem; color: var(--navy); }
.legal-content h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin: 1.75rem 0 .5rem; color: var(--navy); }
.legal-content p { font-size: .88rem; color: #4A5C6E; line-height: 1.85; margin-bottom: 1rem; }
.legal-content ul { margin: .75rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: .88rem; color: #4A5C6E; line-height: 1.75; margin-bottom: .3rem; }
.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }
