/* ============================================================
   TIFARASSE — Design System
   Gold / Ivory / Black · Playfair Display + Manrope
   ============================================================ */

:root {
  /* Brand */
  --gold:        #B89B47;
  --gold-deep:   #9A8038;
  --gold-soft:   #CDB571;
  --gold-pale:   #EFE8D3;
  --ivory:       #F8F7F3;
  --ivory-2:     #F1EEE6;
  --ivory-3:     #EAE6DA;
  --black:       #111111;
  --ink:         #1A1916;
  --ink-2:       #2B2A26;
  --muted:       #6E6A60;
  --muted-2:     #8C887D;
  --line:        #E3DFD3;
  --line-dark:   rgba(255,255,255,0.12);

  /* Subtle accents */
  --green:       #0E6B3A;
  --blue:        #1F4E8C;
  --red:         #D32F2F;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1da851;

  /* Page surfaces (overridable by color-emphasis tweak) */
  --page-bg:     var(--ivory);
  --section-alt: #FFFFFF;
  --hero-bg:     #15140F;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Manrope', system-ui, -apple-system, sans-serif;

  /* Radii / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(17,17,17,.05), 0 2px 8px rgba(17,17,17,.05);
  --shadow-md: 0 6px 24px rgba(17,17,17,.07), 0 2px 6px rgba(17,17,17,.05);
  --shadow-lg: 0 24px 60px rgba(17,17,17,.12), 0 8px 18px rgba(17,17,17,.06);
  --shadow-gold: 0 14px 34px rgba(184,155,71,.28);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--page-bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--alt { background: var(--section-alt); }
.section--ivory2 { background: var(--ivory-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 18px;
}
.eyebrow::before { content:""; width: 26px; height: 1.5px; background: var(--gold); display:inline-block; }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(30px, 4.4vw, 50px); }
.section-sub { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-top: 18px; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: #1a1505; --bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15.5px;
  letter-spacing: 0.005em;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); box-shadow: 0 18px 40px rgba(184,155,71,.36); }
.btn--dark { --bg: var(--black); --fg: #fff; --bd: var(--black); }
.btn--dark:hover { background: #000; box-shadow: 0 16px 34px rgba(17,17,17,.28); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: rgba(17,17,17,.18); }
.btn--ghost:hover { --bd: var(--gold); color: var(--gold-deep); }
.btn--on-dark { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.32); }
.btn--on-dark:hover { --bd: var(--gold-soft); color: var(--gold-soft); }
.btn--wa { --bg: var(--whatsapp); --fg: #06351b; --bd: var(--whatsapp); }
.btn--wa:hover { background: var(--whatsapp-dk); border-color: var(--whatsapp-dk); color: #fff; box-shadow: 0 16px 34px rgba(37,211,102,.32); }
.btn--lg { padding: 18px 34px; font-size: 16.5px; }
.btn--block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row--center { justify-content: center; }

/* ---------- Pattern overlay helper ---------- */
.zellige {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("assets/zellige.svg");
  background-size: 200px;
  opacity: 0.05;
  z-index: 0;
}
.zellige--gold { opacity: 0.06; }
.zellige--faint { opacity: 0.035; }
.section > .wrap { position: relative; z-index: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,247,243,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(17,17,17,.05); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.logo { display: flex; align-items: center; gap: 12px; flex: none; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: 0.01em; color: var(--ink); }
.logo__tag { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  font-weight: 600; font-size: 15px; color: var(--ink-2); padding: 10px 14px; border-radius: 999px;
  position: relative; transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--gold-deep); background: rgba(184,155,71,.09); }

.header__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); padding: 8px 8px; }
.header__phone svg { width: 17px; height: 17px; color: var(--gold-deep); }
.header__phone:hover { color: var(--gold-deep); }

