/* ==========================================================================
   Romance in Paris — Design system
   Editorial, cinematic, calm. Two hand-tuned palettes (light & dark).
   No build step: plain CSS custom properties, mobile-first.
   ========================================================================== */

/* ---- Fonts (served via <link> in the layout for preconnect control) ---- */

:root {
    /* Type */
    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Fluid type scale */
    --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.88rem);
    --step-0:  clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --step-1:  clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
    --step-2:  clamp(1.6rem, 1.3rem + 1.4vw, 2.4rem);
    --step-3:  clamp(2.1rem, 1.6rem + 2.6vw, 3.6rem);
    --step-4:  clamp(2.8rem, 1.9rem + 4.6vw, 5.8rem);

    /* Spacing / structure */
    --container: 1240px;
    --gutter: clamp(1.1rem, 0.6rem + 2vw, 2.4rem);
    --radius: 14px;
    --radius-lg: 22px;
    --header-h: 74px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 0.6s;
}

/* ---------------------------- LIGHT THEME ------------------------------- */
:root,
[data-theme="light"] {
    color-scheme: light;
    --bg:        #F4EFE7;   /* blanc cassé / pierre */
    --bg-2:      #EDE6DA;
    --surface:   #FBF8F3;
    --surface-2: #FFFFFF;
    --line:      #E0D6C7;
    --text:      #26221E;   /* gris anthracite chaud */
    --text-soft: #5C544B;
    --muted:     #8A8073;
    --accent:    #7C2B39;   /* bordeaux doux */
    --accent-2:  #C98B8B;   /* rose poudré */
    --gold:      #A9834E;   /* or discret */
    --on-accent: #FBF6EF;
    --shadow:    0 18px 50px -28px rgba(58, 42, 30, 0.45);
    --shadow-sm: 0 6px 22px -14px rgba(58, 42, 30, 0.4);
    --overlay:   linear-gradient(180deg, rgba(20,16,12,0) 35%, rgba(20,16,12,0.72) 100%);
    --glass:     rgba(251, 248, 243, 0.72);
}

/* ----------------------------- DARK THEME ------------------------------- */
[data-theme="dark"] {
    color-scheme: dark;
    --bg:        #14161B;   /* noir bleuté */
    --bg-2:      #171A20;
    --surface:   #1D2027;   /* cartes plus claires que le fond */
    --surface-2: #232730;
    --line:      #2E333D;
    --text:      #ECE5DB;   /* blanc cassé */
    --text-soft: #B6AEA2;
    --muted:     #8A8578;
    --accent:    #C98B8B;   /* rose doux en accent principal sombre */
    --accent-2:  #9A3D4C;   /* bordeaux */
    --gold:      #CBA96A;   /* champagne */
    --on-accent: #17140F;
    --shadow:    0 24px 60px -30px rgba(0, 0, 0, 0.75);
    --shadow-sm: 0 10px 26px -16px rgba(0, 0, 0, 0.7);
    --overlay:   linear-gradient(180deg, rgba(8,9,12,0) 30%, rgba(8,9,12,0.8) 100%);
    --glass:     rgba(21, 23, 29, 0.72);
}

