/*
 * 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; }
}
