/* ==========================================================================
   RESET & DESIGN TOKEN SYSTEM
   ========================================================================== */
:root {
    /* ── Brand Palette ── */
    --color-dark-green:   #1c352d;
    --color-forest-green: #243f36;
    --color-light-green:  #f2f5f3;
    --color-gold:         #c5a059;
    --color-gold-hover:   #b08a40;
    --color-charcoal:     #2a302e;
    --color-cream:        #fbfaf6;
    --color-cream-deep:   #f4f0e8;
    --color-white:        #ffffff;
    --color-text-muted:   #5e6662;
    --color-border:       rgba(197, 160, 89, 0.12);

    /* ── Typography ── */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* ── Motion ── */
    --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce:      cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --transition-smooth: all 0.6s var(--ease-out-expo);
    --transition-fast:   all 0.22s ease-in-out;

    /* ── Shadows ── */
    --shadow-soft:    0 8px 32px rgba(0, 0, 0, 0.04);
    --shadow-medium:  0 16px 48px rgba(28, 53, 45, 0.07);
    --shadow-deep:    0 24px 64px rgba(28, 53, 45, 0.10);

    /* ── Fluid Spacing ── */
    --container-px: clamp(20px, 5vw, 48px);
    --section-py:   clamp(72px, 10vw, 120px);
    --card-gap:     clamp(20px, 3vw, 40px);
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.72;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   LAYOUT PRIMITIVES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section-padding {
    padding: var(--section-py) 0;
}

.text-center { text-align: center; }
.text-white  { color: var(--color-white); }

/* ── Grid ── */
.grid {
    display: grid;
    gap: var(--card-gap);
}

@media (min-width: 640px) {
    .grid-2  { grid-template-columns: repeat(2, 1fr); }
    .grid-4  { grid-template-columns: repeat(2, 1fr); }
    .grid-6  { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4  { grid-template-columns: repeat(4, 1fr); }
    .grid-6  { grid-template-columns: repeat(6, 1fr); }
}

.align-center   { align-items: center; }
.bg-cream       { background-color: var(--color-cream); }
.bg-white       { background-color: var(--color-white); }
.bg-light-green { background-color: var(--color-light-green); }
.border-top     { border-top: 1px solid rgba(0, 0, 0, 0.05); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}
.btn-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.38);
}
.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark-green);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   TYPE TOKENS — defined ONCE, used everywhere
   ========================================================================== */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 700;
    color: var(--color-gold);          /* canonical gold — no overrides below */
    margin-bottom: 14px;
}

.tag-gold { color: var(--color-gold); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 500;
    line-height: 1.22;
    color: var(--color-dark-green);
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: clamp(0.92rem, 2vw, 1rem);
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto 52px auto;
    font-weight: 300;
    line-height: 1.75;
}

.lead-text {
    font-size: clamp(1.05rem, 2.5vw, 1.18rem);
    line-height: 1.65;
    color: var(--color-dark-green);
    margin-bottom: 18px;
    font-family: var(--font-heading);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px clamp(20px, 4vw, 40px);
    transition: padding 0.4s var(--ease-out-expo);
}

.site-header.scrolled .nav-container {
    padding-top: 9px;
    padding-bottom: 9px;
}

/* ── Logo ── */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-placeholder-bg {
    background-color: var(--color-white);
    padding: 5px 10px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.brand-logo-img {
    max-height: 46px;
    width: auto;
    display: block;
}

.logo-text-dark {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-dark-green);
}

.logo-text-gold {
    font-size: 0.58rem;
    letter-spacing: 5px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-top: -3px;
}

/* ── Nav Links ── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.22s ease;
    padding: 4px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-dark-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ── Mobile Toggle ── */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    padding: 0;
}

.hamburger-bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-dark-green);
    display: block;
    transition: var(--transition-fast);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.mobile-nav-toggle.open .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .hamburger-bar:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

