/* =============================================================
   Elite Deluxe Villa — 2026 Theme
   Modern luxury · serif headings + humanist sans body
   Palette: warm gold + cream + deep ink
   ============================================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
    /* Colors — preserved gold palette */
    --gold-50:  #fbf7f1;
    --gold-100: #f3e9d8;
    --gold-200: #e6d3b0;
    --gold-300: #d6bb86;
    --gold-400: #c9aa6c;
    --gold-500: #bfa17e;   /* primary */
    --gold-600: #a88759;
    --gold-700: #8a6d46;
    --gold-800: #6b5537;
    --gold-900: #4a3b25;

    --cream-50:  #fefcf8;
    --cream-100: #fbf7ee;
    --cream-200: #f5efe1;

    --ink-900: #1a1612;
    --ink-800: #2b2520;
    --ink-700: #423b35;
    --ink-600: #5a524b;
    --ink-500: #7a716a;
    --ink-400: #a09890;
    --ink-300: #c8c2bc;
    --ink-200: #e4e0dc;
    --ink-100: #f1eeeb;
    --ink-50:  #faf9f7;

    --white: #ffffff;

    /* Semantic */
    --bg:        var(--cream-50);
    --bg-alt:    var(--cream-100);
    --bg-dark:   var(--ink-900);
    --surface:   var(--white);
    --text:      var(--ink-800);
    --text-mute: var(--ink-500);
    --heading:   var(--ink-900);
    --brand:     var(--gold-500);
    --brand-dark:var(--gold-700);
    --border:    var(--ink-200);

    /* Typography */
    --ff-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Fluid type */
    --fs-hero:   clamp(2.5rem, 6vw + 1rem, 6rem);
    --fs-display:clamp(2rem, 4vw + .5rem, 3.75rem);
    --fs-h1:     clamp(1.75rem, 3vw + .5rem, 2.75rem);
    --fs-h2:     clamp(1.5rem, 2vw + .5rem, 2.125rem);
    --fs-h3:     clamp(1.25rem, 1.5vw + .5rem, 1.625rem);
    --fs-lead:   clamp(1.0625rem, .5vw + .9rem, 1.25rem);
    --fs-body:   1rem;
    --fs-sm:     .875rem;
    --fs-xs:     .75rem;

    --lh-tight:  1.15;
    --lh-snug:   1.35;
    --lh-normal: 1.6;
    --lh-loose:  1.75;

    /* Tracking */
    --tr-wide:   .08em;
    --tr-wider:  .16em;

    /* Spacing scale */
    --sp-1: .25rem;
    --sp-2: .5rem;
    --sp-3: .75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --sp-6: 2rem;
    --sp-7: 3rem;
    --sp-8: 4rem;
    --sp-9: 6rem;
    --sp-10:8rem;

    /* Layout */
    --max-w:     1280px;
    --max-w-narrow: 860px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --sh-sm: 0 1px 2px rgba(26, 22, 18, .06);
    --sh-md: 0 6px 24px rgba(26, 22, 18, .08);
    --sh-lg: 0 18px 48px rgba(26, 22, 18, .12);
    --sh-xl: 0 30px 80px rgba(26, 22, 18, .18);
    --sh-gold: 0 10px 30px rgba(191, 161, 126, .35);

    /* Motion */
    --ease-out: cubic-bezier(.2, .7, .2, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
    --dur-fast: .18s;
    --dur: .32s;
    --dur-slow: .6s;

    --header-h: 80px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body.v26 {
    margin: 0;
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
}
body.v26 .section,
body.v26 section { max-width: 100vw; overflow-x: clip; }
body.v26 .container-26,
body.v26 .container-narrow { max-width: min(100%, var(--max-w)); }
body.v26 .container-narrow { max-width: min(100%, var(--max-w-narrow)); }

body.v26 img, body.v26 video {
    max-width: 100%;
    height: auto;
    display: block;
}

body.v26 a {
    color: var(--brand-dark);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease-out);
}
body.v26 a:hover { color: var(--gold-800); }

body.v26 h1, body.v26 h2, body.v26 h3, body.v26 h4 {
    font-family: var(--ff-serif);
    font-weight: 500;
    line-height: var(--lh-tight);
    color: var(--heading);
    margin: 0 0 var(--sp-4);
    letter-spacing: -0.01em;
}

body.v26 p { margin: 0 0 var(--sp-4); }

body.v26 ::selection {
    background: var(--gold-300);
    color: var(--ink-900);
}

