/* ═══════════════════════════════════════════
   Shared styles — Jasmin & Levendula Apartman
   Edit here; both pages pick up the change.
═══════════════════════════════════════════ */

:root {
    --navy:       #0D1B2A;
    --deep-navy:  #07111C;
    --sand:       #C9A97A;
    --terracotta: #B5674A;
    --cream:      #F4EDE3;
    --muted:      rgba(244,237,227,0.82);
    --border:     rgba(201,169,122,0.18);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--navy);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

body::after {
    content:'';
    position:fixed; inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity:.025; pointer-events:none; z-index:9999;
}

/* ═══ NAV ═══ */
nav {
    position:fixed; top:0; left:0; right:0; z-index:200;
    padding:28px 64px;
    display:flex; justify-content:space-between; align-items:center;
    transition:padding .5s ease, background .5s ease, border-color .5s ease;
    border-bottom:1px solid transparent;
}
nav.scrolled {
    padding:16px 64px;
    background:rgba(7,17,28,0.92);
    backdrop-filter:blur(24px);
    border-bottom-color:var(--border);
}
.nav-logo {
    font-family:'Cormorant Garamond',serif;
    font-size:20px; font-weight:500; letter-spacing:.12em;
    color:var(--cream); text-decoration:none;
}
.nav-logo span { color:var(--sand); }
.nav-links { display:flex; gap:44px; list-style:none; }
.nav-links a {
    color:rgba(244,237,227,.88); text-decoration:none;
    font-size:11px; font-weight:400; letter-spacing:.22em;
    text-transform:uppercase; transition:color .3s;
}
.nav-links a:hover { color:var(--sand); }
.nav-back {
    border:1px solid rgba(201,169,122,.4); color:rgba(244,237,227,.6);
    padding:10px 24px; font-family:'Jost',sans-serif;
    font-size:11px; font-weight:400; letter-spacing:.18em;
    text-transform:uppercase; text-decoration:none;
    transition:all .3s; display:inline-flex; align-items:center; gap:8px;
}
.nav-back:hover { border-color:var(--sand); color:var(--sand); }
.nav-cta {
    border:1px solid var(--sand); color:var(--sand);
    padding:10px 30px; font-family:'Jost',sans-serif;
    font-size:11px; font-weight:400; letter-spacing:.22em;
    text-transform:uppercase; text-decoration:none;
    transition:background .3s, color .3s;
}
.nav-cta:hover { background:var(--sand); color:var(--navy); }

/* ═══ HERO ═══ */
.hero {
    position:relative; height:100vh; min-height:720px;
    overflow:hidden; display:flex; align-items:flex-end;
}
.hero-bg {
    position:absolute; inset:0;
    background:url('assets/20221011_135544-e1668767380639.jpg') center/cover no-repeat;
    transform:scale(1.12); will-change:transform;
}
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to bottom,rgba(7,17,28,.25) 0%,rgba(7,17,28,.15) 30%,rgba(7,17,28,.82) 65%,rgba(7,17,28,.97) 85%,rgba(7,17,28,1) 100%);
}
.hero-content { position:relative; z-index:2; padding:0 64px 88px; max-width:900px; }
.hero-eyebrow {
    display:inline-flex; align-items:center; gap:14px;
    font-size:11px; font-weight:400; letter-spacing:.32em;
    text-transform:uppercase; color:var(--sand); margin-bottom:22px;
    opacity:0; animation:fadeUp .8s ease .3s forwards;
}
.hero-eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--sand); }
.hero-title {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(68px,9.5vw,128px);
    font-weight:300; line-height:.88; letter-spacing:-.025em; margin-bottom:28px;
    opacity:0; animation:fadeUp .9s ease .45s forwards;
}
.hero-title em { font-style:italic; color:var(--sand); }
.hero-sub {
    font-size:15px; font-weight:300; line-height:1.8;
    color:rgba(244,237,227,.92); max-width:520px; margin-bottom:32px;
    opacity:0; animation:fadeUp .8s ease .65s forwards;
}
.hero-pills {
    display:flex; flex-wrap:wrap; gap:12px;
    opacity:0; animation:fadeUp .8s ease .8s forwards;
}
.pill {
    border:1px solid rgba(201,169,122,.5); padding:10px 22px; font-size:11px;
    letter-spacing:.18em; text-transform:uppercase; color:rgba(244,237,227,.92); transition:all .3s;
}
.pill:hover { border-color:var(--sand); color:var(--sand); }
/* Hero call to action (UI review §27): availability first, enquiry second —
   the same order as the sticky mobile bar, so the two never disagree. */