@media (max-width: 1023px) {
    .mobile-nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(85%, 320px);
        height: 100dvh;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 36px;
        transition: right 0.55s var(--ease-out-expo);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.06);
        border-left: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-menu.open { right: 0; }

    .nav-menu ul {
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }

    .nav-link { font-size: 0.88rem; }

    .nav-cta-wrapper {
        margin-top: 28px;
        width: 100%;
    }

    .nav-cta-wrapper .btn { width: 100%; }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 34, 26, 0.32) 0%,
        rgba(11, 34, 26, 0.68) 100%
    );
}

.hero-content {
    color: var(--color-white);
    max-width: 860px;
    padding: 0 var(--container-px);
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 6px 18px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    border-radius: 50px;
    margin-bottom: 22px;
    background-color: rgba(255, 255, 255, 0.07);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

.hero-subtitle {
    font-size: clamp(0.76rem, 2.2vw, 1.05rem);
    font-weight: 300;
    letter-spacing: clamp(2px, 0.6vw, 4px);
    color: rgba(244, 241, 234, 0.92);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 479px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-buttons .btn { width: 100%; }
}

/* ── Scroll indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-white);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0%   { transform: translateY(-20px); }
    100% { transform: translateY(50px); }
}

/* ==========================================================================
   HIGHLIGHT CARDS
   ========================================================================== */
.highlight-card {
    background-color: var(--color-white);
    padding: clamp(30px, 4vw, 48px) clamp(20px, 3vw, 30px);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.025);
}

.highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border);
    box-shadow: var(--shadow-medium);
}

.highlight-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--color-light-green);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 22px auto;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--color-dark-green);
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 0.87rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-text-column p {
    margin-bottom: 18px;
    color: var(--color-text-muted);
    line-height: 1.78;
}

.about-cta { margin-top: 36px; }

.premium-image-frame {
    position: relative;
    padding: 14px;
    background-color: var(--color-cream);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 3px;
}

.premium-image-frame img {
    border-radius: 2px;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   WEDDINGS GALLERY
   ========================================================================== */
.wedding-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2.5vw, 26px);
}

@media (min-width: 600px) {
    .wedding-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .wedding-grid { grid-template-columns: repeat(4, 1fr); }
}

.wedding-grid-item {
    position: relative;
    height: clamp(280px, 42vw, 440px);
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.wedding-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s var(--ease-out-expo);
}

.wedding-grid-item:hover img {
    transform: scale(1.045);
}

/* ==========================================================================
   DINING SECTION
   ========================================================================== */
.dining-intro-block {
    margin-bottom: 56px;
}

.dining-sub-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--color-dark-green);
    margin-bottom: 16px;
}

.dining-paragraph {
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.78;
}

.dining-amenities {
    list-style: none;
    display: grid;
    gap: 13px;
}

.dining-amenities li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--color-dark-green);
    font-size: 0.91rem;
}

.dining-amenities li svg {
    color: var(--color-gold);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.food-display-container { padding-left: 0; }

@media (min-width: 1024px) {
    .food-display-container { padding-left: 32px; }
}

.food-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2vw, 18px);
}

.food-showcase-card {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.food-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s var(--ease-out-expo);
}

.food-showcase-card img:hover {
    transform: scale(1.06);
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
    display: grid;
    gap: clamp(18px, 2.5vw, 30px);
    grid-template-columns: 1fr;
}

@media (min-width: 680px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background-color: var(--color-cream);
    padding: clamp(24px, 3.5vw, 38px);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(197, 160, 89, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-border);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.avatar-fallback {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.18);
    flex-shrink: 0;
}

.reviewer-meta h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-green);
    line-height: 1.3;
}

.reviewer-meta span {
    font-size: 0.71rem;
    color: var(--color-text-muted);
}

