/*
 * BenTark Hotel — custom.css
 *
 * All luxury styling extracted from the Lovable design.
 * Enqueued via functions.php → bentark_enqueue_assets().
 * This is the ONLY file you need to touch for visual changes.
 *
 * ┌───────────────────────────────────────────────────────────────────┐
 * │  TABLE OF CONTENTS                                                │
 * │  01. CSS Custom Properties (Brand Tokens)                        │
 * │  02. Base Reset & Global Typography                              │
 * │  03. Layout Utilities                                            │
 * │  04. Buttons                                                     │
 * │  05. Navigation (Header)                                         │
 * │  06. Hero Section                                                │
 * │  07. Stats Strip                                                 │
 * │  08. About / Story Section                                       │
 * │  09. Amenities Grid                                              │
 * │  10. Rooms Cards                                                 │
 * │  11. Dining Section                                              │
 * │  12. Booking CTA Banner                                         │
 * │  13. Contact Page                                                │
 * │  14. Footer                                                      │
 * │  15. WordPress-specific & Elementor Overrides                   │
 * │  16. Responsive / Media Queries                                  │
 * └───────────────────────────────────────────────────────────────────┘
 */

/* ════════════════════════════════════════════════════════
   01. CSS CUSTOM PROPERTIES — Brand Tokens
       Change these variables to update the entire colour
       scheme across the whole site.
   ════════════════════════════════════════════════════════ */

:root {
    /* ── Core Brand Palette ── */
    --gold:         #B8960C;   /* Primary gold accent */
    --gold-hover:   #9A7D0A;   /* Darker gold on hover */
    --gold-light:   #F5EDD0;   /* Pale gold for backgrounds */
    --gold-dim:     rgba(184, 150, 12, 0.18);  /* Subtle border tint */
    --gold-glow:    rgba(184, 150, 12, 0.08);  /* Hero glow */

    /* ── Dark Palette ── */
    --dark:         #1A1A1A;   /* Primary dark */
    --dark-mid:     #111111;   /* Deeper dark (hero gradient) */
    --dark-soft:    #222222;   /* Strip backgrounds */
    --dark-card:    #1F1F1F;   /* Amenity card background */

    /* ── Neutral Palette ── */
    --off-white:    #F7F7F7;   /* Body background */
    --cream:        #FAFAF7;   /* Subtle section variant */
    --white:        #FFFFFF;
    --muted:        #888888;   /* Secondary text */
    --text-body:    #444444;   /* Body copy */

    /* ── Typography ── */
    --serif:        'Playfair Display', Georgia, serif;
    --sans:         'Montserrat', Arial, sans-serif;

    /* ── Motion ── */
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --transition:   all 0.32s var(--ease);

    /* ── Layout ── */
    --nav-height:   72px;
    --container:    1200px;
    --section-pad:  96px;
}

/* ════════════════════════════════════════════════════════
   02. BASE RESET & GLOBAL TYPOGRAPHY
   ════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* ── Scrollbar styling ── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--dark); }
::-webkit-scrollbar-thumb        { background: var(--gold); border-radius: 3px; }

/* ── Text selection ── */
::selection {
    background: var(--gold);
    color: #fff;
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

h1 { font-size: clamp(38px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 18px; }
h5 { font-size: 14px; font-family: var(--sans); }
h6 { font-size: 12px; font-family: var(--sans); }

p {
    margin-bottom: 1em;
    line-height: 1.8;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--gold-hover); }

/* ── Eyebrow label ── */
.eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ── Images ── */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ════════════════════════════════════════════════════════
   03. LAYOUT UTILITIES
   ════════════════════════════════════════════════════════ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: var(--section-pad) 0; }

/* Dark section */
.section--dark {
    background: var(--dark);
    color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p   { color: rgba(255, 255, 255, 0.65); }
.section--dark .eyebrow { color: var(--gold); }
.section--dark .section-header p { color: rgba(255, 255, 255, 0.55); }

/* Midnight section */
.section--mid {
    background: var(--dark-mid);
    color: #fff;
}
.section--mid h2,
.section--mid h3   { color: #fff; }
.section--mid .eyebrow { color: var(--gold); }

/* Cream section */
.section--cream { background: var(--cream); }

/* Section header (centred) */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header p {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 15px;
}

/* Gold ornamental divider */
.gold-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 120px;
    margin: 0 auto 48px;
}
.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}
.gold-divider__gem {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   04. BUTTONS
   ════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 38px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    background: none;
}