.hero-cta {
    display:flex; flex-wrap:wrap; gap:14px; margin:0 0 32px;
    opacity:0; animation:fadeUp .8s ease .8s forwards;
}
.hero-cta-btn {
    display:inline-flex; align-items:center; justify-content:center;
    min-height:48px; padding:0 32px;
    background:var(--sand); color:var(--navy);
    font-size:11px; letter-spacing:.18em; text-transform:uppercase; font-weight:500;
    border:1px solid var(--sand); transition:all .3s;
}
.hero-cta-btn:hover { background:transparent; color:var(--sand); }
.hero-cta-btn--ghost { background:transparent; color:rgba(244,237,227,.92); border-color:rgba(201,169,122,.5); }
.hero-cta-btn--ghost:hover { border-color:var(--sand); color:var(--sand); }

.hero-scroll {
    position:absolute; right:64px; bottom:88px;
    display:flex; flex-direction:column; align-items:center; gap:14px;
    opacity:0; animation:fadeIn 1s ease 1.1s forwards;
}
.hero-scroll-text {
    font-size:9px; letter-spacing:.28em; text-transform:uppercase;
    color:rgba(244,237,227,.45); writing-mode:vertical-rl;
}
.scroll-line {
    width:1px; height:64px;
    background:linear-gradient(to bottom, var(--sand), transparent);
    animation:lineAnim 2.2s ease infinite;
}
@keyframes lineAnim {
    0%   { transform:scaleY(0); transform-origin:top; }
    50%  { transform:scaleY(1); transform-origin:top; }
    51%  { transform:scaleY(1); transform-origin:bottom; }
    100% { transform:scaleY(0); transform-origin:bottom; }
}
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }

/* ═══ SHARED ATOMS ═══ */
.s-label { font-size:10px; letter-spacing:.36em; text-transform:uppercase; color:var(--sand); margin-bottom:16px; display:block; }
.s-title { font-family:'Cormorant Garamond',serif; font-size:clamp(40px,5.2vw,72px); font-weight:300; line-height:.95; letter-spacing:-.02em; }
.s-title em { font-style:italic; color:var(--sand); }
.reveal { opacity:0; transform:translateY(36px); transition:opacity .9s ease, transform .9s ease; }
.reveal.in { opacity:1; transform:translateY(0); }

/* ═══ ABOUT ═══ */
.about { padding:130px 64px; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:center; }
.about-body p { font-size:15.5px; line-height:1.95; color:var(--muted); margin-top:30px; }
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-top:52px; }
.stat {
    background:rgba(201,169,122,.05); border:1px solid var(--border); padding:30px 26px;
    transition:background .4s, border-color .4s;
}
.stat:hover { background:rgba(201,169,122,.1); border-color:rgba(201,169,122,.45); }
.stat-n { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:300; color:var(--sand); line-height:1; }
.stat-l { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:rgba(244,237,227,.65); margin-top:6px; }
.about-visual { position:relative; }
/* The decorative corner frame hangs 28px outside this box; clip it so it can
   never widen the page on a narrow screen (it did, by 12px, at 390px). */
@media (max-width: 700px) { .about-visual { overflow: clip; } }
.about-visual img { width:100%; height:620px; object-fit:cover; display:block; }
/* Decorative frame, offset outside its box on purpose. `overflow:clip` on the
   parent keeps that overhang from widening the PAGE on a narrow phone (it stuck
   12px past the viewport at 390px). */
.about-corner { position:absolute; bottom:-28px; right:-28px; width:190px; height:190px; border:1.5px solid var(--sand); opacity:.28; pointer-events:none; }
.about-badge {
    position:absolute; top:32px; right:-46px; background:var(--terracotta);
    padding:18px 20px; text-align:center; font-family:'Cormorant Garamond',serif;
    font-size:13px; line-height:1.6; letter-spacing:.08em;
}