.star-rating {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.fill-star {
    fill: currentColor;
    width: 13px;
    height: 13px;
}

.review-text {
    font-size: 0.91rem;
    color: var(--color-charcoal);
    font-style: italic;
    line-height: 1.72;
    margin-bottom: 22px;
    flex-grow: 1;
}

.google-logo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
    font-size: 0.71rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FACILITIES SECTION
   ========================================================================== */
.facility-card {
    background-color: var(--color-white);
    padding: clamp(20px, 3vw, 30px) clamp(14px, 2vw, 20px);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.facility-card:hover {
    border-color: var(--color-border);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.facility-icon {
    color: var(--color-gold);
    margin-bottom: 13px;
}

.facility-icon svg {
    width: 26px;
    height: 26px;
}

.facility-card h4 {
    font-size: 0.77rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark-green);
    line-height: 1.4;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    background-color: var(--color-cream);
    /* Top: 40px, Right: fluid, Bottom: fluid, Left: fluid */
    padding: 30px var(--container-px) var(--section-py) var(--container-px);
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: clamp(40px, 6vw, 64px);
}

.location-text {
    flex: 1;
    min-width: min(300px, 100%);
    max-width: 460px;
}

/* NOTE: .section-tag colour is defined globally above — not overridden here */

.location-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-family: var(--font-heading);
    color: var(--color-dark-green);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-desc {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.94rem;
    margin-bottom: 34px;
}

.location-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-features li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    color: var(--color-charcoal);
    font-size: 0.91rem;
    line-height: 1.6;
}

.location-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px;
    height: 1px;
    background-color: var(--color-gold);
}

.location-features li a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.22s ease;
}

.location-features li a:hover { opacity: 0.72; }

.location-map {
    flex: 1;
    min-width: min(300px, 100%);
    height: 460px;
    border-radius: 10px;
    overflow: clip;   /* was: overflow: hidden — that blocked touch events */
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    touch-action: pan-x pan-y;
}

@media (max-width: 860px) {
    .location-container { flex-direction: column; }
    .location-text      { max-width: 100%; }
    .location-map {
        width: 100%;
        min-width: 100%;
        height: 450px;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-white);
    padding: var(--section-py) var(--container-px);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-lux-grid {
    display: grid;
    gap: clamp(40px, 6vw, 80px);
    grid-template-columns: 1fr;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-lux-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Left panel */
.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.95rem, 4.5vw, 3.1rem);
    color: var(--color-dark-green);
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 400;
}

.contact-lux-desc {
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.contact-direct-cards {
    display: grid;
    gap: 14px;
}

.direct-card-link {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: var(--color-cream);
    padding: clamp(16px, 2.5vw, 24px) clamp(18px, 2.5vw, 26px);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.07);
}

.direct-card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.22);
    box-shadow: 0 12px 28px rgba(28, 53, 45, 0.06);
}

.direct-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
}

.direct-card-link:hover .direct-icon-box {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.direct-card-content h4 {
    font-size: 0.98rem;
    color: var(--color-dark-green);
    margin-bottom: 3px;
    font-weight: 600;
}

.direct-card-content p {
    font-size: 0.84rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Right panel */
.contact-visual-panel { height: 100%; }

.contact-illustration-card {
    background-color: var(--color-cream);
    padding: clamp(32px, 5vw, 54px) clamp(26px, 4vw, 46px);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.07);
    height: 100%;
}

.illustration-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 12px;
    display: block;
}

.contact-illustration-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    color: var(--color-dark-green);
    margin-bottom: 13px;
    font-weight: 400;
}

.contact-illustration-card > p {
    font-size: 0.94rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 26px;
}

.illustrative-details {
    display: grid;
    gap: 15px;
    margin-bottom: 34px;
    border-top: 1px solid rgba(197, 160, 89, 0.14);
    padding-top: 22px;
}

.ill-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-charcoal);
    font-weight: 500;
    word-break: break-word;
}

.ill-item svg {
    color: var(--color-gold);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-start-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-start-chat:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(197, 160, 89, 0.22);
}

/* ==========================================================================
   RATING BADGES
   ========================================================================== */
.rating-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.rating-badge {
    text-align: center;
    padding: 1.2rem 1.6rem;
    background: var(--color-cream);
    border-radius: 14px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: box-shadow 0.3s, transform 0.3s var(--ease-bounce);
    min-width: 155px;
    text-decoration: none;
    display: block;
}