/* Arrow icon in buttons */
.btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.btn:hover svg { transform: translateX(4px); }

/* Gold filled */
.btn--gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn--gold:hover {
    background: transparent;
    color: var(--gold);
}

/* White outline */
.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Gold outline */
.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

/* Dark filled */
.btn--dark {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}
.btn--dark:hover {
    background: transparent;
    color: var(--dark);
}

/* ════════════════════════════════════════════════════════
   05. NAVIGATION — Fixed luxury header
   ════════════════════════════════════════════════════════ */

#site-header,
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 12, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ── Logo ── */
.nav-logo-wrap { flex-shrink: 0; }

.nav-logo,
.custom-logo-link {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo span      { color: var(--gold); }
.nav-logo-sub       { font-size: 9px; font-family: var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* Custom logo image */
.custom-logo {
    max-height: 52px;
    width: auto;
}

/* ── Primary menu ── */
.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links a,
.nav-links > li > a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
    position: relative;
    display: block;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--gold);
}
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after { transform: scaleX(1); }

/* ── Quick phone in header ── */
.nav-contact-quick { display: none; } /* Hidden on small screens */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}
.nav-phone:hover { color: var(--gold); }

/* ── Hamburger ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav overlay ── */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(14px);
    padding: 24px 32px 32px;
    border-top: 1px solid var(--gold-dim);
    z-index: 999;
}
.nav-mobile.open { display: block; }
.nav-mobile ul   { list-style: none; padding: 0; margin: 0; }
.nav-mobile li   { border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn   { margin-top: 20px; width: 100%; justify-content: center; }

/* Offset content below fixed header */
.site-content {
    padding-top: var(--nav-height);
}

/* Hero has its own internal padding-top, so remove it */
.hero-section + .site-content-inner,
.front-page .site-content { padding-top: 0; }

/* ════════════════════════════════════════════════════════
   06. HERO SECTION
   ════════════════════════════════════════════════════════ */

.hero-section,
#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
    margin-top: calc(-1 * var(--nav-height));
    padding-top: var(--nav-height);
}

/* Background gradient layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, var(--gold-glow) 0%, transparent 70%),
        linear-gradient(160deg, #0e0e0e 0%, #1a1508 45%, #0e0e0e 100%);
}

/* Geometric diamond pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(184,150,12,0.03) 49px, rgba(184,150,12,0.03) 50px),
        repeating-linear-gradient(-45deg, transparent, transparent 49px, rgba(184,150,12,0.03) 49px, rgba(184,150,12,0.03) 50px);
}

/* Grain texture overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Ornamental corner borders */
.hero-frame {
    position: absolute;
    inset: 40px;
    pointer-events: none;
}
.hero-frame::before,
.hero-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: rgba(184, 150, 12, 0.35);
    border-style: solid;
}
.hero-frame::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hero-frame::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* Bottom gradient fade into next section */
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--dark-mid));
    pointer-events: none;
}

/* Hero text content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 900px;
    animation: heroReveal 1.2s var(--ease) both;
}

.hero-content--short {
    min-height: 0;
    padding: 80px 24px 40px;
}

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

/* Hero eyebrow with flanking lines */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    animation: heroReveal 1.2s 0.15s var(--ease) both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 20px;
    animation: heroReveal 1.2s 0.3s var(--ease) both;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    animation: heroReveal 1.2s 0.45s var(--ease) both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroReveal 1.2s 0.6s var(--ease) both;
}

/* Animated scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: heroReveal 1.2s 0.9s var(--ease) both;
}
.hero-scroll span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* Archive / page hero (shorter) */
.page-hero--archive {
    min-height: 40vh;
    padding: 48px 0;
}

/* ════════════════════════════════════════════════════════
   07. STATS STRIP
   ════════════════════════════════════════════════════════ */

.hero-strip {
    background: var(--dark-soft);
    border-top:    1px solid rgba(184, 150, 12, 0.15);
    border-bottom: 1px solid rgba(184, 150, 12, 0.15);
}
.hero-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.strip-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(184, 150, 12, 0.12);
}
.strip-item:last-child { border-right: none; }
.strip-item__num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.strip-item__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ════════════════════════════════════════════════════════
   08. ABOUT / STORY SECTION
   ════════════════════════════════════════════════════════ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap { position: relative; }