/* ---------- Layout Utilities ---------- */
.v26 .container-26 {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}
.v26 .container-narrow {
    width: 100%;
    max-width: var(--max-w-narrow);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.v26 .section {
    padding-block: clamp(3rem, 7vw, 7rem);
    position: relative;
}
.v26 .section-alt { background: var(--bg-alt); }
.v26 .section-dark { background: var(--bg-dark); color: var(--cream-100); }
.v26 .section-dark h1, .v26 .section-dark h2, .v26 .section-dark h3 { color: var(--cream-50); }

/* ---------- Kicker / Eyebrow ---------- */
.v26 .kicker {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tr-wider);
    color: var(--brand);
    margin-bottom: var(--sp-3);
    position: relative;
    padding-left: 2.25rem;
}
.v26 .kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--brand);
    transform: translateY(-50%);
}

/* ---------- Buttons ---------- */
.v26 .btn26 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.75rem;
    font-family: var(--ff-sans);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: var(--tr-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.v26 .btn26-primary {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}
.v26 .btn26-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}
.v26 .btn26-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.v26 .btn26-ghost:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
    color: var(--white);
}
.v26 .btn26-dark {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
}
.v26 .btn26-dark:hover {
    background: var(--ink-800);
    border-color: var(--ink-800);
    color: var(--white);
    transform: translateY(-2px);
}
.v26 .btn26-outline {
    background: transparent;
    color: var(--brand-dark);
    border-color: var(--brand);
}
.v26 .btn26-outline:hover {
    background: var(--brand);
    color: var(--white);
}
.v26 .btn26 svg { width: 1rem; height: 1rem; }

/* =============================================================
   NAVIGATION — glass sticky
   ============================================================= */
.v26 .nav26 {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    transition: background var(--dur) var(--ease-out),
                box-shadow var(--dur) var(--ease-out),
                backdrop-filter var(--dur) var(--ease-out);
    background: transparent;
}
.v26 .nav26.is-scrolled {
    background: rgba(254, 252, 248, .82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(26,22,18,.06), var(--sh-md);
}
.v26 .nav26-inner {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
}
.v26 .nav26-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--white);
    font-family: var(--ff-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color var(--dur) var(--ease-out);
}
.v26 .nav26-logo img { height: 44px; width: auto; }
.v26 .nav26.is-scrolled .nav26-logo { color: var(--ink-900); }

.v26 .nav26-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.v26 .nav26-links a {
    display: inline-block;
    padding: .625rem 1rem;
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .02em;
    border-radius: var(--radius-full);
    transition: all var(--dur-fast) var(--ease-out);
    position: relative;
}
.v26 .nav26-links a:hover {
    color: var(--gold-200);
}
.v26 .nav26.is-scrolled .nav26-links a { color: var(--ink-800); }
.v26 .nav26.is-scrolled .nav26-links a:hover { color: var(--brand); }

.v26 .nav26-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .625rem 1.25rem;
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .04em;
    transition: all var(--dur) var(--ease-out);
}
.v26 .nav26-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
    color: var(--white);
}

.v26 .nav26-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(26,22,18,.45);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
    padding: 0;
}
.v26 .nav26.is-scrolled .nav26-toggle {
    background: var(--ink-900);
    border-color: var(--ink-900);
}
.v26 .nav26-toggle:hover { background: var(--brand); border-color: var(--brand); }
.v26 .nav26-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.v26 .nav26-drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--ink-900);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--sp-8) var(--sp-5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity var(--dur) var(--ease-out),
                transform var(--dur) var(--ease-out),
                visibility 0s linear var(--dur);
}
.v26 .nav26-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--dur) var(--ease-out),
                transform var(--dur) var(--ease-out);
}
.v26 .nav26-drawer a {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    color: var(--cream-100);
    font-family: var(--ff-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 500;
    text-align: center;
    transition: color var(--dur-fast) var(--ease-out);
}
.v26 .nav26-drawer a:hover { color: var(--brand); }
.v26 .nav26-drawer .nav26-cta {
    margin-top: var(--sp-5);
    font-family: var(--ff-sans);
    font-size: var(--fs-sm);
}

/* =============================================================
   HERO — full-viewport video
   ============================================================= */
.v26 .hero26 {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}
.v26 .hero26-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.v26 .hero26-media video,
.v26 .hero26-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.v26 .hero26-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(26,22,18,.35) 0%, rgba(26,22,18,.45) 50%, rgba(26,22,18,.75) 100%),
        radial-gradient(ellipse at center, rgba(26,22,18,.15) 0%, rgba(26,22,18,.55) 100%);
}
.v26 .hero26-content {
    max-width: 980px;
    padding: var(--header-h) var(--sp-5) var(--sp-8);
    text-align: center;
    position: relative;
}
.v26 .hero26-kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--ff-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: var(--tr-wider);
    text-transform: uppercase;
    color: var(--gold-200);
    margin-bottom: var(--sp-5);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .2s forwards;
}
.v26 .hero26-kicker::before,
.v26 .hero26-kicker::after {
    content: "";
    width: 3rem;
    height: 1px;
    background: var(--gold-400);
}
.v26 .hero26-title {
    font-family: var(--ff-serif);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 1.04;
    color: var(--white);
    margin: 0 0 var(--sp-5);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) .35s forwards;
}
.v26 .hero26-title em {
    font-style: italic;
    color: var(--gold-200);
    font-weight: 400;
}
.v26 .hero26-lead {
    font-size: var(--fs-lead);
    max-width: 640px;
    margin: 0 auto var(--sp-6);
    color: rgba(255,255,255,.88);
    line-height: var(--lh-snug);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) .5s forwards;
}
.v26 .hero26-ctas {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) .65s forwards;
}