/* ═══ GALLERY ═══ */
.gallery-wrap { padding-bottom:130px; }
.gallery-head { padding:0 64px 64px; }
.gallery-track { display:flex; gap:4px; overflow-x:auto; padding:0 64px; scrollbar-width:none; cursor:grab; user-select:none; }
.gallery-track::-webkit-scrollbar { display:none; }
.gallery-track.dragging { cursor:grabbing; }
.gitem { flex-shrink:0; overflow:hidden; position:relative; cursor:pointer; }
.gitem:nth-child(1) { width:500px; height:660px; }
.gitem:nth-child(2) { width:370px; height:660px; }
.gitem:nth-child(3) { width:430px; height:660px; }
.gitem:nth-child(4) { width:500px; height:660px; }
.gitem img { width:100%; height:100%; object-fit:cover; transition:transform .85s cubic-bezier(.25,.46,.45,.94); }
.gitem:hover img { transform:scale(1.06); }
.gitem-over { position:absolute; inset:0; background:rgba(7,17,28,0); transition:background .4s; display:flex; align-items:flex-end; padding:28px; }
.gitem:hover .gitem-over { background:rgba(7,17,28,.28); }
.gitem-num { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:300; color:rgba(244,237,227,0); transition:color .4s; }
.gitem:hover .gitem-num { color:rgba(244,237,227,.38); }

/* ═══ VIDEO ═══ */
.video-section { background:var(--deep-navy); padding:130px 64px; }
.video-head { max-width:760px; margin:0 auto 60px; text-align:center; }
.video-head .s-label { margin-bottom:18px; }
.video-frame { position:relative; max-width:1080px; margin:0 auto; }
.video-frame video {
    width:100%; display:block; aspect-ratio:16/9;
    object-fit:cover; background:#000; border:1px solid var(--border);
}
.video-corner {
    position:absolute; bottom:-28px; right:-28px;
    width:190px; height:190px; border:1.5px solid var(--sand);
    opacity:.28; pointer-events:none;
}
.video-play {
    position:absolute; inset:0; margin:auto;
    width:96px; height:96px; border-radius:50%;
    background:rgba(7,17,28,.42); border:1px solid var(--sand);
    color:var(--cream); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    backdrop-filter:blur(6px); transition:opacity .4s, background .4s, color .4s, transform .4s;
}
.video-play svg { width:30px; height:30px; margin-left:5px; }
.video-play:hover { background:var(--sand); color:var(--navy); transform:scale(1.06); }
.video-play.hidden { opacity:0; pointer-events:none; transform:scale(.8); }

/* ═══ AMENITIES ═══ */
.amenities { background:var(--deep-navy); padding:130px 64px; }
.amenities-head { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:80px; }
.amenities-note { font-size:12px; color:rgba(244,237,227,.65); letter-spacing:.08em; max-width:240px; text-align:right; line-height:1.7; }
.amen-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.acard {
    background:rgba(201,169,122,.04); border:1px solid var(--border); padding:36px 28px;
    opacity:0; transform:translateY(18px);
    transition:opacity .5s ease, transform .5s ease, background .3s, border-color .3s;
}
.acard.in { opacity:1; transform:translateY(0); }
.acard:hover { background:rgba(201,169,122,.1); border-color:rgba(201,169,122,.45); }
.acard svg { width:40px; height:40px; color:var(--sand); margin-bottom:20px; display:block; }
.acard-name { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:400; margin-bottom:8px; }
.acard-desc { font-size:12px; color:rgba(244,237,227,.68); letter-spacing:.04em; line-height:1.65; }

/* ═══ CHECK-IN / RULES ═══ */
.stay-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.stay-pane { padding:90px 64px; background:var(--deep-navy); }
.stay-pane.warm { background:rgba(181,103,74,.1); border:1px solid rgba(181,103,74,.25); }
.times { display:grid; grid-template-columns:1fr 1fr; gap:36px; margin-top:44px; }
.time-box { border-top:1px solid var(--border); padding-top:22px; }
.time-tag { font-size:10px; letter-spacing:.24em; text-transform:uppercase; color:var(--sand); margin-bottom:10px; }
.time-val { font-family:'Cormorant Garamond',serif; font-size:44px; font-weight:300; }
.time-sub { font-size:11px; color:rgba(244,237,227,.6); margin-top:4px; }
.rules { display:flex; flex-direction:column; gap:18px; margin-top:44px; }
.rule { display:flex; align-items:flex-start; gap:16px; font-size:14px; color:rgba(244,237,227,.88); line-height:1.6; }
.rule-dot { width:5px; height:5px; border-radius:50%; background:var(--sand); flex-shrink:0; margin-top:7px; }