.about-image-box {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(155deg, #2a1e08 0%, #1a1a1a 70%);
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,150,12,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.about-image-placeholder {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 24px;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; }

/* Floating quote card */
.about-quote {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: var(--dark);
    border: 1px solid var(--gold-dim);
    padding: 24px 28px;
    max-width: 240px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.about-quote blockquote {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}
.about-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.about-text h2     { margin-bottom: 8px; }
.about-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 28px;
}
.about-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 18px;
}

/* ════════════════════════════════════════════════════════
   09. AMENITIES GRID
   ════════════════════════════════════════════════════════ */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;                                /* gap IS the gold line */
    background: rgba(184, 150, 12, 0.22);   /* border uses bg colour trick */
    border: 1px solid rgba(184, 150, 12, 0.22);
}
.amenity-card {
    background: var(--dark-card);
    padding: 48px 28px;
    text-align: center;
    transition: background 0.25s ease;
    position: relative;
    overflow: hidden;
}
.amenity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,150,12,0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.amenity-card:hover            { background: #242424; }
.amenity-card:hover::before    { opacity: 1; }

.amenity-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.amenity-icon svg { width: 100%; height: 100%; }

.amenity-card h4 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.amenity-card p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════════
   10. ROOM CARDS
   ════════════════════════════════════════════════════════ */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--white);
    border: 1px solid transparent;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(184, 150, 12, 0.12);
}
.room-card__img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.room-card__bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease);
    object-fit: cover;
}
.room-card:hover .room-card__bg { transform: scale(1.05); }

.room-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
}
.room-card__body {
    padding: 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card__name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 6px;
}
.room-card__meta {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.room-card__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    flex: 1;
    padding: 0;
}
.room-card__features li {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-body);
    background: var(--off-white);
    padding: 4px 10px;
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.room-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.room-card__price {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}
.room-card__price strong { font-size: 20px; }
.room-card__price span  { font-size: 12px; font-weight: 400; color: var(--muted); display: block; }

/* ════════════════════════════════════════════════════════
   11. DINING SECTION
   ════════════════════════════════════════════════════════ */

.dining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.dining-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(155deg, #1e1405 0%, #0e0b02 100%);
    border: 1px solid rgba(184, 150, 12, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dining-img img { width: 100%; height: 100%; object-fit: cover; }

.dining-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
}
.dining-content h2    { color: #fff; margin-bottom: 8px; }
.dining-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
}
.dining-content p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 16px;
}
.cuisine-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}
.cuisine-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 16px;
    border: 1px solid rgba(184, 150, 12, 0.4);
}
.dining-hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.dining-hour {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
}
.dining-hour__meal {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.dining-hour__time {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
}

/* ════════════════════════════════════════════════════════
   12. BOOKING CTA BANNER
   ════════════════════════════════════════════════════════ */

.cta-banner {
    background: var(--dark);
    border-top:    1px solid rgba(184, 150, 12, 0.2);
    border-bottom: 1px solid rgba(184, 150, 12, 0.2);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-banner h2  { color: #fff; margin-bottom: 12px; }
.cta-banner p   { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 36px; }

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Payment badges */
.payment-icons,
.footer-payment-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.footer-payment-row { padding: 20px 0; }
.footer-payment-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-right: 8px;
}
.payment-icon {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    user-select: none;
}
.payment-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ════════════════════════════════════════════════════════
   13. CONTACT PAGE
   ════════════════════════════════════════════════════════ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.contact-tagline {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-detail:first-of-type { border-top: 1px solid rgba(0,0,0,0.07); }
.contact-detail__icon {
    width: 40px;
    height: 40px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-detail__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.contact-detail__value {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
}
.contact-detail__value a { color: var(--text-body); }
.contact-detail__value a:hover { color: var(--gold); }

.contact-hours {
    margin-top: 28px;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.07);
    padding: 24px;
}
.contact-hours h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-row:last-child    { border-bottom: none; }
.hours-row__dept         { font-weight: 500; color: var(--dark); }
.hours-row__time         { color: var(--muted); }

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }

label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
input,
select,
textarea {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.12);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
input:focus,
select:focus,
textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; }

/* ════════════════════════════════════════════════════════
   14. FOOTER
   ════════════════════════════════════════════════════════ */

#site-footer,
.site-footer {
    background: #0B0B0B;
    border-top: 1px solid rgba(184, 150, 12, 0.15);
    padding: 72px 0 0;
}
.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.06);
}