.v26 .hero26-meta {
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 4vh, 2.5rem);
    transform: translateX(-50%);
    display: flex;
    gap: clamp(1rem, 4vw, 3rem);
    color: rgba(255,255,255,.85);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--tr-wider);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 1rem;
}
.v26 .hero26-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.v26 .hero26-meta svg { width: 1rem; height: 1rem; color: var(--gold-300); }
.v26 .hero26-scroll {
    position: absolute;
    bottom: var(--sp-5);
    right: var(--sp-5);
    display: none;
    color: rgba(255,255,255,.7);
    font-size: var(--fs-xs);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: var(--tr-wider);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   INTRO (about strip)
   ============================================================= */
.v26 .intro26 {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--bg);
}
.v26 .intro26-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.v26 .intro26-text h2 {
    font-size: var(--fs-display);
    font-weight: 400;
    margin-bottom: var(--sp-5);
}
.v26 .intro26-text h2 em {
    font-style: italic;
    color: var(--brand);
}
.v26 .intro26-text p {
    font-size: var(--fs-lead);
    color: var(--ink-700);
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
}
.v26 .intro26-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin-top: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
}
.v26 .intro26-stat .num {
    display: block;
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--brand-dark);
    line-height: 1;
    margin-bottom: .375rem;
}
.v26 .intro26-stat .label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--tr-wide);
    color: var(--ink-500);
}

.v26 .intro26-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sh-xl);
}
.v26 .intro26-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.v26 .intro26-visual:hover img { transform: scale(1.04); }
.v26 .intro26-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: inherit;
    pointer-events: none;
}
.v26 .intro26-visual .badge {
    position: absolute;
    left: -30px;
    bottom: 30px;
    padding: .75rem 1.25rem;
    background: var(--brand);
    color: var(--white);
    font-family: var(--ff-serif);
    font-size: 1rem;
    font-style: italic;
    box-shadow: var(--sh-md);
    border-radius: var(--radius-sm);
}

/* =============================================================
   FEATURES GRID
   ============================================================= */
.v26 .features26 {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--bg-alt);
    position: relative;
}
.v26 .features26-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--sp-8);
}
.v26 .features26-head h2 {
    font-size: var(--fs-display);
    margin-bottom: var(--sp-3);
}
.v26 .features26-head p {
    color: var(--ink-600);
    font-size: var(--fs-lead);
}

.v26 .features26-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-4);
    margin-bottom: var(--sp-7);
}
.v26 .summary26 {
    background: var(--surface);
    padding: var(--sp-5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: transform var(--dur) var(--ease-out),
                box-shadow var(--dur) var(--ease-out),
                border-color var(--dur) var(--ease-out);
}
.v26 .summary26:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--gold-300);
}
.v26 .summary26 .ico {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    color: var(--brand-dark);
    border-radius: var(--radius-full);
    margin-bottom: var(--sp-3);
    font-size: 1.25rem;
}
.v26 .summary26 .lbl {
    font-family: var(--ff-serif);
    font-size: 1.125rem;
    color: var(--ink-900);
    margin-bottom: .25rem;
}
.v26 .summary26 .sub {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--tr-wide);
    color: var(--ink-500);
}
.v26 .summary26.deny .ico { background: #fbecec; color: #b53b3b; }

.v26 .features26-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-3) var(--sp-5);
    background: var(--surface);
    padding: var(--sp-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
}
.v26 .feature26 {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem 0;
    color: var(--ink-700);
    font-size: var(--fs-sm);
    border-bottom: 1px dashed transparent;
    transition: color var(--dur-fast) var(--ease-out);
}
.v26 .feature26:hover { color: var(--ink-900); }
.v26 .feature26 .dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--gold-100);
    color: var(--brand-dark);
    border-radius: var(--radius-full);
}
.v26 .feature26 .dot svg { width: 14px; height: 14px; }

/* =============================================================
   GALLERY — cinematic swiper
   ============================================================= */
.v26 .gallery26 {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--ink-900);
    color: var(--cream-100);
}
.v26 .gallery26-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-7);
}
.v26 .gallery26-head h2 {
    font-size: var(--fs-display);
    color: var(--cream-50);
    margin: 0;
}
.v26 .gallery26-head h2 em {
    font-style: italic;
    color: var(--gold-300);
}
.v26 .gallery26-head p {
    max-width: 440px;
    color: rgba(251,247,238,.7);
    margin: 0;
}