.rating-badge:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.badge-platform {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.45rem;
    font-weight: 500;
}

.badge-score-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-dark-green);
    line-height: 1;
}

.badge-stars {
    color: var(--color-gold);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    margin: 0.2rem 0;
    white-space: nowrap;
}

.badge-count {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    --whatsapp: #25D366;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.13);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: waPulse 2.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1.4); opacity: 0; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: clamp(60px, 8vw, 96px) 0 26px;
}

.footer-top-grid {
    display: grid;
    gap: clamp(28px, 4vw, 48px);
    grid-template-columns: 1fr;
    margin-bottom: clamp(48px, 7vw, 76px);
}

@media (min-width: 640px) {
    .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-top-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand-column .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.footer-description {
    font-size: 0.82rem;
    color: rgba(244, 241, 234, 0.52);
    line-height: 1.75;
}

.footer-links-column h4,
.footer-social-column h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 18px;
    letter-spacing: 1.5px;
}

.footer-links-column ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links-column ul a {
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.footer-links-column ul a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.social-icon-row {
    display: flex;
    gap: 10px;
}

.social-icon-row a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icon-row a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-bottom-bar {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 26px;
    gap: 14px;
}

@media (min-width: 640px) {
    .footer-bottom-bar { flex-direction: row; }
}

.footer-bottom-bar p {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.32);
}

.back-to-top-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.back-to-top-btn:hover { color: var(--color-gold); }

/* ==========================================================================
   SCROLL REVEAL & ANIMATION UTILITIES
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity  1s var(--ease-out-expo),
        transform 1s var(--ease-out-expo);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: scale(0.99);
    animation: revealTextAnimation 1.2s var(--ease-out-expo) forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(13px);
    animation: fadeUpAnimation 1s var(--ease-out-expo) 0.2s forwards;
}

.fade-up-delayed {
    opacity: 0;
    transform: translateY(13px);
    animation: fadeUpAnimation 1s var(--ease-out-expo) 0.4s forwards;
}

.fade-up-delayed-more {
    opacity: 0;
    transform: translateY(13px);
    animation: fadeUpAnimation 1s var(--ease-out-expo) 0.6s forwards;
}

@keyframes revealTextAnimation {
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUpAnimation {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Lazy-load blur-up transition ── */
.lazy-image {
    opacity: 0;
    filter: blur(8px);
    transition:
        opacity 0.9s var(--ease-out-expo),
        filter  0.9s var(--ease-out-expo);
}

.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
    background-color: var(--color-dark-green);
    padding: clamp(48px, 7vw, 72px) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative line behind the numbers */
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(197, 160, 89, 0.04) 0px,
        rgba(197, 160, 89, 0.04) 1px,
        transparent 1px,
        transparent 120px
    );
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 7vw, 96px);
    flex-wrap: wrap;
    position: relative;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-plus {
    font-size: 0.7em;
    vertical-align: super;
    line-height: 0;
    color: var(--color-gold);
    opacity: 0.8;
}

.stat-label {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    gap: 5px;
    line-height: 1.5;
}

.stat-since {
    font-size: 0.65rem;
    color: rgba(197, 160, 89, 0.65);
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

@media (max-width: 540px) {
    .stat-divider { display: none; }
    .stats-grid   { gap: 36px 52px; }
}


/* ==========================================================================
   GOOGLE MAPS MOBILE RESPONSIVENESS & INTERACTION FIX
   ========================================================================== */

/* 1. Ensure the location section handles layout cleanly on mobile */
#location {
    position: relative;
    width: 100%;
    display: block;
}

/* 2. Make the map iframe completely responsive and force touch interactions back on */
#location iframe {
    width: 100% !important;
    height: 380px !important; /* Gives it an optimal, usable height on mobile screens */
    max-height: 50vh;        /* Prevents it from consuming the entire screen height */
    border: 0;
    
    /* CRITICAL: Overrides any global styles or scripts blocking clicks/drags */
    pointer-events: auto !important; 
}