/* Brand column */
.footer-brand .logo,
.footer-brand .custom-logo-link {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p,
.footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 24px;
}
.footer-brand .custom-logo { max-height: 48px; width: auto; margin-bottom: 16px; }

/* Social links */
.footer-social {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}
.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.social-link svg { width: 14px; height: 14px; }

/* Footer columns */
.footer-col-title,
.footer-col h5 {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184,150,12,0.25);
    margin-bottom: 20px;
}
.footer-col ul,
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-col li,
.footer-widget li { margin-bottom: 10px; }
.footer-col a,
.footer-widget a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover,
.footer-widget a:hover { color: var(--gold); }
.footer-col p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-col address {
    font-style: normal;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.footer-col address svg,
.footer-phone svg,
.footer-email svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
}
.footer-phone,
.footer-email {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-phone a,
.footer-email a {
    color: rgba(255,255,255,0.5);
}
.footer-phone a:hover,
.footer-email a:hover { color: var(--gold); }

/* Footer bar */
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright,
.footer-bar p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.footer-legal-links {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 11px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════
   15. WORDPRESS-SPECIFIC & ELEMENTOR OVERRIDES
   ════════════════════════════════════════════════════════ */

/* Elementor: remove default section padding that fights our hero */
.elementor-section.elementor-section-full_width { padding: 0; }

/* Elementor full-width template — remove WP content wrapper padding */
body.elementor-page .site-content {
    padding-top: var(--nav-height);
}
body.elementor-page #primary { margin: 0; }

/* WordPress admin bar compensation */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar #site-header { top: 46px; }
}

/* Archive posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Pagination */
.posts-pagination {
    display: flex;
    justify-content: center;
}
.posts-pagination .nav-links { display: flex; gap: 8px; }
.posts-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.12);
    text-decoration: none;
    transition: var(--transition);
}
.posts-pagination .page-numbers.current,
.posts-pagination .page-numbers:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* No-results box */
.no-results-wrap {
    display: flex;
    justify-content: center;
    padding: 64px 0;
}
.no-results {
    max-width: 540px;
    text-align: center;
}
.no-results__heading { margin-bottom: 16px; }

/* ════════════════════════════════════════════════════════
   16. RESPONSIVE / MEDIA QUERIES
   ════════════════════════════════════════════════════════ */