.burger { display: none; width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(17,17,17,.5); opacity: 0; transition: opacity .3s ease; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--ivory); padding: 24px; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg); }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__close { width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-size: 22px; line-height: 1; }
.drawer__panel a.dlink { font-family: var(--font-display); font-size: 22px; font-weight: 600; padding: 13px 8px; border-bottom: 1px solid var(--line); }
.drawer__panel a.dlink:hover { color: var(--gold-deep); }
.drawer__cta { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--hero-bg); color: #fff; overflow: hidden; }
.hero__bg-pattern { position: absolute; inset: 0; background-image: url("assets/zellige.svg"); background-size: 240px; opacity: 0.05; }
.hero__glow { position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(184,155,71,.22), transparent 65%); top: -180px; right: -160px; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 8vw, 104px); }

/* ---- LIGHT HERO (entête photo) ---- */
.hero--light { background: linear-gradient(115deg, var(--ivory) 0%, var(--ivory) 52%, var(--ivory-2) 100%); color: var(--ink); overflow: visible; }
.hero--light .hero__inner { grid-template-columns: 1.15fr 0.9fr; align-items: stretch; padding-block: clamp(40px, 5.5vw, 76px); }
.hero__pattern { position: absolute; top: 0; right: 0; bottom: 0; width: 58%; background-image: url("assets/zellige.svg"); background-size: 220px; opacity: 0.05; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%); mask-image: linear-gradient(90deg, transparent, #000 45%); }
.hero--light .hero__copy { display: flex; flex-direction: column; justify-content: center; }
.hero.hero--light h1 { color: var(--ink); font-size: clamp(34px, 4.6vw, 56px); line-height: 1.06; text-wrap: balance; }
.hero.hero--light h1 .accent { color: var(--gold-deep); font-style: normal; }
.hero.hero--light .hero__sub { color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); margin-top: 22px; max-width: 480px; }
.hero--light .hero__sub strong { color: var(--ink); font-weight: 700; }
.hero--light .hero__cta { margin-top: 32px; }

