/* ═══════════════════════════════════════════════════════════════════════════
   JOMTIEN HILL RESORT — main.css
   Aesthetic: Luxury noir · Cormorant Garamond · Gold accents
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────────────────────── */
:root {
    --noir:      #0a0a0b;
    --noir-soft: #111113;
    --noir-mid:  #1a1a1e;
    --noir-card: #16161a;
    --gold:      #c9a84c;
    --gold-lt:   #e0c170;
    --gold-dk:   #a07830;
    --cream:     #f5f0e8;
    --muted:     #888;
    --border:    rgba(201,168,76,.18);
    --border-lt: rgba(201,168,76,.08);

    --ff-serif:  'Cormorant Garamond', Georgia, serif;
    --ff-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;

    --header-h:  72px;
    --radius:    4px;
    --trans:     0.3s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--noir);
    color: var(--cream);
    font-family: var(--ff-sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { font-size: 1rem; color: rgba(245,240,232,.75); }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--cream);
}
.section-title::after {
    content: '';
    display: block;
    width: 48px; height: 1px;
    background: var(--gold);
    margin: 0.8rem auto 0;
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container        { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 1.5rem; }
.section          { padding: 5rem 0; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-gold, .btn-wa, .btn-book, .btn-book-mobile, .footer-wa-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--noir);
    border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
    background: var(--gold);
    color: var(--noir);
    border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    font-size: 0.9rem;
}
.btn-wa:hover { background: #20be5b; }

.btn-full { width: 100%; justify-content: center; }

/* ── Header ────────────────────────────────────────────────────────────── */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h);
    background: rgba(10,10,11,.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-lt);
    transition: var(--trans);
}
#site-header.scrolled {
    background: rgba(10,10,11,.97);
    border-bottom-color: var(--border);
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.logo-sub {
    font-family: var(--ff-sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
}
.main-nav {
    display: flex; align-items: center; gap: 2rem;
    margin-left: auto;
}
.main-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,.65);
    transition: var(--trans);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.header-right {
    display: flex; align-items: center; gap: 1.25rem;
    margin-left: auto;
}
.lang-switcher {
    display: flex; gap: 0.4rem;
}
.lang-switcher a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    padding: 0.15rem 0.4rem;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: var(--trans);
}
.lang-switcher a:hover, .lang-switcher a.active {
    color: var(--gold);
    border-color: var(--border);
}
.btn-book {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.5rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.btn-book:hover { background: var(--gold); color: var(--noir); }

/* Burger */
.burger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
    display: block; width: 22px; height: 1px;
    background: var(--cream);
    transition: var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--noir-soft);
    border-top: 1px solid var(--border-lt);
    padding: 1.5rem;
    gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,240,232,.7);
    transition: var(--trans);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.btn-book-mobile {
    background: var(--gold); color: var(--noir);
    border: none; text-align: center;
    padding: 0.6rem 1rem; font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: var(--radius);
    display: inline-block;
}

/* ── Main content padding-top (header offset) ───────────────────────────── */
#main-content { padding-top: var(--header-h); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: calc(100vh - var(--header-h));
    min-height: 560px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,11,.5) 0%, rgba(10,10,11,.2) 50%, rgba(10,10,11,.7) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 760px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.hero-content h1 { color: #fff; margin-bottom: 1rem; }
.hero-subtitle {
    font-family: var(--ff-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,.8);
    margin-bottom: 2.5rem;
    font-style: italic;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block; width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0) translateY(-10px); }
    50%       { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--noir-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.stats-bar .container {
    display: flex; align-items: center; justify-content: center; gap: 3rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    line-height: 1;
}
.stat span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
    display: block;
}
.stat-divider {
    width: 1px; height: 50px;
    background: var(--border);
}

/* ── Features Grid ──────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    background: var(--border);
}
.feature-card {
    background: var(--noir-card);
    padding: 2.5rem 2rem;
    transition: var(--trans);
}
.feature-card:hover { background: var(--noir-mid); }
.feature-icon {
    width: 44px; height: 44px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

/* ── Video Section ──────────────────────────────────────────────────────── */
.video-section { background: var(--noir-soft); }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ── CTA Band ───────────────────────────────────────────────────────────── */
.cta-band {
    background: var(--noir-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    text-align: center;
}
.cta-band .container {
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.cta-band p {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--cream);
    font-style: italic;
}

/* ── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
    position: relative;
    height: 55vh; min-height: 380px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.page-hero-sm { height: 42vh; min-height: 280px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 1.5rem;
}
.page-hero-content h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero-content p {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,.75);
}

/* ── Apartment Type ─────────────────────────────────────────────────────── */
.apt-type-alt { background: var(--noir-soft); }
.apt-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.apt-type-grid-reverse { direction: rtl; }
.apt-type-grid-reverse > * { direction: ltr; }
.apt-type-images { position: relative; }
.apt-img-main {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.apt-img-sec {
    position: absolute;
    width: 48%; aspect-ratio: 1;
    object-fit: cover;
    bottom: -1.5rem; right: -1.5rem;
    border: 3px solid var(--noir);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.apt-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.apt-type-text h2 { margin-bottom: 1rem; color: var(--cream); }
.apt-type-text p  { margin-bottom: 1.5rem; }
.apt-quick-specs {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    margin-bottom: 2rem;
}
.apt-quick-specs li {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(245,240,232,.65);
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 2px;
}
.apt-quick-specs svg { width: 14px; height: 14px; color: var(--gold); }

/* ── Amenities ──────────────────────────────────────────────────────────── */
.amenities { background: var(--noir-card); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.amenity-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(245,240,232,.8);
    padding: 1rem;
    border: 1px solid var(--border-lt);
    border-radius: var(--radius);
}
.amenity-item svg { flex-shrink: 0; color: var(--gold); }

/* ── Gallery Strip ──────────────────────────────────────────────────────── */
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
}
.gallery-strip img {
    width: 100%; aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-strip img:hover { transform: scale(1.03); }

/* ── Rates ──────────────────────────────────────────────────────────────── */
.rates-section { background: var(--noir); }
.rate-card {
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}
.rate-card h2 {
    font-size: 1.4rem;
    color: var(--gold-lt);
    margin-bottom: 1.5rem;
}
.rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.rate-col {
    background: var(--noir-mid);
    padding: 1.5rem;
    text-align: center;
}
.rate-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
}
.rate-price {
    display: block;
    font-family: var(--ff-serif);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--cream);
}
.rates-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 1.5rem 0 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
}
.included-box {
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    margin-bottom: 2.5rem;
}
.included-box h2 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--cream);
}
.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}
.included-list li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; color: rgba(245,240,232,.75);
}
.included-list svg { flex-shrink: 0; color: var(--gold); }
.rates-cta { text-align: center; }