.v26 .gallery26-wrap {
    position: relative;
    margin-inline: calc(-1 * clamp(1rem, 4vw, 2.5rem));
}
.v26 .gallery26 .swiper {
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    padding-bottom: var(--sp-6);
}
.v26 .gallery26 .swiper-slide {
    height: auto;
}
.v26 .gallery26-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ink-800);
    transition: transform var(--dur) var(--ease-out);
}
.v26 .gallery26-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out), filter var(--dur) var(--ease-out);
    filter: brightness(.92);
}
.v26 .gallery26-card:hover img { transform: scale(1.06); filter: brightness(1); }
.v26 .gallery26-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45) 100%);
    pointer-events: none;
}
.v26 .gallery26-card .num {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-4);
    z-index: 2;
    color: var(--cream-50);
    font-family: var(--ff-serif);
    font-size: .9rem;
    letter-spacing: .1em;
}
.v26 .gallery26-card .title {
    position: absolute;
    left: var(--sp-4);
    bottom: var(--sp-4);
    right: var(--sp-4);
    z-index: 2;
    color: var(--cream-50);
    font-family: var(--ff-serif);
    font-size: 1.125rem;
    letter-spacing: .02em;
}

.v26 .gallery26-nav {
    display: flex;
    gap: .5rem;
    margin-top: var(--sp-5);
    justify-content: center;
}
.v26 .gallery26-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: var(--cream-50);
    cursor: pointer;
    transition: all var(--dur) var(--ease-out);
}
.v26 .gallery26-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--white);
}
.v26 .gallery26-btn svg { width: 18px; height: 18px; }

/* =============================================================
   VIDEO showcase
   ============================================================= */
.v26 .video26 {
    padding-block: clamp(3rem, 6vw, 6rem);
    background: var(--bg);
}
.v26 .video26-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    background: var(--ink-900);
}
.v26 .video26-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v26 .video26-caption {
    text-align: center;
    margin-top: var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--ink-500);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* =============================================================
   NEARBY (location highlights)
   ============================================================= */
.v26 .nearby26 {
    padding-block: clamp(4rem, 8vw, 8rem);
    background: var(--bg-alt);
}
.v26 .nearby26-head {
    text-align: center;
    margin-bottom: var(--sp-7);
}
.v26 .nearby26-head h2 { font-size: var(--fs-display); }
.v26 .nearby26-head p { color: var(--ink-600); font-size: var(--fs-lead); max-width: 600px; margin: 0 auto; }
.v26 .nearby26-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-4);
    max-width: 1100px;
    margin-inline: auto;
}
.v26 .nearby26-card {
    background: var(--surface);
    padding: var(--sp-5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    transition: all var(--dur) var(--ease-out);
}
.v26 .nearby26-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
}
.v26 .nearby26-card .ico {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    color: var(--brand-dark);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}
.v26 .nearby26-card .lbl {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    color: var(--ink-900);
    margin: 0 0 .125rem;
}
.v26 .nearby26-card .dist {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--tr-wide);
    color: var(--ink-500);
}
.v26 .nearby26-cta {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    margin-top: var(--sp-7);
    flex-wrap: wrap;
}

/* =============================================================
   LOCATION / MAP
   ============================================================= */
.v26 .location26 {
    padding: 0;
    background: var(--ink-900);
}
.v26 .location26-head {
    padding: clamp(3rem, 6vw, 5rem) var(--sp-5) var(--sp-6);
    text-align: center;
    color: var(--cream-100);
}
.v26 .location26-head h2 { color: var(--cream-50); font-size: var(--fs-display); }
.v26 .location26-head p { color: rgba(251,247,238,.7); max-width: 600px; margin: 0 auto; }
.v26 .location26-map {
    width: 100%;
    height: clamp(320px, 50vh, 560px);
    position: relative;
    filter: saturate(1.05) contrast(1);
}
.v26 .location26-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =============================================================
   RESERVATION form
   ============================================================= */
.v26 .reserve26 {
    padding-block: clamp(4rem, 8vw, 8rem);
    background:
        linear-gradient(135deg, rgba(191,161,126,.12) 0%, rgba(251,247,238,0) 60%),
        var(--bg);
    position: relative;
}
.v26 .reserve26-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.v26 .reserve26-intro h2 {
    font-size: var(--fs-display);
    margin-bottom: var(--sp-4);
}
.v26 .reserve26-intro h2 em { font-style: italic; color: var(--brand); }
.v26 .reserve26-intro p {
    font-size: var(--fs-lead);
    color: var(--ink-600);
    margin-bottom: var(--sp-5);
}
.v26 .reserve26-contact {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-5);
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-top: var(--sp-5);
}
.v26 .reserve26-contact a,
.v26 .reserve26-contact span.item {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--ink-800);
    font-size: var(--fs-sm);
    line-height: 1.3;
}
.v26 .reserve26-contact svg {
    width: 20px;
    height: 20px;
    color: var(--brand);
    flex-shrink: 0;
}

