/* ============ Reset & base ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #1f6fb8;
    --gold-dark: #155389;
    --dark: #1a1a1a;
    --dark-2: #222;
    --bg-light: #f6f4ef;
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --text-body: #555;
    --border: rgba(0, 0, 0, 0.08);
}

html {
    scroll-padding-top: 90px;
}

/* Lenis smooth scroll — required setup */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    zoom: 1.1;
    opacity: 0;
    transition: opacity 0.6s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.loaded { opacity: 1; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile: don't zoom (text already fits tightly) */
@media (max-width: 768px) {
    body { zoom: 1; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.text-gold { color: var(--gold); }
.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
}

/* ============ Reveal animations — premium silky entrance (keyframe-based, beats card transitions) ============ */
.reveal {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale(0.97);
    filter: blur(6px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        filter 0.4s ease;
    will-change: opacity, transform, filter;
}

.reveal.from-left  { transform: translate3d(-90px, 0, 0) scale(0.97); }
.reveal.from-right { transform: translate3d(90px, 0, 0) scale(0.97); }

@media (max-width: 1024px) {
    .reveal.from-left,
    .reveal.from-right { transform: translate3d(0, 50px, 0) scale(0.97); }
}

/* When visible, run a keyframe animation — animation wins over any element-level transition */
.reveal.visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
    animation-duration: 1.15s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: backwards;
    animation-delay: calc(var(--reveal-i, 0) * 110ms);
    animation-name: reveal-up;
    will-change: auto;
}

.reveal.from-left.visible  { animation-name: reveal-left; }
.reveal.from-right.visible { animation-name: reveal-right; }

@media (max-width: 1024px) {
    .reveal.from-left.visible,
    .reveal.from-right.visible { animation-name: reveal-up; }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translate3d(0, 50px, 0) scale(0.97);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes reveal-left {
    from {
        opacity: 0;
        transform: translate3d(-90px, 0, 0) scale(0.97);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes reveal-right {
    from {
        opacity: 0;
        transform: translate3d(90px, 0, 0) scale(0.97);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

/* ============ Section heading ============ */
.section-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(31, 111, 184, 0.08);
    border-radius: 999px;
}

.section-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--dark);
}

.section-title.center { text-align: center; }

.section-body {
    color: var(--text-body);
    font-size: 16px;
    margin-top: 18px;
    max-width: 540px;
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

/* ============ Navbar (transparent → solid on scroll) ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-inner {
    padding: 10px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 54px;
    width: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.25s ease, height 0.3s ease;
}

.navbar.scrolled .logo-img { height: 42px; }

.logo:hover .logo-img { transform: scale(1.05); }

.footer .logo-img { height: 72px; }

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 14.5px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta { flex-shrink: 0; }

/* Header social icons */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 14px;
}

.nav-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
}

.nav-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 111, 184, 0.45);
}

.nav-socials svg { width: 18px; height: 18px; }

/* Round SAY logo badge next to the Contact button */
.nav-favicon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.nav-favicon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav-socials { display: none; }
    .nav-favicon {
        width: 42px;
        height: 42px;
        margin-left: auto;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 111, 184, 0.35);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    font-size: 12px;
}

/* ============ Hero (parallax) ============ */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('images/hero-cottage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 86px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    max-width: 1100px;
    margin-bottom: 56px;
}

/* ============ Booking form ============ */
.booking-form {
    background: var(--white);
    border-radius: 999px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1080px;
    width: 100%;
}

.booking-field {
    flex: 1;
    padding: 10px 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    text-align: left;
    min-width: 0;
}

.booking-field:last-of-type { border-right: none; }

.booking-field label {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-body);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.booking-field input,
.booking-field select {
    border: none;
    outline: none;
    font-size: 14.5px;
    color: var(--dark);
    font-family: inherit;
    background: transparent;
    cursor: pointer;
    width: 100%;
}

.booking-submit {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.booking-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* ============ About ============ */
/* Curved top edge — about "rises" over the hero */
.about {
    padding: 120px 0;
    background: var(--bg-light);
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.18);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

/* Circular badge on about image */
.about-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 130px;
    height: 130px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: spin 18s linear infinite;
}

.badge-text-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: spin 18s linear infinite reverse;
}