@media (min-width: 1200px) {
    .nav-contact-quick { display: flex; }
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
    /* Hide primary nav and show hamburger */
    .nav-links,
    .nav-cta,
    .nav-contact-quick { display: none; }
    .nav-toggle { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-quote { position: static; max-width: 100%; margin-top: 16px; right: auto; bottom: auto; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .dining-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-strip-inner { grid-template-columns: 1fr; }
    .strip-item { border-right: none; border-bottom: 1px solid rgba(184,150,12,0.12); }
    .strip-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }
    .container { padding: 0 20px; }
    .section-header { margin-bottom: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-frame { inset: 16px; }
    .hero-content { padding: 0 16px; }
}

@media (max-width: 540px) {
    :root { --section-pad: 48px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: 1fr; }
    .dining-hours { grid-template-columns: 1fr; }
    .hero-frame { display: none; }
    .btn { padding: 12px 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════
   COMBINED THEME ADDITIONS — Page-specific styles from BHBG theme
   ════════════════════════════════════════════════════════ */

/* ── Additional CSS Variables (legacy compat) ── */
:root {
    --hotel-gold:      #B8960C;
    --hotel-bronze:    #8B6914;
    --hotel-burgundy:  #722F37;
    --hotel-cream:     #FAF7F2;
    --hotel-charcoal:  #2C2C2C;
    --hotel-warm-white:#FFFEF9;
    --hotel-dark:      #1A1A1A;
    --hotel-primary:   #2C2C2C;
    --hotel-muted:     #666666;
    --font-display:    'Playfair Display', serif;
    --font-body:       'Montserrat', 'Lato', sans-serif;
}

/* ── Gallery Page ── */
.gallery-filters {
    display: flex; gap: 10px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.gallery-filter {
    padding: 8px 20px; border-radius: 50px;
    border: 2px solid #ddd; background: transparent;
    color: var(--dark); font-size: 14px;
    cursor: pointer; transition: var(--transition);
}
.gallery-filter.active, .gallery-filter:hover {
    background: var(--dark); border-color: var(--dark); color: white;
}
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.gallery-item {
    position: relative; border-radius: 10px;
    overflow: hidden; cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white; padding: 30px 15px 15px;
    transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { color: white; font-size: 1rem; margin-bottom: 3px; }
.gallery-caption p  { font-size: 0.85rem; opacity: 0.8; }

/* ── Dining / Menu Tabs ── */
.menu-tabs {
    display: flex; gap: 10px; margin-bottom: 30px;
    flex-wrap: wrap; justify-content: center;
}
.menu-tab {
    padding: 10px 24px; border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.7);
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: var(--transition);
}
.menu-tab.active, .menu-tab:hover {
    background: var(--gold); border-color: var(--gold); color: white;
}
.menu-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
    max-width: 1000px; margin: 0 auto;
}
.menu-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 20px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px; transition: background 0.3s ease;
}
.menu-item:hover { background: rgba(255,255,255,0.05); }
.menu-item-name { font-size: 1.1rem; font-weight: 600; color: white; margin-bottom: 5px; }
.menu-item-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.menu-item-price {
    color: var(--gold); font-weight: 700; font-size: 1.1rem;
    white-space: nowrap; margin-left: 20px;
}

/* ── Special Offers ── */
.offer-card {
    background: white; border-radius: 12px; overflow: hidden;
    border: 2px solid #eee; transition: box-shadow 0.3s ease;
}
.offer-card:hover { box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
.offer-header {
    background: linear-gradient(135deg, rgba(184,150,12,0.1), rgba(184,150,12,0.05));
    padding: 25px; border-bottom: 1px solid #eee;
}
.offer-header-top {
    display: flex; justify-content: space-between;
    align-items: flex-start; margin-bottom: 15px;
}
.offer-icon {
    width: 48px; height: 48px; background: rgba(184,150,12,0.2);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 22px; color: var(--gold);
}
.offer-badge {
    background: var(--dark); color: white; padding: 5px 14px;
    border-radius: 50px; font-size: 12px; font-weight: 600;
}
.offer-discount {
    display: inline-block; background: rgba(184,150,12,0.2);
    color: var(--gold); font-size: 1.75rem; font-weight: 700;
    padding: 8px 20px; border-radius: 8px;
}
.offer-body { padding: 25px; }
.offer-features { list-style: none; margin: 20px 0; }
.offer-features li {
    padding: 6px 0; color: var(--muted);
    display: flex; align-items: flex-start; gap: 8px;
}
.offer-features li::before {
    content: '•'; color: var(--gold); font-weight: bold;
    font-size: 1.2rem; line-height: 1; margin-top: 3px;
}
.offer-footer { border-top: 1px solid #eee; padding-top: 20px; }
.offer-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.offer-validity {
    font-size: 0.9rem; color: var(--muted);
    display: flex; align-items: center; gap: 6px; margin-top: 5px;
}

/* ── FAQ Page ── */
.faq-category { margin-bottom: 40px; }
.faq-category-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-light);
}
.faq-category-icon {
    width: 40px; height: 40px; background: var(--gold-dim);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--gold); font-size: 18px;
}
.faq-item {
    border: 1px solid #eee; border-radius: 8px;
    margin-bottom: 10px; overflow: hidden;
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 18px 20px; background: white; border: none;
    cursor: pointer; font-size: 1rem; font-weight: 600;
    color: var(--dark); text-align: left; transition: background 0.3s ease;
}
.faq-question:hover { background: var(--cream); }
.faq-question .faq-toggle {
    font-size: 1.5rem; color: var(--gold);
    transition: transform 0.3s ease; flex-shrink: 0; margin-left: 15px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── Feedback / Reviews ── */
.review-card {
    background: white; border-radius: 12px;
    padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.review-stars { color: var(--gold); margin-bottom: 15px; font-size: 1.1rem; }
.review-text { color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.review-author { font-weight: 600; color: var(--dark); }
.review-location { font-size: 0.9rem; color: var(--muted); }
.review-date { font-size: 0.85rem; color: #999; margin-top: 5px; }
.star-rating { display: flex; gap: 5px; }
.star-rating .star { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: color 0.2s ease; }
.star-rating .star.filled, .star-rating .star:hover { color: var(--gold); }

/* ── Reservation Form ── */
.reservation-form {
    background: white; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px; border: 1px solid #eee;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 8px;
    font-weight: 600; color: var(--dark); font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 14px 18px; background: white;
    border: 1px solid #ddd; border-radius: 8px;
    color: var(--dark); font-family: var(--sans); font-size: 15px;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 20px; background: white; border-radius: 10px;
    border: 1px solid #eee; transition: border-color 0.3s ease;
}
.contact-card:hover { border-color: var(--gold); }
.contact-icon {
    width: 48px; height: 48px; background: var(--gold-dim);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 20px;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.contact-card a:hover { color: var(--gold); }
.contact-form-dark { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 12px; }
.contact-form-dark .form-group label { color: rgba(255,255,255,0.9); }
.contact-form-dark .form-group input,
.contact-form-dark .form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); color: white;
}
.contact-form-dark .form-group input:focus,
.contact-form-dark .form-group textarea:focus {
    border-color: var(--gold); background: rgba(255,255,255,0.15);
}

/* ── Map Section ── */
.map-container { border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border: 1px solid #eee; }
.map-container iframe { display: block; width: 100%; height: 450px; border: 0; }

/* ── Form Messages ── */
.form-message { padding: 15px 20px; border-radius: 8px; margin-top: 15px; text-align: center; font-weight: 500; }
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card {
    text-align: center; padding: 40px 25px; background: white;
    border-radius: 12px; box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
.service-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-hover));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: white;
}

/* ── Food Menu Page ── */
.menu-section { margin-bottom: 60px; }
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.menu-item-card {
    background: var(--cream); border: 1px solid var(--gold-dim);
    border-radius: 10px; padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.menu-item-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); border-color: var(--gold); }
.menu-item-header {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; margin-bottom: 8px;
    border-bottom: 1px dashed var(--gold-dim); padding-bottom: 8px;
}

/* ── CTA Section ── */
.cta-section { padding: 100px 0; text-align: center; color: white; }
.cta-section.cta-primary { background: var(--dark); }
.cta-section.cta-gold { background: linear-gradient(135deg, var(--gold), var(--gold-hover)); }
.cta-section h2 { color: white; font-size: 2.5rem; margin-bottom: 20px; }
.cta-section p { font-size: 1.2rem; opacity: 0.9; max-width: 700px; margin: 0 auto 30px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive Additions ── */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-section h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   FRONT PAGE SCAFFOLD STYLES
   ════════════════════════════════════════════════════════ */

/* Hero */
.hero-section {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; text-align: center;
    background: var(--dark-mid); background-size: cover;
    background-position: center; overflow: hidden;
}
.hero-section .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(17,17,17,0.72) 100%);
}
.hero-section .hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero-eyebrow { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-heading { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Stats Strip */
.stats-strip { background: var(--dark-soft); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { width: 100%; height: 320px; background: var(--dark-card); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.about-img-placeholder span { color: var(--muted); font-size: 0.9rem; }
.about-img-secondary { position: absolute; bottom: -30px; right: -30px; width: 50%; border-radius: 10px; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.about-img-secondary img { width: 100%; height: auto; }
.about-content { padding-left: 20px; }
.about-text { color: var(--text-body); line-height: 1.8; margin: 24px 0 36px; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

/* Amenities */
.amenities-section { background: var(--dark); }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.amenity-card { background: var(--dark-card); border: 1px solid var(--gold-dim); border-radius: 12px; padding: 36px 28px; text-align: center; transition: var(--transition); }
.amenity-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.amenity-icon { font-size: 2.5rem; margin-bottom: 16px; }
.amenity-title { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.amenity-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.section-header { margin-bottom: 16px; }
.section-header h2 { color: var(--white); }
.section-sub { color: rgba(255,255,255,0.6); max-width: 600px; margin: 12px auto 0; }

/* Rooms Preview */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.room-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: var(--transition); }
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.room-card-img-wrap { position: relative; }
.room-card-img-placeholder { height: 220px; background: var(--dark-card); display: flex; align-items: center; justify-content: center; }
.room-card-img-placeholder span { color: rgba(255,255,255,0.4); font-family: var(--serif); font-size: 1rem; }
.room-card-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--white); padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.room-card-body { padding: 24px; }
.room-card-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 10px; }
.room-card-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%); border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.cta-banner-inner { padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: 2.4rem; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }

/* Buttons */
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--outline-light { border: 2px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); padding: 14px 30px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.btn--outline-light:hover { border-color: var(--white); color: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-secondary { display: none; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-heading { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .amenities-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .about-content { padding-left: 0; }
    .cta-banner h2 { font-size: 1.8rem; }
}