.v26 .reserve26-form {
    background: var(--surface);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
}
.v26 .reserve26-form .alert26 {
    padding: .875rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--sp-4);
    font-size: var(--fs-sm);
}
.v26 .reserve26-form .alert26.ok {
    background: #eef8f1;
    color: #1d6b3f;
    border: 1px solid #cfe8d8;
}
.v26 .reserve26-form .alert26.err {
    background: #fbecec;
    color: #9a2b2b;
    border: 1px solid #f2cccc;
}
.v26 .field26 {
    margin-bottom: var(--sp-4);
}
.v26 .field26-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}
.v26 .field26 label {
    display: block;
    font-size: var(--fs-xs);
    letter-spacing: var(--tr-wide);
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: .375rem;
    font-weight: 500;
}
.v26 .field26 input,
.v26 .field26 textarea {
    width: 100%;
    padding: .875rem 1rem;
    font-family: var(--ff-sans);
    font-size: var(--fs-body);
    color: var(--ink-900);
    background: var(--bg-alt);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--dur-fast) var(--ease-out);
    outline: none;
    resize: vertical;
}
.v26 .field26 input:focus,
.v26 .field26 textarea:focus {
    background: var(--white);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(191,161,126,.18);
}
.v26 .check26 {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    font-size: var(--fs-sm);
    color: var(--ink-600);
    line-height: 1.4;
    margin-bottom: .75rem;
    cursor: pointer;
}
.v26 .check26 input { margin-top: .2rem; accent-color: var(--brand); flex-shrink: 0; }
.v26 .check26 a { color: var(--brand-dark); text-decoration: underline; }
.v26 .reserve26-form button[type="submit"] { width: 100%; margin-top: var(--sp-3); }
.v26 .honeypot26 { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* =============================================================
   FOOTER
   ============================================================= */
.v26 .footer26 {
    background: var(--ink-900);
    color: rgba(251,247,238,.75);
    padding: clamp(3rem, 6vw, 5rem) 0 var(--sp-5);
}
.v26 .footer26-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-6);
    margin-bottom: var(--sp-7);
}
.v26 .footer26 h4 {
    font-family: var(--ff-sans);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: var(--tr-wider);
    color: var(--gold-300);
    margin: 0 0 var(--sp-4);
    font-weight: 600;
}
.v26 .footer26 p { color: rgba(251,247,238,.7); line-height: var(--lh-normal); margin-bottom: var(--sp-3); }
.v26 .footer26 ul { list-style: none; margin: 0; padding: 0; }
.v26 .footer26 ul li { margin-bottom: .5rem; }
.v26 .footer26 a { color: rgba(251,247,238,.8); transition: color var(--dur-fast) var(--ease-out); }
.v26 .footer26 a:hover { color: var(--gold-300); }
.v26 .footer26-logo {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    color: var(--cream-50);
    margin-bottom: var(--sp-3);
    display: block;
}
.v26 .footer26-logo img { max-height: 60px; width: auto; }

.v26 .footer26-social {
    display: flex;
    gap: .5rem;
    margin-top: var(--sp-4);
}
.v26 .footer26-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--cream-100);
    transition: all var(--dur) var(--ease-out);
}
.v26 .footer26-social a:hover {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
    transform: translateY(-2px);
}
.v26 .footer26-social svg { width: 16px; height: 16px; fill: currentColor; }

.v26 .footer26-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: var(--sp-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
    font-size: var(--fs-xs);
    color: rgba(251,247,238,.55);
    letter-spacing: .03em;
}

/* =============================================================
   WhatsApp float
   ============================================================= */
.v26 .wa26 {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--sh-lg);
    z-index: 80;
    transition: transform var(--dur) var(--ease-out);
}
.v26 .wa26:hover { transform: scale(1.08); color: var(--white); }
.v26 .wa26 svg { width: 28px; height: 28px; fill: currentColor; }
.v26 .wa26::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(37,211,102,.4);
    animation: pulse26 2s infinite;
}
@keyframes pulse26 {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================================
   BACK TO TOP
   ============================================================= */
.v26 .totop26 {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-900);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--sh-md);
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--dur) var(--ease-out);
    border: 0;
    cursor: pointer;
}
.v26 .totop26.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.v26 .totop26:hover { background: var(--brand); color: var(--white); }

/* =============================================================
   Reveal on scroll
   ============================================================= */