/* ringed-icon buttons */
.btn--icl { padding-left: 8px; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; font-weight: 800; gap: 12px; }
.btn__ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1.6px solid currentColor; flex: none; }
.btn__ic svg { width: 16px; height: 16px; }
.btn--gold .btn__ic { color: #1a1505; }
.btn--dark .btn__ic { color: #fff; }

/* hero trust trio */
.hero__trust3 { display: flex; flex-wrap: wrap; gap: 30px 40px; margin-top: 40px; }
.hero__trust3 li { display: flex; align-items: center; gap: 13px; }
.t3-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: grid; place-items: center; flex: none; }
.t3-ic svg { width: 22px; height: 22px; color: var(--gold-deep); }
.t3-tx { display: flex; flex-direction: column; line-height: 1.25; }
.t3-tx b { font-size: 15px; color: var(--ink); }
.t3-tx span { font-size: 13px; color: var(--muted); }

/* hero media + image slot */
.hero__media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 440px; }
.hero__arch { position: absolute; width: min(104%, 520px); aspect-ratio: 1 / 1.02; right: -2%; top: 50%; transform: translateY(-50%); border-radius: 50% 50% 46% 46%; background: radial-gradient(circle at 50% 38%, #fff 0%, var(--ivory-2) 58%, var(--ivory-3) 100%); box-shadow: inset 0 0 0 1.5px rgba(184,155,71,.28), inset 0 0 70px rgba(184,155,71,.10), var(--shadow-md); }
.hero__slot { position: relative; z-index: 2; width: 100%; height: clamp(340px, 34vw, 440px); background: rgba(255,255,255,.45); border: 1.5px dashed rgba(184,155,71,.45); border-radius: 20px; }
.hero__slot[data-filled], .hero__slot.is-filled { background: transparent; border: 0; }

/* ---- STAT BAND ---- */
.statband { background: var(--black); color: #fff; }
.statband__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband__item { position: relative; text-align: center; padding: 30px 20px; }
.statband__item + .statband__item::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: rgba(255,255,255,.13); }
.statband__ic { display: block; margin: 0 auto 12px; }
.statband__ic svg { width: 28px; height: 28px; color: var(--gold-soft); }
.statband b { display: block; font-family: var(--font-sans); font-weight: 800; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: #fff; }
.statband span { display: block; margin-top: 4px; font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(184,155,71,.14); border: 1px solid rgba(184,155,71,.35); color: var(--gold-soft); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 26px; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(14,107,58,.25); }
.hero h1 { color: #fff; font-size: clamp(36px, 5.2vw, 62px); line-height: 1.06; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero__sub { color: rgba(255,255,255,.78); font-size: clamp(16px, 1.7vw, 19.5px); line-height: 1.72; margin-top: 24px; max-width: 540px; }
.hero__cta { margin-top: 36px; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.hero__assure li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: 14.5px; font-weight: 600; }
.hero__assure svg { width: 18px; height: 18px; color: var(--gold-soft); flex: none; }

/* Hero visual variants */
.hero__visual { position: relative; min-height: 440px; }
.hero-variant { display: none; }
body[data-hero="map"]   .hero-variant--map   { display: block; }
body[data-hero="split"] .hero-variant--split { display: block; }
body[data-hero="photo"] .hero-variant--photo { display: block; }
/* default fallback */
body:not([data-hero]) .hero-variant--map { display: block; }

/* Map card */
.mapcard { position: relative; background: linear-gradient(165deg, #1d1b15, #14130e); border: 1px solid rgba(184,155,71,.28); border-radius: var(--r-xl); padding: 26px; box-shadow: var(--shadow-lg); }
.mapcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mapcard__title { font-family: var(--font-sans); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); }
.mapcard__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600; }
.mapcard__live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(184,155,71,.5);} 70%{ box-shadow: 0 0 0 9px rgba(184,155,71,0);} 100%{ box-shadow: 0 0 0 0 rgba(184,155,71,0);} }
.mapcard__svg { width: 100%; height: auto; border-radius: var(--r-lg); }
.route-dash { stroke-dasharray: 5 7; animation: dash 1.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -24; } }
.parcel-fly { animation: fly 6s ease-in-out infinite; }
@keyframes fly { 0%{ offset-distance: 0%; } 100%{ offset-distance: 100%; } }
.mapcard__foot { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; }
.mapcard__stat { text-align: center; flex: 1; }
.mapcard__stat b { display: block; font-family: var(--font-display); font-size: 22px; color: var(--gold-soft); }
.mapcard__stat span { font-size: 11.5px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }

/* Split panels variant */
.splitwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
.splitwrap .arc { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.split-photo { position: relative; min-height: 420px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-photo:last-child { margin-top: 48px; }

/* Photo-led variant */
.hero-photo { position: relative; min-height: 460px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo .route-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; }

/* Photo placeholder */
.ph {
  position: relative; background:
    repeating-linear-gradient(45deg, rgba(184,155,71,.07) 0 14px, rgba(184,155,71,.02) 14px 28px),
    linear-gradient(160deg, #ECE7DA, #DAD3C2);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted); overflow: hidden;
}
.ph--dark { background:
    repeating-linear-gradient(45deg, rgba(184,155,71,.10) 0 14px, rgba(184,155,71,.03) 14px 28px),
    linear-gradient(160deg, #232017, #16140d);
  color: rgba(255,255,255,.55);
}
.ph__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px; max-width: 80%; }
.ph__icon { width: 40px; height: 40px; opacity: .7; }
.ph__label { font-family: var(--font-sans); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
.ph__hint { font-size: 12.5px; line-height: 1.5; opacity: .82; }
.ph__tag { position: absolute; top: 14px; left: 14px; background: rgba(17,17,17,.7); color: var(--gold-soft); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px); }

/* ============================================================
   TRUST BAR (under hero)
   ============================================================ */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 26px; }
.trustbar__item { display: flex; align-items: center; gap: 14px; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--gold-deep); flex: none; }
.trustbar__item b { display: block; font-size: 15px; color: var(--ink); }
.trustbar__item span { font-size: 13px; color: var(--muted); }

/* ============================================================
   CARDS — generic
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__icon svg { width: 27px; height: 27px; color: var(--gold-deep); }
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* Why-choose check cards */
.feature {
  display: flex; gap: 16px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.feature__check { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex: none; }
.feature__check svg { width: 20px; height: 20px; color: #fff; }
.feature h3 { font-size: 18px; margin-bottom: 5px; }
.feature p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; position: relative; }
.step { position: relative; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 28px; }
.step__num { counter-increment: step; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); font-family: var(--font-display); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #fff; }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.step__line { position: absolute; top: 60px; right: -12px; width: 24px; color: var(--gold); display: flex; align-items: center; z-index: 2; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 260px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; align-items: flex-end;
  transition: transform .22s ease, box-shadow .28s ease;
}
.dest:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest__photo { position: absolute; inset: 0; }
.dest__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,.86) 6%, rgba(17,17,17,.28) 52%, rgba(17,17,17,.05) 100%); }
.dest__body { position: relative; z-index: 2; padding: 24px; color: #fff; width: 100%; }
.dest__city { font-family: var(--font-display); font-size: 27px; font-weight: 600; line-height: 1; }
.dest__agency { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.82); font-weight: 600; }
.dest__agency svg { width: 15px; height: 15px; color: var(--gold-soft); flex: none; }
.dest__pin { position: absolute; top: 16px; right: 16px; z-index: 4; background: rgba(184,155,71,.92); color: #1a1505; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; }
.dest__hint { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--gold-soft); letter-spacing: .02em; opacity: .9; transition: opacity .2s ease; }
.dest__hint svg { width: 15px; height: 15px; }
.dest:hover .dest__hint { opacity: 0; }