/* ── About ──────────────────────────────────────────────────────────────── */
.about-text p {
    font-size: 1.05rem;
    color: rgba(245,240,232,.8);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}
.map-wrapper {
    margin: 2rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.map-wrapper iframe { filter: grayscale(30%); }
.location-address {
    font-size: 0.9rem;
    color: rgba(245,240,232,.65);
    line-height: 1.8;
    padding: 1rem 0;
}
.about-location h2 { margin-bottom: 0.75rem; }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-block { margin-bottom: 2.5rem; }
.contact-block h2, .contact-block h3 { margin-bottom: 0.75rem; }
.contact-block p { margin-bottom: 1.25rem; }
address { color: rgba(245,240,232,.65); font-size: 0.95rem; line-height: 1.8; }

/* Form */
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row-half { flex-direction: row; gap: 1rem; }
.form-row-half > * { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
input, select, textarea {
    background: var(--noir-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--cream);
    font-family: var(--ff-sans);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.7rem 1rem;
    width: 100%;
    transition: border-color var(--trans);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
}
select option { background: var(--noir-card); }
textarea { resize: vertical; min-height: 100px; }
.form-success {
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.3);
    color: #6ee7a0;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.form-error {
    background: rgba(200,60,60,.1);
    border: 1px solid rgba(200,60,60,.3);
    color: #f8a0a0;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
#site-footer {
    background: var(--noir-soft);
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}
.footer-inner {
    max-width: 1160px; margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.footer-logo span { font-size: 1rem; color: var(--muted); }
.footer-tagline { font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-wa-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 0.55rem 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--trans);
}
.footer-wa-btn:hover { background: var(--gold); color: var(--noir); }
.footer-col h3 {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(245,240,232,.55);
    transition: var(--trans);
}
.footer-col a:hover { color: var(--gold); }
.footer-col address {
    font-size: 0.88rem;
    color: rgba(245,240,232,.55);
    line-height: 1.9;
}
.footer-bottom {
    border-top: 1px solid var(--border-lt);
    padding: 1.25rem 1.5rem;
    max-width: 1160px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); }
.footer-langs { display: flex; gap: 0.75rem; }
.footer-langs a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    transition: var(--trans);
}
.footer-langs a:hover, .footer-langs a.active { color: var(--gold); }

/* ── Photo Gallery ──────────────────────────────────────────────────────── */
.gallery-section { background: var(--noir-soft); }
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gallery-thumb {
    background: none; border: none; padding: 0; cursor: pointer;
    overflow: hidden; aspect-ratio: 4/3;
    border-radius: 2px;
}
.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(.92);
}
.gallery-thumb:hover img { transform: scale(1.06); filter: brightness(1); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.95);
    display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-inner {
    max-width: 90vw; max-height: 90vh;
    text-align: center;
}
.lightbox-inner img {
    max-width: 100%; max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
}
#lightbox-caption {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed;
    background: rgba(10,10,11,.7);
    border: 1px solid var(--border);
    color: var(--cream);
    cursor: pointer;
    border-radius: 2px;
    transition: var(--trans);
    font-family: var(--ff-sans);
}
.lightbox-close {
    top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    font-size: 1.5rem; line-height: 1;
}
.lightbox-prev, .lightbox-next {
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 64px;
    font-size: 2rem; line-height: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold); color: var(--noir); border-color: var(--gold);
}

@media (max-width: 900px) {
    .photo-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .photo-gallery { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .btn-book  { display: none; }
    .lang-switcher { display: none; }
    .burger { display: flex; }
    .header-right { margin-left: auto; }

    .apt-type-grid, .apt-type-grid-reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
    .apt-img-sec { display: none; }

    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }

    .rate-grid { grid-template-columns: 1fr; }
    .rate-col { padding: 1rem; text-align: left; display: flex; justify-content: space-between; align-items: center; }
    .rate-label, .rate-price { margin: 0; }
}

@media (max-width: 600px) {
    :root { --header-h: 64px; }

    .stats-bar .container { gap: 1.5rem; }
    .stat-divider { display: none; }

    .gallery-strip { grid-template-columns: 1fr; }
    .gallery-strip img { aspect-ratio: 16/9; }

    .footer-inner { grid-template-columns: 1fr; }

    .form-row-half { flex-direction: column; }

    .hero-ctas { flex-direction: column; align-items: center; }

    .section { padding: 3.5rem 0; }
}
