/* ══════════════════════════════════════════════════
   HEMANDRA GRAND HOTEL · STYLESHEET
   Aesthetic: Dark luxury editorial with gold accents
══════════════════════════════════════════════════ */

:root {
    --gold:        #c9a84c;
    --gold-light:  #e8c96a;
    --gold-dark:   #a0832a;
    --black:       #080808;
    --deep:        #0e0d0b;
    --charcoal:    #181614;
    --mid:         #2a2520;
    --stone:       #4a4540;
    --cream:       #faf8f3;
    --offwhite:    #f2ede4;
    --text-muted:  #888070;
    --nav-h:       72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: #1a1714;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; overflow-wrap: anywhere; }
input, select, textarea, button { font-family: inherit; }

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { width: clamp(80px, 12vw, 110px); filter: brightness(0) invert(1); }
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
}
.nav-links li a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-links .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 9px 20px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s !important;
}
.nav-links .nav-cta:hover { background: var(--gold); color: #000 !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 60%, rgba(10,8,4,0.8) 100%);
}
#fireworks-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: clamp(100px, 14vw, 140px) clamp(20px, 5vw, 40px) clamp(60px, 8vw, 80px);
    max-width: 760px;
    width: 100%;
}
.hero-eyebrow {
    font-size: clamp(0.58rem, 2vw, 0.68rem);
    font-weight: 500;
    letter-spacing: clamp(2px, 1vw, 5px);
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.star { opacity: 0.7; }
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-sub {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-bottom: clamp(28px, 5vw, 40px);
}

/* Now Open badge */
.hero-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,168,76,0.4);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 40px;
    margin-bottom: clamp(28px, 5vw, 40px);
    font-size: clamp(0.72rem, 2.2vw, 0.82rem);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}
.open-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
    50% { box-shadow: 0 0 0 7px rgba(74,222,128,0.1); }
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 0.58rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: clamp(0.62rem, 2vw, 0.72rem);
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: clamp(13px, 3vw, 16px) clamp(24px, 5vw, 36px);
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}
.btn-primary.full { width: 100%; text-align: center; }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-size: clamp(0.62rem, 2vw, 0.72rem);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: clamp(13px, 3vw, 16px) clamp(24px, 5vw, 36px);
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.6rem);
    font-weight: 400;
    line-height: 1.1;
    color: #111;
    margin-bottom: 24px;
}
.section-title.light { color: #fff; }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light em { color: var(--gold-light); }

.gold-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
}
.gold-rule.centered { margin-left: auto; margin-right: auto; }

/* ── MARQUEE ── */
.marquee-strip {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}
.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-track span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    padding: 0 clamp(16px, 3vw, 28px);
    white-space: nowrap;
}
.marquee-track .dot { padding: 0; opacity: 0.5; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
    padding: clamp(70px, 10vw, 120px) clamp(20px, 6vw, 60px);
    max-width: 1280px;
    margin: 0 auto;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.about-img {
    width: 100%;
    height: clamp(400px, 60vw, 600px);
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }
.about-badge {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--gold);
    color: #000;
    width: clamp(80px, 14vw, 110px);
    height: clamp(80px, 14vw, 110px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.badge-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1;
}
.badge-txt {
    font-size: clamp(0.48rem, 1.2vw, 0.6rem);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}
.about-img-secondary {
    position: absolute;
    top: clamp(20px, 5vw, 40px);
    left: -clamp(16px, 4vw, 36px);
    width: clamp(120px, 28vw, 220px);
    border: 4px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.about-img-secondary img {
    width: 100%;
    height: clamp(140px, 24vw, 200px);
    object-fit: cover;
}

.about-body {
    font-size: clamp(0.92rem, 2.5vw, 1.05rem);
    line-height: 1.9;
    color: #555;
    font-weight: 300;
    margin-bottom: 20px;
}
.pillars { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    background: #fff;
}
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 0.9rem; font-weight: 600; color: #111; margin-bottom: 3px; }
.pillar p { font-size: 0.82rem; color: #888; margin: 0; }

/* ── BANQUET ── */
.banquet {
    background: var(--deep);
    padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 40px);
}
.banquet-header {
    max-width: 760px;
    margin: 0 auto clamp(44px, 7vw, 64px);
    text-align: center;
}
.banquet-sub {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.8;
}

.banquet-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.banquet-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: clamp(260px, 35vw, 380px);
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    cursor: default;
}
.banquet-card.large {
    grid-column: span 2;
    min-height: clamp(320px, 42vw, 480px);
}
.banquet-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    transition: background 0.4s;
}
.banquet-card:hover .banquet-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}
.banquet-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: clamp(20px, 4vw, 32px);
    color: #fff;
    transform: translateY(0);
}
.bc-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.banquet-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 1.9rem);
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}
.banquet-card-body p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 440px;
}
.bc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}
.banquet-card:hover .bc-meta { opacity: 1; transform: translateY(0); }
.bc-meta span {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gold-light);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 4px 10px;
    border-radius: 2px;
}

.banquet-cta-row {
    text-align: center;
    margin-top: clamp(36px, 6vw, 52px);
}