.badge-icon svg { width: 26px; height: 26px; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: var(--white);
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ============ Rooms ============ */
.rooms {
    padding: 120px 0;
    background: var(--white);
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.room-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    grid-column: span 2;
    cursor: pointer;
    transition:
        transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.room-card.large {
    grid-column: span 3;
    aspect-ratio: 16 / 11;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.room-card:hover img { transform: scale(1.08); }

.room-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

.room-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.room-info {
    position: absolute;
    left: 22px;
    bottom: 22px;
    color: var(--white);
    z-index: 2;
}

.room-price {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.room-name {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

/* ============ Facility ============ */
.facility {
    padding: 120px 0;
    background: var(--bg-light);
}

.facility-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.facility-row:last-child { margin-bottom: 0; }
.facility-row.reverse .facility-image { order: 2; }

.facility-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px;
}

.facility-text h3 {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--dark);
}

.facility-text p {
    color: var(--text-body);
    margin-bottom: 28px;
    font-size: 16px;
}

/* ============ Parallax CTA section ============ */
.parallax-cta {
    position: relative;
    min-height: 90vh;
    background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.parallax-inner {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 1100px;
}

.play-btn {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto 40px;
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2.5s ease-in-out infinite;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: ripple 2.5s ease-out infinite;
}

.play-btn svg { width: 36px; height: 36px; margin-left: 4px; }

.play-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 0 16px rgba(255, 255, 255, 0); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.parallax-title {
    font-family: 'Mulish', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.2;
}

/* ============ Amenities ============ */
/* Curved top — rises over the parallax CTA */
.amenities {
    padding: 120px 0;
    background: var(--white);
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    margin-top: -36px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.18);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.amenity-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(31, 111, 184, 0.4);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(31, 111, 184, 0.35);
}

.amenity-icon svg { width: 40px; height: 40px; }

.amenity-card h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.amenity-card p {
    color: var(--text-body);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ============ Stats (parallax dark) ============ */
.stats-section {
    position: relative;
    padding: 140px 0;
    background-image: url('images/experiance-background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.78) 100%
    );
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.stats-section .section-title { color: var(--white); }
.stats-section .section-body { color: rgba(255, 255, 255, 0.85); max-width: 560px; }
.stats-section .section-eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.stats-cta { margin-top: 28px; }

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
    font-family: 'Mulish', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ============ Footer ============ */
.footer {
    background: var(--dark);
    color: var(--text-muted);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about {
    margin-top: 20px;
    font-size: 14.5px;
    max-width: 320px;
}

.footer-col h5 {
    color: var(--white);
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    padding: 6px 0;
    font-size: 14.5px;
}

.footer-col ul li a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; }

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ Scroll-to-top ============ */
.scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 6px 20px rgba(31, 111, 184, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

.scroll-top svg { width: 22px; height: 22px; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
    .nav-menu { gap: 22px; }
    .nav-menu a { font-size: 13.5px; }
    .nav-inner { padding: 18px 32px; }
}

@media (max-width: 1024px) {
    .about-grid,
    .stats-grid,
    .facility-row,
    .facility-row.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .facility-row.reverse .facility-image { order: 0; }

    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .room-card,
    .room-card.large { grid-column: span 1; aspect-ratio: 4 / 5; }

    .amenity-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .booking-form { flex-wrap: wrap; border-radius: 24px; }
    .booking-field { flex: 1 1 30%; border-right: none; }
    .booking-submit { width: 100%; margin-top: 8px; }

    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px 32px;
        gap: 0;
        transform: translateY(-200%);
        transition: transform 0.4s ease;
    }

    .nav-menu.open { transform: translateY(0); }
    .nav-menu a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .menu-toggle { display: flex; }
    .nav-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
    .nav-cta .btn-arrow { display: none; }
}

@media (max-width: 768px) {
    .nav-inner { padding: 14px 20px; }
    .container { padding: 0 20px; }

    .logo-img { height: 44px; }
    .footer .logo-img { height: 52px; }

    .about,
    .rooms,
    .facility,
    .amenities,
    .stats-section { padding: 72px 0; }

    .room-grid,
    .amenity-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .stats-row { gap: 24px; flex-wrap: wrap; }
    .stat-num { font-size: 36px; }

    .about-image img,
    .stats-image img,
    .facility-image img { height: 360px; }

    .about-badge { width: 100px; height: 100px; top: 14px; right: 14px; }
    .badge-icon { width: 44px; height: 44px; }

    .booking-form { padding: 10px; gap: 0; }
    .booking-field { flex: 1 1 100%; padding: 10px 16px; }

    .scroll-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }

    /* iOS / mobile: background-attachment: fixed jitters, fall back to scroll */
    .hero,
    .parallax-cta,
    .stats-section { background-attachment: scroll; }

    .play-btn { width: 76px; height: 76px; margin-bottom: 28px; }
    .play-btn svg { width: 28px; height: 28px; }
}