/* 3. Neutralize any invisible styling overlays or pseudo-elements blocking touches */
#location::after, 
#location::before,
#location .map-container::after,
#location .map-container::before,
.map-overlay {
    pointer-events: none !important; /* Allows touch inputs to pass straight through to the map */
}

/* 4. Visual integrity for larger laptop/desktop screens */
@media (min-width: 992px) {
    #location iframe {
        height: 500px !important; /* Restores a premium, larger size for big screens */
        max-height: none !important;
    }
}

/* ==========================================================================
   MENU PAGE — CSS ADDITIONS
   Append this entire block to the bottom of css/style.css
   All class names are prefixed with .menu- to avoid collisions.
   ========================================================================== */


/* ==========================================================================
   MENU HERO
   ========================================================================== */
.menu-hero {
    background-color: var(--color-cream-deep);
    padding: clamp(118px, 16vw, 160px) 0 clamp(52px, 7vw, 72px);
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.menu-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 500;
    color: var(--color-dark-green);
    line-height: 1.14;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.menu-hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.02rem);
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.78;
    font-weight: 300;
}

.menu-hero-divider {
    width: 42px;
    height: 1.5px;
    background: var(--color-gold);
    margin: 0 auto;
    opacity: 0.55;
}


/* ==========================================================================
   TAB SWITCHER
   ========================================================================== */
.menu-tabs-wrapper {
    background-color: var(--color-cream-deep);
    padding: clamp(10px, 1.8vw, 16px) 0 clamp(8px, 1.5vw, 12px);
    position: sticky;
    top: 74px;        /* Clears the fixed header */
    z-index: 100;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.menu-tabs-wrapper .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.menu-tab-group {
    display: inline-flex;
    background-color: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 4px;
    padding: 4px;
    gap: 4px;
    box-shadow: 0 2px 12px rgba(28, 53, 45, 0.04);
}

.menu-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px clamp(12px, 2.5vw, 20px);
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.71rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.menu-tab-btn svg {             /* Lucide icon inside button */
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke-width: 1.8;
}

.menu-tab-btn:hover {
    border-color: rgba(197, 160, 89, 0.35);
    color: var(--color-dark-green);
}

.menu-tab-btn.active {
    background-color: var(--color-forest-green);
    color: var(--color-white);
    border-color: var(--color-forest-green);
    box-shadow: 0 4px 18px rgba(36, 63, 54, 0.22);
}

.menu-tab-hint {
    font-size: 0.68rem;
    color: rgba(94, 102, 98, 0.55);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
}

@media (max-width: 479px) {
    .menu-tab-hint { display: none; }
}


/* ==========================================================================
   MENU GRID SECTION
   ========================================================================== */
.menu-grid-section {
    background-color: var(--color-cream);
    padding: clamp(52px, 7vw, 80px) 0 clamp(72px, 10vw, 120px);
}


/* ==========================================================================
   PANEL HEADER
   ========================================================================== */
.menu-panel-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.menu-panel-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 500;
    color: var(--color-dark-green);
    line-height: 1.2;
    margin-bottom: 12px;
}

.menu-panel-desc {
    font-size: clamp(0.86rem, 1.8vw, 0.96rem);
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.72;
}


/* ==========================================================================
   PANEL VISIBILITY & TRANSITIONS
   A 3-state machine: hidden → fading-out → active
   Uses explicit display toggling via JS + CSS opacity/transform transitions.
   ========================================================================== */
.menu-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity   0.38s var(--ease-out-expo),
        transform 0.38s var(--ease-out-expo);
}

.menu-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-panel.fading-out {
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity   0.22s ease-in,
        transform 0.22s ease-in;
}


/* ==========================================================================
   MENU IMAGE GRID
   ========================================================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 2.5vw, 28px);
}


/* ==========================================================================
   MENU CARD
   ========================================================================== */