/* ── EXPERIENCE ── */
.experience {
    padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 40px);
    background: var(--offwhite);
}
.exp-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 28px);
    margin-top: 52px;
    text-align: left;
}
.exp-card {
    background: #fff;
    padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 32px);
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,0.15);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(201,168,76,0.4);
}
.exp-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.exp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}
.exp-card p {
    font-size: clamp(0.84rem, 2vw, 0.92rem);
    color: #777;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

/* ── GALLERY ── */
.gallery {
    background: var(--charcoal);
    padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 40px);
}
.gallery-header {
    max-width: 680px;
    margin: 0 auto clamp(44px, 7vw, 64px);
    text-align: center;
}
.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}
.g-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    transition: transform 0.6s ease;
    display: block;
}
.g-item.g-tall img { min-height: 460px; }
.g-item.g-wide img { min-height: 260px; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.4s;
}
.g-item:hover .g-overlay { background: rgba(0,0,0,0.45); }
.g-overlay span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover .g-overlay span { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.4rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(201,168,76,0.3); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── CONTACT BAR ── */
.contact-bar {
    background: var(--gold);
    padding: clamp(32px, 5vw, 44px) clamp(20px, 4vw, 40px);
}
.contact-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(16px, 3vw, 0px);
}
.cb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 clamp(24px, 4vw, 44px);
    flex: 1;
    min-width: 200px;
}
.cb-icon { font-size: 1.5rem; flex-shrink: 0; }
.cb-item strong {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
    margin-bottom: 4px;
}
.cb-item p, .cb-item a {
    font-size: clamp(0.8rem, 2vw, 0.92rem);
    font-weight: 500;
    color: #000;
    display: block;
}
.cb-item a:hover { text-decoration: underline; }
.cb-divider {
    width: 1px;
    height: 48px;
    background: rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* ── INQUIRY ── */
.inquiry {
    padding: clamp(70px, 10vw, 120px) clamp(20px, 4vw, 40px);
    background: var(--cream);
}
.inquiry-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
}
.inquiry-body {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #666;
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 32px;
}
.quick-contact { display: flex; flex-direction: column; gap: 14px; }
.qc-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 6px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.qc-btn.call { background: var(--gold); color: #000; }
.qc-btn.email { background: var(--charcoal); color: #fff; }
.qc-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.qc-icon { font-size: 1.5rem; flex-shrink: 0; }
.qc-btn small {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.65;
    margin-bottom: 3px;
}
.qc-btn strong {
    font-size: clamp(0.8rem, 2vw, 0.92rem);
    font-weight: 600;
    display: block;
    overflow-wrap: anywhere;
}

/* Form */
.inquiry-form-wrap {
    background: #fff;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: #222;
    background: #faf9f6;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success span {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 12px;
}
.form-success p { color: #666; font-weight: 300; line-height: 1.7; }

/* ── FOOTER ── */
.footer {
    background: var(--black);
    padding: clamp(56px, 8vw, 80px) clamp(20px, 4vw, 40px) 32px;
    text-align: center;
}
.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-logo {
    width: clamp(90px, 14vw, 120px);
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin: 0 auto 22px;
}
.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 400;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(255,255,255,0.2); }
.footer-address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-bottom: 28px;
}
.footer-url {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 12px 28px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s;
    animation: glowPulse 3s ease-in-out infinite;
}
.footer-url:hover { background: var(--gold); color: #000; }
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(201,168,76,0.2); }
    50% { box-shadow: 0 0 24px rgba(201,168,76,0.5); }
}
.footer-bottom {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .banquet-grid { grid-template-columns: 1fr 1fr; }
    .banquet-card.large { grid-column: span 2; }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .about-inner { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .about-img-wrap { max-height: 440px; }
    .about-img { height: 440px; }
    .about-badge { right: 16px; }
    .about-img-secondary { left: 0; width: 130px; }

    .inquiry-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .g-item.g-tall { grid-row: span 1; }
    .g-item.g-wide { grid-column: span 2; }

    .contact-bar-inner { flex-direction: column; gap: 0; }
    .cb-item { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.1); min-width: unset; width: 100%; }
    .cb-item:last-child { border-bottom: none; }
    .cb-divider { display: none; }
}

@media (max-width: 600px) {
    :root { --nav-h: 60px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--deep);
        flex-direction: column;
        padding: 20px 24px 32px;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.38s ease, opacity 0.38s ease;
        border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; }
    .nav-links li { width: 100%; }
    .nav-links li a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.8) !important;
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links .nav-cta { border: none; padding: 14px 0; }

    .hero-content { padding-top: 100px; }
    .countdown { gap: 4px; }
    .cu-sep { display: none; }
    .hero-ctas { gap: 12px; }
    .hero-ctas a { font-size: 0.62rem; padding: 12px 20px; }

    .banquet-grid { grid-template-columns: 1fr; }
    .banquet-card.large { grid-column: span 1; min-height: 320px; }

    .exp-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .g-item.g-wide { grid-column: span 1; }

    .form-row { grid-template-columns: 1fr; }
    .inquiry-form-wrap { padding: 24px 18px; }
}
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #000; /* Matches your luxury dark elements */
}

.map-container {
    width: 100%;
    line-height: 0;
}

.map-container iframe {
    filter: grayscale(20%) contrast(110%); /* Subtle premium touch to match luxury aesthetics */
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: none;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
}