/* Agency reveal panel */
.dest__details {
  position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; gap: 4px; color: #fff;
  background: linear-gradient(to top, rgba(13,12,9,.96) 30%, rgba(13,12,9,.86) 70%, rgba(13,12,9,.55) 100%);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .26s ease, transform .26s ease, visibility .26s;
}
.dest:hover .dest__details, .dest.is-open .dest__details { opacity: 1; visibility: visible; transform: none; }
.dest__details .ag-name { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14.5px; color: var(--gold-soft); letter-spacing: .01em; margin-bottom: 8px; }
.dest__details .ag-name svg { width: 16px; height: 16px; flex: none; }
.dest__details .ag-row { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,.88); padding: 2px 0; }
.dest__details .ag-row svg { width: 14px; height: 14px; flex: none; margin-top: 3px; color: var(--gold-soft); }
.dest__details .ag-phones { display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.dest__details .ag-phones a { font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; transition: color .15s ease; }
.dest__details .ag-phones a:hover { color: var(--gold-soft); }
.dest__details .ag-city { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1; margin-bottom: 10px; }

/* Other cities */
.dest-other { margin-top: 40px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.dest-other__head h3 { font-size: 22px; margin-bottom: 8px; }
.dest-other__head p { color: var(--muted); font-size: 15px; max-width: 480px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.city-chips span { font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: var(--ivory-2); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; }
.dest-other__cta { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
@media (max-width: 760px) {
  .dest-other { grid-template-columns: 1fr; padding: 24px; }
  .dest-other__cta { min-width: 0; }
}

/* ============================================================
   TRUST / STATS / TESTIMONIALS
   ============================================================ */
.trust { background: var(--hero-bg); color: #fff; position: relative; overflow: hidden; }
.trust__pattern { position: absolute; inset: 0; background-image: url("assets/zellige.svg"); background-size: 240px; opacity: .05; }
.trust__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.trust h2 { color: #fff; font-size: clamp(28px, 3.8vw, 46px); }
.trust__text { color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; margin-top: 22px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.stat { border: 1px solid rgba(184,155,71,.3); border-radius: var(--r-md); padding: 22px 16px; text-align: center; background: rgba(184,155,71,.06); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); color: var(--gold-soft); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .03em; }

.testi-stack { display: grid; gap: 18px; }
.testi { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; }
.testi__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.testi__stars svg { width: 18px; height: 18px; }
.testi__quote { font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.5; color: #fff; }
.testi__who { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.testi__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display); flex: none; }
.testi__name { font-weight: 700; font-size: 15px; }
.testi__loc { font-size: 13px; color: rgba(255,255,255,.6); }

/* ============================================================
   HOURS + CONTACT
   ============================================================ */
.hours-contact { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.hours-card h3 { font-size: 24px; margin-bottom: 6px; }
.hours-list { margin-top: 22px; }
.hours-list li { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--ink); }
.hours-list .time { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-list .closed { color: var(--red); }
.hours-list .now-open { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .05em; background: rgba(14,107,58,.1); padding: 4px 10px; border-radius: 999px; }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 0; box-shadow: var(--shadow-sm); overflow: hidden; }
.contact-card__body { padding: 34px; }
.contact-rows { display: grid; gap: 18px; margin-bottom: 24px; }
.contact-row { display: flex; gap: 15px; align-items: flex-start; }
.contact-row__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-row__ic svg { width: 21px; height: 21px; color: var(--gold-deep); }
.contact-row__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 700; }
.contact-row__value { font-size: 17px; font-weight: 700; color: var(--ink); }
.phone-list { display: flex; flex-direction: column; gap: 4px; }
.phone-list a { font-size: 17px; font-weight: 700; }
.phone-list a:hover { color: var(--gold-deep); }
.map-embed { min-height: 220px; border-top: 1px solid var(--line); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 26px; height: 26px; flex: none; position: relative; transition: transform .25s ease; color: var(--gold-deep); }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item__a { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%); color: #1a1505; }
.finalcta__pattern { position: absolute; inset: 0; background-image: url("assets/zellige.svg"); background-size: 200px; opacity: .12; }
.finalcta__inner { position: relative; z-index: 2; text-align: center; max-width: 820px; margin-inline: auto; }
.finalcta h2 { font-size: clamp(32px, 5vw, 56px); color: #1a1505; }
.finalcta p { font-size: clamp(17px, 1.8vw, 20px); color: rgba(26,21,5,.82); margin-top: 20px; line-height: 1.65; }
.finalcta .cta-row { margin-top: 38px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,.7); padding-block: 64px 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__brand .logo__name { color: #fff; }
.footer__brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer h4 { font-family: var(--font-sans); color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 14.5px; transition: color .18s ease; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__contact li { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 13px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: border-color .2s ease, background .2s ease; }
.footer__social a:hover { border-color: var(--gold); background: rgba(184,155,71,.12); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__bar { border-top: 1px solid var(--line-dark); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

/* ============================================================
   STICKY WHATSAPP (desktop) + MOBILE BAR
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45); cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float:hover { transform: scale(1.07) translateY(-2px); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--whatsapp); animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple { 0%{ transform: scale(1); opacity: .6;} 100%{ transform: scale(1.6); opacity: 0;} }

.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(17,17,17,.1); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); }
.mobile-bar__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-bar .btn { padding: 13px; font-size: 15px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero--light .hero__inner { grid-template-columns: 1fr; }
  .hero--light .hero__copy { text-align: center; align-items: center; }
  .hero--light .hero__sub { max-width: 560px; }
  .hero__cta { justify-content: center; }
  .hero__trust3 { justify-content: center; }
  .hero__media { order: -1; min-height: 320px; }
  .hero__slot { height: clamp(280px, 52vw, 400px); }
  .hero__visual { min-height: 380px; }
  .grid--3, .dest-grid, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .trust__inner, .faq-grid, .hours-contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step__line { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .header__cta .btn--gold { display: none; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .statband__inner { grid-template-columns: repeat(2, 1fr); }
  .statband__item:nth-child(3)::before { display: none; }
  .statband__item:nth-child(odd)::before { display: none; }
  .hero__trust3 { gap: 18px 28px; }
  .grid--3, .grid--2, .dest-grid, .steps, .stats, .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .wa-float { display: none; }
  .mobile-bar { display: block; }
  body { padding-bottom: 76px; }
  .hero__assure { gap: 14px; }
  .section { padding-block: clamp(52px, 11vw, 80px); }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .statband__inner { grid-template-columns: 1fr; }
  .statband__item::before { display: none !important; }
  .statband__item { border-top: 1px solid rgba(255,255,255,.1); }
  .statband__item:first-child { border-top: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