.menu-card {
    background-color: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 8px;
    padding: 10px 10px 0;
    cursor: pointer;
    transition:
        transform  0.36s var(--ease-out-expo),
        box-shadow 0.36s var(--ease-out-expo),
        border-color 0.22s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 20px 52px rgba(28, 53, 45, 0.1);
    border-color: rgba(197, 160, 89, 0.42);
}

/* Image wrapper — enforces a consistent card height */
.menu-card-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;       /* Portrait ratio — ideal for menu pages */
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--color-cream-deep);
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s var(--ease-out-expo);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.04);
}

/* Card footer strip */
.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 10px;
}

.menu-page-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.menu-zoom-hint {
    color: var(--color-gold);
    opacity: 0.55;
    display: flex;
    align-items: center;
    transition: opacity 0.22s ease;
}

.menu-zoom-hint svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.8;
}

.menu-card:hover .menu-zoom-hint {
    opacity: 1;
}

/* Lazy image blur-up (reuses existing .lazy-image keyframe from main CSS) */
.menu-card-img.lazy-image {
    opacity: 0;
    filter: blur(6px);
}

.menu-card-img.lazy-image.loaded {
    opacity: 1;
    filter: blur(0);
    transition:
        opacity 0.7s var(--ease-out-expo),
        filter  0.7s var(--ease-out-expo);
}


/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.menu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 53, 45, 0.95);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity    0.35s ease,
        visibility 0.35s ease;
    padding: 20px;
    /* Prevent accidental text selection while swiping */
    user-select: none;
    -webkit-user-select: none;
}

.menu-lightbox.open {
    opacity: 1;
    visibility: visible;
}

/* Image wrapper — keeps the image centered and properly constrained */
.menu-lightbox-inner {
    position: relative;
    max-width: min(92vw, 640px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lightbox-img {
    max-width: 100%;
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    transform: scale(0.94);
    transition: transform 0.38s var(--ease-out-expo);
}

.menu-lightbox.open .menu-lightbox-img {
    transform: scale(1);
}

/* Close button */
.menu-lightbox-close {
    position: fixed;
    top: clamp(14px, 3vw, 24px);
    right: clamp(14px, 3vw, 24px);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition:
        background     0.22s ease,
        border-color   0.22s ease,
        transform      0.3s var(--ease-bounce);
    z-index: 10001;
}

.menu-lightbox-close:hover {
    background: rgba(197, 160, 89, 0.28);
    border-color: var(--color-gold);
    transform: rotate(90deg);
}

.menu-lightbox-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
}

/* Prev / Next arrows */
.menu-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.72);
    transition:
        background   0.22s ease,
        color        0.22s ease,
        border-color 0.22s ease,
        transform    0.22s ease;
    z-index: 10001;
}

.menu-lightbox-nav:hover {
    background: rgba(197, 160, 89, 0.22);
    color: var(--color-white);
    border-color: rgba(197, 160, 89, 0.45);
    /* Keep the vertical centering transform — don't override it */
    transform: translateY(calc(-50% - 2px));
}

.menu-lightbox-prev { left:  clamp(10px, 2vw, 20px); }
.menu-lightbox-next { right: clamp(10px, 2vw, 20px); }

.menu-lightbox-nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Page counter */
.menu-lightbox-counter {
    position: fixed;
    bottom: clamp(18px, 3vw, 28px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    white-space: nowrap;
    font-family: var(--font-body);
}


/* ==========================================================================
   RESPONSIVE TWEAKS
   ========================================================================== */

/* On very small phones, widen cards a bit by reducing min column */
@media (max-width: 360px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Force 2-column grid on tablets (640–1023px) for a balanced look */
@media (min-width: 640px) and (max-width: 1023px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Wider aspect ratio on large screens so cards don't get too tall */
@media (min-width: 1200px) {
    .menu-card-img-wrap {
        aspect-ratio: 3 / 4;
    }
}

/* Sticky tab bar adjusts for smaller header on scrolled state */
@media (max-width: 1023px) {
    .menu-tabs-wrapper {
        top: 66px;
    }
}