.v26 .reveal26 {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.v26 .reveal26.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   Responsive
   ============================================================= */

/* ---- ≥ 1600px : ultra-wide ---- */
@media (min-width: 1600px) {
    :root { --max-w: 1440px; }
    .v26 .hero26-title { font-size: clamp(3rem, 5.5vw, 4.75rem); }
    .v26 .gallery26-card { aspect-ratio: 4 / 5; }
}

/* ---- ≤ 1280px : small laptop ---- */
@media (max-width: 1280px) {
    .v26 .intro26-grid { gap: var(--sp-7); }
    .v26 .features26-list { grid-template-columns: repeat(2, 1fr); }
    .v26 .nearby26-grid { gap: var(--sp-4); }
    .v26 .reserve26-grid { gap: var(--sp-7); }
}

/* ---- ≤ 1024px : large tablet / iPad landscape ---- */
@media (max-width: 1024px) {
    .v26 .nav26-inner { padding-inline: clamp(1rem, 3vw, 1.75rem); }
    .v26 .nav26-links { gap: var(--sp-4); }
    .v26 .hero26-content { padding-inline: clamp(1.25rem, 4vw, 3rem); }
    .v26 .intro26-text h2,
    .v26 .features26-head h2,
    .v26 .gallery26-head h2,
    .v26 .nearby26-head h2,
    .v26 .location26-head h2,
    .v26 .reserve26-intro h2 { font-size: clamp(1.85rem, 4.5vw, 2.5rem); }
}

/* ---- ≤ 992px : tablet ---- */
@media (max-width: 992px) {
    .v26 .intro26-grid,
    .v26 .reserve26-grid { grid-template-columns: 1fr; }
    .v26 .footer26-grid { grid-template-columns: 1fr 1fr; }
    .v26 .intro26-visual { aspect-ratio: 16/11; max-width: 640px; margin: 0 auto; }
    .v26 .reserve26-intro { text-align: center; }
    .v26 .reserve26-intro .kicker { padding-left: 0; }
    .v26 .reserve26-intro .kicker::before { display: none; }
    .v26 .reserve26-contact { margin-left: auto; margin-right: auto; max-width: 520px; }
    .v26 .nearby26-grid { grid-template-columns: repeat(2, 1fr); }
    .v26 .features26-list { grid-template-columns: 1fr 1fr; }
}

/* ---- ≤ 900px : small tablet ---- */
@media (max-width: 900px) {
    .v26 .nav26-links { gap: .9rem; font-size: .85rem; }
    .v26 .features26-summary { gap: var(--sp-3); }
    .v26 .summary26 .lbl { font-size: 1rem; }
}

/* ---- ≤ 768px : small tablet / large phone ---- */
@media (max-width: 768px) {
    :root { --header-h: 64px; }

    /* Nav */
    .v26 .nav26-links,
    .v26 .nav26 > .nav26-inner > .nav26-cta { display: none; }
    .v26 .nav26-toggle { display: inline-flex; }
    .v26 .nav26-logo img { height: 36px; }

    /* Section padding – keep rhythm tighter on mobile */
    .v26 .section,
    .v26 .hero26,
    .v26 .intro26,
    .v26 .features26,
    .v26 .gallery26,
    .v26 .nearby26,
    .v26 .reserve26,
    .v26 .video26,
    .v26 .location26 { padding-block: clamp(2.5rem, 8vw, 3.75rem); }

    /* Section headers — centered on mobile */
    .v26 .intro26-text,
    .v26 .features26-head,
    .v26 .gallery26-head,
    .v26 .gallery26-head > div,
    .v26 .nearby26-head,
    .v26 .location26-head,
    .v26 .reserve26-intro { text-align: center; align-items: center; }
    .v26 .intro26-text .kicker,
    .v26 .features26-head .kicker,
    .v26 .gallery26-head .kicker,
    .v26 .nearby26-head .kicker,
    .v26 .location26-head .kicker,
    .v26 .reserve26-intro .kicker {
        display: inline-flex;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .v26 .intro26-text .kicker::before,
    .v26 .features26-head .kicker::before,
    .v26 .gallery26-head .kicker::before,
    .v26 .nearby26-head .kicker::before,
    .v26 .location26-head .kicker::before,
    .v26 .reserve26-intro .kicker::before { display: none; }
    .v26 .intro26-text p { text-align: center; margin-inline: auto; max-width: 560px; }

    /* Hero */
    .v26 .hero26 {
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        min-height: 100vh;
        min-height: 100dvh;
        padding-block: var(--sp-6);
    }
    .v26 .hero26-title { font-size: clamp(2.25rem, 9vw, 3rem); letter-spacing: -0.015em; }
    .v26 .hero26-lead  { font-size: 1rem; }
    .v26 .hero26-kicker { margin-bottom: var(--sp-4); font-size: .7rem; letter-spacing: .12em; }
    .v26 .hero26-kicker::before,
    .v26 .hero26-kicker::after { width: 1.75rem; }
    .v26 .hero26-content {
        padding: calc(var(--header-h) + var(--sp-5)) var(--sp-4) var(--sp-5);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .v26 .hero26-meta {
        position: static;
        transform: none;
        margin: 0 auto var(--sp-4);
        padding-inline: var(--sp-4);
        font-size: .68rem;
        gap: .75rem 1rem;
        letter-spacing: .1em;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    .v26 .hero26-meta svg { width: .85rem; height: .85rem; }

    /* Intro (konsept) */
    .v26 .intro26-text h2,
    .v26 .features26-head h2,
    .v26 .gallery26-head h2,
    .v26 .nearby26-head h2,
    .v26 .location26-head h2,
    .v26 .reserve26-intro h2 { font-size: clamp(1.65rem, 6vw, 2.25rem); }
    .v26 .intro26-text p { font-size: 1rem; }
    .v26 .intro26-stats { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); padding-top: var(--sp-5); margin-top: var(--sp-5); }
    .v26 .intro26-stat { text-align: center; }
    .v26 .intro26-stat .num { font-size: 1.6rem; }
    .v26 .intro26-stat .label { font-size: .65rem; }
    .v26 .intro26-visual { aspect-ratio: 4/3; max-width: 100%; }
    .v26 .intro26-visual .badge { left: 12px; bottom: 12px; font-size: .85rem; padding: .5rem .875rem; }

    /* Kickers on mobile keep some padding */
    .v26 .kicker { padding-left: 2rem; }

    /* Gallery */
    .v26 .gallery26-head { flex-direction: column; align-items: center; text-align: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
    .v26 .gallery26-head p { max-width: 100%; font-size: .95rem; text-align: center; }
    .v26 .gallery26-card { aspect-ratio: 3 / 4; }
    .v26 .gallery26-card .title { font-size: 1rem; left: var(--sp-3); bottom: var(--sp-3); right: var(--sp-3); }
    .v26 .gallery26-card .num { top: var(--sp-2); left: var(--sp-3); font-size: .8rem; }
    .v26 .gallery26-btn { width: 44px; height: 44px; }
    /* Tighten space below gallery so next section doesn't feel detached */
    .v26 .gallery26 { padding-bottom: clamp(2rem, 6vw, 3rem); }
    .v26 .gallery26 .swiper { padding-bottom: var(--sp-3); }
    .v26 .video26 { padding-block: clamp(2rem, 5vw, 3rem); }
    /* If video returns early (no file), force nearby to come up closer */
    .v26 .nearby26 { padding-top: clamp(2rem, 6vw, 3.5rem); }

    /* Nearby / Features */
    .v26 .features26-head,
    .v26 .nearby26-head { margin-bottom: var(--sp-6); }
    .v26 .features26-summary { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
    .v26 .summary26 { padding: var(--sp-4); }
    .v26 .summary26 .ico { width: 40px; height: 40px; margin-bottom: var(--sp-2); }
    .v26 .summary26 .lbl { font-size: 1rem; }
    .v26 .features26-list { padding: var(--sp-4); grid-template-columns: 1fr 1fr; gap: var(--sp-2) var(--sp-4); }
    .v26 .nearby26-grid { grid-template-columns: 1fr; gap: var(--sp-3); max-width: 520px; }
    .v26 .nearby26-card { padding: var(--sp-4); }

    /* Location */
    .v26 .location26-map { height: clamp(280px, 48vh, 420px); }

    /* Reservation */
    .v26 .field26-row { grid-template-columns: 1fr; gap: 0; }
    .v26 .reserve26-form { padding: var(--sp-5); }
    .v26 .reserve26-contact { padding: var(--sp-4); }
    .v26 .reserve26-contact a,
    .v26 .reserve26-contact span.item { font-size: .9rem; }
    .v26 .check26 { font-size: .82rem; }

    /* Footer */
    .v26 .footer26-grid { grid-template-columns: 1fr; gap: var(--sp-6); text-align: left; }
    .v26 .footer26-bottom { flex-direction: column; text-align: center; gap: .25rem; }
    .v26 .footer26-social { justify-content: flex-start; }

    /* WhatsApp / back-to-top sit above mobile safe area */
    .v26 .wa26 { right: 14px; bottom: 14px; width: 52px; height: 52px; }
    .v26 .wa26 svg { width: 26px; height: 26px; }
    .v26 .totop26 { right: 14px; bottom: 78px; width: 40px; height: 40px; }

    /* KVKK modal inside fancybox */
    .v26 .fancybox-slide--html .fancybox-content { max-width: 94vw !important; padding: 1.25rem !important; }
}

/* ---- ≤ 640px : large phones ---- */
@media (max-width: 640px) {
    .v26 .nearby26-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .v26 .footer26-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .v26 .nav26-drawer nav a { font-size: 1.15rem; padding: .75rem 0; }
    .v26 .nav26-drawer nav a.nav26-cta { margin-top: var(--sp-3); font-size: .85rem; }
    .v26 .intro26-stats { grid-template-columns: repeat(3, 1fr); }
    .v26 .location26-map { height: clamp(260px, 50vh, 380px); }
    .v26 .reserve26-form { padding: var(--sp-4); }
    .v26 .check26 { align-items: flex-start; }
}

/* ---- ≤ 560px : phones ---- */
@media (max-width: 560px) {
    .v26 .container-26 { padding-inline: 1rem; }
    .v26 .features26-summary { grid-template-columns: 1fr 1fr; }
    .v26 .features26-list { grid-template-columns: 1fr; }
    .v26 .hero26-meta { font-size: .64rem; gap: .6rem .9rem; }
    .v26 .hero26-meta span { gap: .35rem; }
    .v26 .intro26-stats { gap: var(--sp-2); }
    .v26 .intro26-stat .num { font-size: 1.4rem; }
    .v26 .intro26-text h2,
    .v26 .features26-head h2,
    .v26 .gallery26-head h2,
    .v26 .nearby26-head h2,
    .v26 .location26-head h2,
    .v26 .reserve26-intro h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
    /* Touch targets */
    .v26 .btn26,
    .v26 .nav26-cta,
    .v26 .nav26-toggle { min-height: 44px; }
    .v26 .form26 input,
    .v26 .form26 select,
    .v26 .form26 textarea { min-height: 44px; font-size: 16px; /* prevents iOS zoom */ }
}

/* ---- ≤ 480px : small phones ---- */
@media (max-width: 480px) {
    .v26 .hero26-ctas { flex-direction: column; width: 100%; align-items: stretch; }
    .v26 .hero26-ctas .btn26 { width: 100%; }
    .v26 .nearby26-cta { flex-direction: column; align-items: stretch; }
    .v26 .nearby26-cta .btn26 { width: 100%; }
    .v26 .reserve26-contact a,
    .v26 .reserve26-contact span.item { font-size: .85rem; gap: .5rem; }
    .v26 .reserve26-contact svg { width: 18px; height: 18px; }
    .v26 .btn26 { padding: .8rem 1.25rem; font-size: .8rem; }
    .v26 .features26-summary { gap: var(--sp-2); }
    .v26 .summary26 { padding: var(--sp-3); }
    .v26 .summary26 .lbl { font-size: .95rem; }
    .v26 .summary26 .sub { font-size: .65rem; }
    .v26 .nav26-logo img { height: 32px; }
    .v26 .footer26-logo { font-size: 1.25rem; }
    .v26 .footer26-logo img { max-height: 48px; }
    .v26 .footer26-social a { width: 36px; height: 36px; }
}

/* ---- ≤ 380px : extra small phones ---- */
@media (max-width: 380px) {
    .v26 .hero26-title { font-size: 2rem; }
    .v26 .hero26-kicker::before,
    .v26 .hero26-kicker::after { display: none; }
    .v26 .hero26-kicker { gap: 0; }
    .v26 .hero26-meta { gap: .4rem .7rem; }
    .v26 .intro26-stat .num { font-size: 1.25rem; }
    .v26 .intro26-stat .label { font-size: .6rem; letter-spacing: .08em; }
    .v26 .container-26 { padding-inline: .75rem; }
    .v26 .reserve26-form { padding: var(--sp-3); }
    .v26 .nav26-logo img { height: 28px; }
    .v26 .footer26-logo img { max-height: 40px; }
    .v26 .summary26 .lbl { font-size: .85rem; }
    .v26 .summary26 .sub { font-size: .6rem; }
}

/* ---- Landscape phones (short viewport) ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .v26 .hero26 { min-height: auto; height: auto; padding-block: var(--sp-7); }
    .v26 .hero26-content { padding-block: var(--sp-6); }
    .v26 .hero26-title { font-size: clamp(1.65rem, 5vw, 2.5rem); margin-bottom: var(--sp-2); }
    .v26 .hero26-lead { font-size: .9rem; margin-bottom: var(--sp-4); }
    .v26 .hero26-meta { display: none; }
    .v26 .nav26-drawer nav { padding: var(--sp-5) var(--sp-4); gap: var(--sp-2); }
    .v26 .nav26-drawer nav a { font-size: .95rem; padding: .5rem 0; }
}

/* ---- Hover-capable devices only ---- */
@media (hover: hover) and (pointer: fine) {
    .v26 .gallery26-card:hover img { transform: scale(1.03); }
    .v26 .summary26:hover { transform: translateY(-3px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .v26 *,
    .v26 *::before,
    .v26 *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .v26 .hero26-title,
    .v26 .hero26-lead,
    .v26 .hero26-ctas,
    .v26 .hero26-kicker { opacity: 1; }
    .v26 .reveal26 { opacity: 1; transform: none; }
}

/* Hide noisy legacy styles conflicting with new theme on body.v26 */
.v26 .float { display: none !important; } /* legacy whatsapp float */
.v26 .go-top { display: none !important; } /* legacy back-to-top */