/* ------------------------------- RESET --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-sans);
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
    overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 200;
    background: var(--surface); color: var(--text); padding: 10px 16px;
    border-radius: 8px; box-shadow: var(--shadow-sm); transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ------------------------------ LAYOUT --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2rem + 7vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }

.eyebrow {
    font-family: var(--font-sans);
    font-size: var(--step--1);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

.lede { font-size: var(--step-1); color: var(--text-soft); font-weight: 300; max-width: 44ch; }
.text-serif { font-family: var(--font-serif); }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lede, .center .eyebrow { margin-inline: auto; }
.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section__head.center { margin-inline: auto; }

/* ------------------------------ BUTTONS -------------------------------- */
.btn {
    --bg-btn: var(--accent);
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
    padding: 0.95em 1.8em; border-radius: 999px;
    font-family: var(--font-sans); font-size: var(--step--1); font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    background: var(--bg-btn); color: var(--on-accent);
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s, color 0.35s;
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold { --bg-btn: var(--gold); color: #1b1710; }
.btn--sm { padding: 0.7em 1.3em; }
.btn--block { width: 100%; }
.btn svg { width: 1.05em; height: 1.05em; }

.link-underline {
    position: relative; color: var(--text); font-weight: 500;
    display: inline-flex; gap: 0.4em; align-items: center;
}
.link-underline::after {
    content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline svg { width: 0.9em; transition: transform 0.4s var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }

/* ------------------------------ HEADER --------------------------------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
    display: flex; align-items: center;
    transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.is-scrolled {
    background: var(--glass);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 0 var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: inline-flex; align-items: center; z-index: 2; }
.brand svg { height: 34px; width: auto; }

.nav { display: none; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav a { font-size: var(--step--1); letter-spacing: 0.02em; color: var(--text-soft); transition: color 0.3s; position: relative; }
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
    background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.35s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 0.5rem; z-index: 2; }

/* Icon buttons (theme, lang, menu) */
.icon-btn {
    width: 42px; height: 42px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); color: var(--text); background: var(--glass);
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.icon-btn svg { width: 18px; height: 18px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }

/* Language dropdown */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 0.45em; padding: 0 0.85em; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: var(--glass); color: var(--text); font-size: var(--step--1); }
.lang__btn:hover { border-color: var(--gold); }
.lang__btn .chev { width: 12px; transition: transform 0.3s; }
.lang[aria-expanded="true"] .chev { transform: rotate(180deg); }
.lang__menu {
    position: absolute; right: 0; top: calc(100% + 10px); min-width: 190px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.lang[aria-expanded="true"] .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu a { display: flex; align-items: center; gap: 0.7em; padding: 0.6em 0.8em; border-radius: 9px; font-size: var(--step--1); color: var(--text-soft); }
.lang__menu a:hover, .lang__menu a.is-active { background: var(--bg-2); color: var(--text); }
.lang__menu a .flag { font-size: 1.1em; }

/* Mobile menu */
.menu-toggle { display: inline-flex; }
.mobile-nav {
    position: fixed; inset: 0; z-index: 90; background: var(--bg);
    padding: calc(var(--header-h) + 1.5rem) var(--gutter) 2rem;
    display: flex; flex-direction: column; gap: 0.4rem;
    transform: translateY(-100%); transition: transform 0.55s var(--ease);
    overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-family: var(--font-serif); font-size: var(--step-2); padding: 0.35em 0; color: var(--text); border-bottom: 1px solid var(--line); }
.mobile-nav .mobile-cta { margin-top: auto; display: grid; gap: 0.7rem; padding-top: 1.5rem; }

@media (min-width: 960px) {
    .nav { display: flex; }
    .menu-toggle { display: none; }
    .mobile-nav { display: none; }
}

/* ------------------------------- HERO ---------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: var(--overlay); }
.hero__scrim { position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(120% 90% at 20% 100%, rgba(10,8,6,0.55), transparent 60%); }
.hero__inner { position: relative; padding-bottom: clamp(3rem, 2rem + 5vw, 6rem); padding-top: calc(var(--header-h) + 2rem); color: #F6EFE6; width: 100%; }
.hero__title { font-size: var(--step-4); color: #FBF6EE; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { margin-top: 1.2rem; max-width: 46ch; color: rgba(246,239,230,0.86); font-size: var(--step-1); font-weight: 300; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero .btn--ghost { color: #F6EFE6; border-color: rgba(246,239,230,0.4); }
.hero .btn--ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero__meta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; }
.hero__meta .stat b { font-family: var(--font-serif); font-size: var(--step-2); display: block; line-height: 1; color: #FBF6EE; }
.hero__meta .stat span { font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246,239,230,0.7); }
.hero__scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(246,239,230,0.75); font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll .line { width: 1px; height: 42px; background: rgba(246,239,230,0.5); overflow: hidden; position: relative; }
.hero__scroll .line::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* ------------------------------ CARDS ---------------------------------- */
.grid { display: grid; gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.grid--pkg { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid--pkg { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--pkg { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .grid--pkg { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 680px) { .grid--2 { grid-template-columns: repeat(2,1fr); } .grid--3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3,1fr); } .grid--4 { grid-template-columns: repeat(4,1fr); } }

.card {
    position: relative; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }

/* Media card (experiences, locations) */
.media-card { display: block; aspect-ratio: 3 / 4; }
.media-card__img { position: absolute; inset: 0; }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.media-card:hover .media-card__img img { transform: scale(1.06); }
.media-card__img::after { content: ""; position: absolute; inset: 0; background: var(--overlay); }
.media-card__body { position: absolute; inset: auto 0 0 0; padding: 1.3rem; color: #F6EFE6; z-index: 2; }
.media-card__body h3 { color: #FBF6EE; font-size: var(--step-2); }
.media-card__body p { font-size: var(--step--1); color: rgba(246,239,230,0.82); margin-top: 0.2rem; }
.media-card__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: #F6EFE6; background: rgba(0,0,0,0.35); backdrop-filter: blur(6px); padding: 0.3em 0.8em; border-radius: 999px; }

/* Experience chip card (smaller) */
.chip-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; min-height: 160px; }
.chip-card .ic { width: 40px; height: 40px; color: var(--gold); }
.chip-card h3 { font-size: var(--step-1); }
.chip-card p { font-size: var(--step--1); color: var(--text-soft); }
.chip-card .go { margin-top: auto; color: var(--gold); font-size: var(--step--1); letter-spacing: 0.1em; text-transform: uppercase; }

/* --------------------------- PACKAGES ---------------------------------- */
/* Side-by-side comparison row: all fit on desktop, swipe on mobile */
.pkg-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: clamp(0.7rem, 0.4rem + 1vw, 1.1rem); overflow-x: auto; scroll-snap-type: x proximity; padding: 1.4rem 0.2rem; margin-inline: -0.2rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.pkg-row > * { scroll-snap-align: center; }
@media (min-width: 1180px) { .pkg-row { overflow: visible; grid-auto-columns: minmax(200px, 1fr); align-items: stretch; } }

.pkg { position: relative; padding: 1.7rem 1.4rem; display: flex; flex-direction: column; }
.pkg--featured { border-color: var(--gold); box-shadow: var(--shadow); background: color-mix(in srgb, var(--gold) 6%, var(--surface)); }
@media (min-width: 1180px) { .pkg--featured { transform: translateY(-10px); } }
.pkg__ribbon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1c1710; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4em 1.1em; border-radius: 0 0 10px 10px; }
.pkg__head { display: flex; align-items: center; gap: 0.6em; margin-top: 0.4rem; margin-bottom: 0.9rem; }
.pkg__ic { width: 30px; height: 30px; color: var(--gold); flex: none; }
.pkg__kind { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pkg__name { font-size: var(--step-2); line-height: 1; }
.pkg__tagline { font-size: var(--step--1); color: var(--text-soft); margin-top: 0.35rem; min-height: 2.6em; }
.pkg__price { font-family: var(--font-serif); font-size: var(--step-3); color: var(--text); margin: 0.9rem 0 0.1rem; line-height: 1; }
.pkg__price small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-sans); }
.pkg__meta { color: var(--text-soft); font-size: var(--step--1); padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.pkg__list { margin: 1.1rem 0 1.4rem; display: grid; gap: 0.55rem; }
.pkg__list li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.9rem; line-height: 1.4; }
.pkg__list li svg { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: 3px; }
.pkg .btn { margin-top: auto; }

/* --------------------------- STEP TIMELINE ----------------------------- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 1.6rem; }
.step__num { font-family: var(--font-serif); font-size: var(--step-2); color: var(--gold); }
.step h3 { font-size: var(--step-1); margin: 0.3rem 0; }
.step p { font-size: var(--step--1); color: var(--text-soft); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 2px; background: var(--gold); opacity: 0.6; }

/* ------------------------------ GALLERY -------------------------------- */
.masonry { columns: 2; column-gap: clamp(0.6rem, 0.4rem + 1vw, 1.1rem); }
@media (min-width: 720px) { .masonry { columns: 3; } }
@media (min-width: 1080px) { .masonry { columns: 4; } }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(0.6rem, 0.4rem + 1vw, 1.1rem); border-radius: var(--radius); overflow: hidden; position: relative; background: var(--bg-2); }
.tile img { width: 100%; transition: transform 0.8s var(--ease), filter 0.5s; }
.tile:hover img { transform: scale(1.05); }
.tile { cursor: zoom-in; }
.tile__cap { position: absolute; inset: auto 0 0 0; padding: 0.9rem; font-size: var(--step--1); color: #F6EFE6; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6)); opacity: 0; transition: opacity 0.4s; }
.tile:hover .tile__cap { opacity: 1; }

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter { padding: 0.5em 1.1em; border-radius: 999px; border: 1px solid var(--line); font-size: var(--step--1); color: var(--text-soft); transition: all 0.3s; }
.filter:hover { border-color: var(--gold); color: var(--text); }
.filter.is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,7,6,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s; padding: 3vw; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.lightbox__close, .lightbox__nav { position: absolute; color: #fff; width: 54px; height: 54px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); transition: background 0.3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.16); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 3vw; } .lightbox__nav.next { right: 3vw; }
.lightbox__cap { position: absolute; bottom: 3vw; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: var(--step--1); }

/* --------------------------- TESTIMONIALS ------------------------------ */
.quote-card { padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.quote-card .stars { color: var(--gold); letter-spacing: 0.15em; }
.quote-card blockquote { font-family: var(--font-serif); font-size: var(--step-1); line-height: 1.4; color: var(--text); }
.quote-card .who { display: flex; align-items: center; gap: 0.6em; margin-top: auto; font-size: var(--step--1); color: var(--text-soft); }
.quote-card .who .flag { font-size: 1.2em; }

/* ------------------------------ MARQUEE -------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.1rem; }
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-size: var(--step-2); color: var(--text-soft); display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--gold); font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------- SPLIT / CTA ------------------------------ */
.split { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-first .split__media { order: -1; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(2.5rem, 1.5rem + 5vw, 6rem) var(--gutter); text-align: center; color: #F6EFE6; }
.cta-band__bg { position: absolute; inset: 0; z-index: -1; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(12,9,7,0.6); }
.cta-band h2 { color: #FBF6EE; max-width: 20ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ------------------------------ FOOTER --------------------------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(3rem, 2rem + 4vw, 5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-sans); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: 0.6rem; }
.site-footer a { color: var(--text-soft); transition: color 0.3s; }
.site-footer a:hover { color: var(--gold); }
.footer-brand svg { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-soft); max-width: 34ch; font-size: var(--step--1); }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); color: var(--muted); }

/* --------------------------- FLOATING WHATSAPP ------------------------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: inline-flex; align-items: center; gap: 0.6em; padding: 0.8em 1.2em; border-radius: 999px; background: #25D366; color: #08361c; font-weight: 600; font-size: var(--step--1); box-shadow: 0 14px 34px -14px rgba(37,211,102,0.7); transition: transform 0.3s, box-shadow 0.3s; }
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .label { display: none; }
@media (min-width: 560px) { .wa-float .label { display: inline; } }

/* Mobile sticky booking bar */
.book-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom)); background: var(--glass); backdrop-filter: blur(14px); border-top: 1px solid var(--line); display: flex; gap: 0.7rem; align-items: center; justify-content: space-between; transform: translateY(120%); transition: transform 0.4s var(--ease); }
.book-bar.is-visible { transform: translateY(0); }
.book-bar .price { font-family: var(--font-serif); font-size: var(--step-1); }
.book-bar .price span { display: block; font-family: var(--font-sans); font-size: 0.62em; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
@media (min-width: 960px) { .book-bar { display: none; } .wa-float { bottom: 22px; } }
@media (max-width: 959px) { .wa-float { bottom: 74px; } }

/* ------------------------- SCROLL REVEAL ------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }

.no-motion [data-reveal], .no-motion [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* ------------------------------ MISC ----------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { font-size: var(--step--1); padding: 0.35em 0.9em; border-radius: 999px; border: 1px solid var(--line); color: var(--text-soft); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem,4vw,4rem); }
.page-hero { padding-top: calc(var(--header-h) + clamp(2.5rem,5vw,5rem)); padding-bottom: clamp(2rem,4vw,4rem); }
.badge-inline { display: inline-flex; align-items: center; gap: 0.4em; font-size: var(--step--1); color: var(--text-soft); }
.badge-inline svg { width: 16px; color: var(--gold); }
.prose p { margin-bottom: 1rem; color: var(--text-soft); max-width: 66ch; }
.prose p:first-of-type::first-letter { font-family: var(--font-serif); font-size: 3.2em; line-height: 0.8; float: left; padding: 0.05em 0.1em 0 0; color: var(--accent); }

/* ------------------------------ LOGO ----------------------------------- */
.brand-lockup { display: inline-flex; align-items: center; gap: 0.6em; color: var(--text); line-height: 1; }
.brand-emblem { height: 2.55em; width: auto; color: var(--text); }
.brand-word { display: inline-flex; flex-direction: column; justify-content: center; }
.brand-word__top { font-family: var(--font-serif); font-size: 1.28em; font-weight: 600; letter-spacing: 0.02em; line-height: 0.92; color: var(--text); }
.brand-word__bot { font-family: var(--font-serif); font-size: 0.86em; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 0.12em; }
.brand-word__bot em { font-style: italic; text-transform: none; letter-spacing: 0.02em; opacity: 0.85; }
.brand-lockup--compact { gap: 0; }
/* Hero / footer use a larger, light-on-dark rendering */
.brand-lockup--ondark, .hero .brand-lockup { color: #F6EFE6; }
.brand-lockup--ondark .brand-emblem, .brand-lockup--ondark .brand-word__top { color: #F6EFE6; }

/* Header book button only on desktop */
.hide-mobile-cta { display: none; }
@media (min-width: 960px) { .hide-mobile-cta { display: inline-flex; } }
a.chip-card { text-decoration: none; }

/* Flag icons (SVG images — reliable across all platforms, unlike emoji) */
.flag-img { width: 21px; height: 15px; border-radius: 3px; object-fit: cover; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); flex: none; }
.lang__btn .flag-img, .lang__menu .flag-img { width: 20px; height: 14px; }
.quote-card .who .flag-img { width: 24px; height: 17px; }

/* Location fact list */
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin: 1.5rem 0; }
.fact { border-top: 1px solid var(--line); padding-top: 0.7rem; }
.fact dt { font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.2rem; }
.fact dd { font-size: var(--step-0); color: var(--text); }
@media (min-width: 680px) { .facts { grid-template-columns: repeat(3, 1fr); } }

/* Accordion (FAQ) */
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; cursor: pointer; font-family: var(--font-serif); font-size: var(--step-1); list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .plus { flex: none; width: 26px; height: 26px; position: relative; }
.acc summary .plus::before, .acc summary .plus::after { content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: var(--gold); transition: transform 0.3s; }
.acc summary .plus::after { transform: rotate(90deg); }
.acc[open] summary .plus::after { transform: rotate(0); }
.acc__body { padding: 0 0 1.4rem; color: var(--text-soft); max-width: 70ch; }

/* Booking layout */
.booking-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 940px) { .booking-grid { grid-template-columns: 1.7fr 1fr; } }
.booking-summary { position: sticky; top: calc(var(--header-h) + 1rem); }
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.7rem; }
.option { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; cursor: pointer; transition: border-color 0.3s, background 0.3s; background: var(--surface); }
.option:hover { border-color: var(--gold); }
.option input { position: absolute; opacity: 0; }
.option.is-selected, .option:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.option h4 { font-family: var(--font-sans); font-size: var(--step-0); margin-bottom: 0.2rem; }
.option small { color: var(--muted); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: var(--step--1); margin-bottom: 0.4rem; color: var(--text-soft); }
.field input, .field textarea, .field select { width: 100%; padding: 0.8em 1em; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--text); font: inherit; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.summary-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--line); font-size: var(--step-0); }
.summary-row.total { border-bottom: 0; font-family: var(--font-serif); font-size: var(--step-1); padding-top: 1rem; }
.notice { border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.2rem 1.4rem; background: var(--surface); color: var(--text-soft); }