/* ═══ LOCATION ═══ */
.location { background:var(--deep-navy); padding:130px 64px; }
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:110px; align-items:center; }
.loc-addr { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:300; line-height:1.45; color:var(--cream); margin-top:36px; }
.distances { margin-top:36px; }
.dist-header {
    display:flex; align-items:center; gap:8px;
    font-size:10px; letter-spacing:.28em; text-transform:uppercase;
    color:var(--sand); padding-bottom:14px;
    border-bottom:1px solid var(--border); margin-bottom:4px;
}
.dist-row { display:flex; justify-content:space-between; align-items:center; padding:15px 0; border-bottom:1px solid var(--border); }
.dist-name { font-size:13px; color:rgba(244,237,227,.88); }
.dist-time { font-family:'Cormorant Garamond',serif; font-size:18px; color:var(--sand); }
.map-frame { height:520px; overflow:hidden; position:relative; }
.map-frame iframe { width:100%; height:100%; border:none; filter:brightness(0.85) contrast(1.05) saturate(1.1); display:block; }
.map-label {
    position:absolute; bottom:0; left:0; right:0;
    background:linear-gradient(transparent, rgba(7,17,28,.9));
    padding:28px 28px 20px; font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:rgba(244,237,227,.5);
}

/* ═══ ROUTE BUTTON ═══ */
.route-btn {
    display:inline-flex; align-items:center; gap:10px;
    border:1px solid var(--sand); color:var(--sand);
    padding:12px 24px; font-family:'Jost',sans-serif;
    font-size:11px; font-weight:400; letter-spacing:.2em;
    text-transform:uppercase; text-decoration:none;
    transition:background .3s, color .3s;
}
.route-btn:hover { background:var(--sand); color:var(--navy); }

/* ═══ CONTACT ═══ */
.booking {
    padding:130px 64px;
    background:radial-gradient(ellipse at 60% 0%, rgba(181,103,74,.12) 0%, transparent 65%), var(--navy);
    text-align:center;
}
.booking-inner { max-width:700px; margin:0 auto; }
.booking-desc { font-size:15.5px; line-height:1.85; color:var(--muted); margin-top:28px; margin-bottom:56px; }
.contact-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:52px; }
.contact-btn {
    display:inline-flex; align-items:center; gap:14px;
    padding:22px 48px; font-family:'Jost',sans-serif;
    font-size:11px; font-weight:400; letter-spacing:.22em;
    text-transform:uppercase; text-decoration:none;
    transition:all .3s; white-space:nowrap;
}
.contact-btn svg { width:20px; height:20px; flex-shrink:0; }
.contact-btn.wa { background:#25D366; color:#0D1B2A; border:1px solid #25D366; }
.contact-btn.wa:hover { background:transparent; color:#25D366; }
.contact-btn.email { background:transparent; color:var(--sand); border:1px solid var(--sand); }
.contact-btn.email:hover { background:var(--sand); color:var(--navy); }
.contact-info {
    display:flex; justify-content:center; gap:48px; flex-wrap:wrap;
    padding-top:40px; border-top:1px solid var(--border);
}
.contact-info-item { display:flex; flex-direction:column; gap:6px; align-items:center; }
.contact-info-label { font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:var(--sand); }
.contact-info-val {
    font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:300;
    color:var(--cream); text-decoration:none; transition:color .3s;
}
.contact-info-val:hover { color:var(--sand); }

/* ═══ FOOTER ═══ */
footer {
    background:var(--deep-navy); border-top:1px solid var(--border); padding:52px 64px;
    display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:32px;
}
.f-logo { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:400; }
.f-logo span { color:var(--sand); }
.f-mid { text-align:center; font-size:11px; color:rgba(244,237,227,.55); letter-spacing:.1em; line-height:1.8; }
.f-right { display:flex; gap:24px; justify-content:flex-end; }
.f-right a { color:rgba(244,237,227,.6); text-decoration:none; font-size:11px; letter-spacing:.12em; text-transform:uppercase; transition:color .3s; }
.f-right a:hover { color:var(--sand); }

/* ═══ LANG SWITCHER ═══ */
#lang-sw { display:flex; align-items:center; }
.lang-btn {
    background:none; border:none; cursor:pointer;
    font-family:'Jost',sans-serif; font-size:10px; font-weight:400;
    letter-spacing:.2em; text-transform:uppercase;
    color:rgba(244,237,227,.38); padding:6px 8px;
    transition:color .25s; line-height:1;
}
.lang-btn:hover { color:rgba(244,237,227,.75); }
.lang-btn.active { color:var(--sand); }
.lang-btn + .lang-btn { border-left:1px solid rgba(201,169,122,.18); }

/* ═══ LIGHTBOX ═══ */
.lb { position:fixed; inset:0; background:rgba(7,17,28,.97); z-index:500; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .4s; }
.lb.open { opacity:1; pointer-events:all; }
.lb img { max-width:90vw; max-height:88vh; object-fit:contain; box-shadow:0 40px 120px rgba(0,0,0,.6); }
.lb-close { position:absolute; top:28px; right:36px; background:none; border:none; color:var(--cream); font-size:36px; cursor:pointer; opacity:.5; font-family:'Jost',sans-serif; font-weight:200; transition:opacity .25s; line-height:1; }
.lb-close:hover { opacity:1; }
.lb-num { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); font-family:'Cormorant Garamond',serif; font-size:13px; letter-spacing:.2em; color:rgba(244,237,227,.4); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

/* Tablet (≤1000px) */
@media(max-width:1000px) {
    nav, nav.scrolled { padding:18px 24px; }
    .nav-links { display:none; }
    .hero-content { padding:0 24px 60px; }
    .hero-scroll { display:none; }
    .about { padding:80px 24px; }
    .gallery-wrap { padding-bottom:80px; }
    .gallery-head { padding:0 24px 48px; }
    .gallery-track { padding:0 24px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
    .video-section { padding:80px 24px; }
    .video-head { margin-bottom:40px; }
    .video-corner { width:120px; height:120px; bottom:-16px; right:-16px; }
    .amenities { padding:80px 24px; }
    .location { padding:80px 24px; }
    .booking { padding:80px 24px; }
    .about-grid, .location-grid { grid-template-columns:1fr; gap:48px; }
    .about-visual img { height:420px; }
    .about-badge { right:16px; top:20px; padding:12px 14px; font-size:11px; }
    .gitem { width:75vw !important; height:320px !important; scroll-snap-align:start; }
    .amen-grid { grid-template-columns:repeat(2,1fr); }
    .amenities-head { flex-direction:column; align-items:flex-start; gap:20px; }
    .amenities-note { text-align:left; }
    .stay-grid { grid-template-columns:1fr; }
    .stay-pane { padding:56px 24px; }
    .map-frame { height:300px; }
    .contact-btns { flex-direction:column; align-items:center; }
    .contact-btn { width:100%; max-width:380px; justify-content:center; }
    .contact-info { flex-wrap:wrap; gap:24px; }
    footer { grid-template-columns:1fr; text-align:center; padding:40px 24px; }
    .f-right { justify-content:center; }
}

/* Phone (≤480px) */
@media(max-width:480px) {
    nav, nav.scrolled { padding:12px 16px; }
    .nav-back { font-size:10px; padding:7px 12px; letter-spacing:.1em; gap:6px; }
    .nav-cta { padding:7px 14px; font-size:10px; letter-spacing:.12em; }
    .hero-content { padding:0 16px 44px; }
    .hero-title { font-size:clamp(40px,12vw,64px) !important; }
    .hero-sub { font-size:13px; margin-bottom:28px; }
    .hero-pills { gap:8px; }
    .pill { padding:6px 14px; font-size:10px; letter-spacing:.1em; }
    .s-title { font-size:clamp(30px,9vw,48px) !important; }
    .about { padding:64px 16px; }
    .about-grid { gap:32px; }
    /* Very narrow (a folded phone's cover screen): the two stat columns have a
       min-content floor that pushed the page ~25px wider than the viewport. One
       column per stat, and let every grid child shrink. */
    .about-stats { grid-template-columns:1fr; gap:1px; }
    .about-grid > *, .about-stats > * { min-width:0; }
    .about-visual img { height:260px; }
    .about-stats { margin-top:28px; }
    .stat-n { font-size:40px; }
    .gallery-wrap { padding-bottom:56px; }
    .gallery-head { padding:0 16px 32px; }
    .gallery-track { padding:0 16px; }
    .gitem { width:82vw !important; height:240px !important; }
    .video-section { padding:64px 16px; }
    .video-corner { display:none; }
    .video-play { width:68px; height:68px; }
    .video-play svg { width:24px; height:24px; }
    .amenities { padding:64px 16px; }
    .amen-grid { grid-template-columns:1fr; }
    .acard { padding:20px 16px; }
    .amenities-head { margin-bottom:40px; }
    .stay-pane { padding:44px 16px; }
    .times { gap:16px; }
    .time-val { font-size:36px; }
    .location { padding:64px 16px; }
    .location-grid { gap:36px; }
    .loc-addr { font-size:22px; margin-top:20px; }
    .map-frame { height:260px; }
    .booking { padding:64px 16px; }
    .booking-desc { font-size:14px; margin-bottom:36px; }
    .contact-btn { padding:16px 28px; }
    .contact-info { gap:20px; }
    .contact-info-val { font-size:18px; }
    .lb-close { top:10px; right:10px; min-width:44px; min-height:44px; display:flex; align-items:center; justify-content:center; font-size:28px; }
    footer { padding:28px 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Quick facts + sticky mobile CTA (UI review §4.2)
   A long marketing page has to answer "how many people, how big, how
   far is the sea, is it free" before it asks anyone to keep scrolling —
   and it must stay actionable all the way down on a phone.
═══════════════════════════════════════════════════════════════════ */
.quickfacts {
    position: relative;
    z-index: 2;
    padding: 0 clamp(20px, 5vw, 64px);
    margin-top: -42px;
}
.qf-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(18px, 3vw, 44px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px clamp(20px, 3vw, 34px);
    background: var(--cream);
    color: var(--navy);
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}
.qf { display: flex; flex-direction: column; gap: 2px; min-width: 6.5rem; }
.qf svg { width: 20px; height: 20px; color: var(--terracotta); margin-bottom: 4px; }
.qf-val { font-size: 17px; font-weight: 500; letter-spacing: .01em; }
.qf-lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; opacity: .62; }
.qf-cta {
    margin-left: auto;
    padding: 13px 26px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: .04em;
    text-decoration: none;
    white-space: nowrap;
}
.qf-cta:hover { filter: brightness(1.08); }
@media (max-width: 820px) {
    .quickfacts { margin-top: -26px; }
    .qf-inner { gap: 18px 26px; }
    .qf-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* Availability legend — a calendar that colours days must say what the
   colours mean. */
.cal-key { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 18px; }
.cal-key-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; opacity: .8; }
.cal-key-dot { width: 13px; height: 13px; border-radius: 4px; border: 1px solid currentColor; }
.cal-key-dot--free { background: transparent; }
.cal-key-dot--busy { background: var(--terracotta); border-color: var(--terracotta); }
.cal-key-dot--today { background: transparent; box-shadow: inset 0 0 0 2px currentColor; }

/* Sticky action bar (phones only). */
.mobile-cta { display: none; }
@media (max-width: 820px) {
    .mobile-cta {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 60;
        display: flex;
        gap: 10px;
        padding: 10px 14px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        background: color-mix(in srgb, var(--navy) 92%, transparent);
        backdrop-filter: blur(8px);
        border-top: 1px solid rgba(255, 255, 255, .14);
    }
    .mobile-cta-btn {
        flex: 1;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--terracotta);
        color: #fff;
        font-size: 14px;
        letter-spacing: .03em;
        text-decoration: none;
    }
    .mobile-cta-btn--ghost {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .4);
    }
    /* Keep the footer clear of the bar. */
    body { padding-bottom: 72px; }
}
