/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
    --dark:    #0B0907;
    --dark2:   #181208;
    --gold:    #F4A31B;
    --gold2:   #C8841A;
    --cream:   #E8D5A3;
    --white:   #FFFFFF;
    --muted:   #9A8570;
    --border:  rgba(244,163,27,.18);
    --overlay: rgba(11,9,7,.55);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Inter', -apple-system, sans-serif;
}

/* ─────────────────────────────────────────
   RESET / BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─────────────────────────────────────────
   BACKGROUND VIDEO (fixed, full-bleed)
───────────────────────────────────────── */
#bg-video {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

#bg-video video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Animated fallback for when no video file is present */
#bg-fallback {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(ellipse 80% 80% at 20% 50%, #2a1505 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 20%, #1a0d04 0%, transparent 55%),
        #0B0907;
    animation: ambientShift 12s ease-in-out infinite alternate;
}

@keyframes ambientShift {
    0%   { filter: hue-rotate(0deg) brightness(1); }
    50%  { filter: hue-rotate(8deg) brightness(1.08); }
    100% { filter: hue-rotate(-4deg) brightness(.95); }
}

/* Hero overlay only — the rest of the page has its own bg */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,9,7,.45) 0%,
        rgba(11,9,7,.35) 50%,
        rgba(11,9,7,.75) 100%
    );
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, box-shadow .4s;
}

nav.scrolled {
    background: rgba(11,9,7,.96);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(16px);
}

.nav-logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    transition: color .25s;
}

.nav-links a:hover { color: var(--white); }

.nav-book {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    transition: background .25s, transform .2s !important;
}

.nav-book:hover {
    background: #FFB830 !important;
    transform: translateY(-1px);
}

/* ─────────────────────────────────────────
   LANGUAGE TOGGLE
───────────────────────────────────────── */
.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.55);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 7px 13px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .25s;
    margin-left: 8px;
    flex-shrink: 0;
}

.lang-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-toggle.active-es {
    border-color: rgba(244,163,27,.45);
    color: var(--gold);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding: 7px 20px;
    border: 1px solid rgba(244,163,27,.35);
    border-radius: 100px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 300;
    line-height: .95;
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 300;
    color: rgba(255,255,255,.6);
    letter-spacing: 1px;
    margin-bottom: 44px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    transition: background .25s, transform .2s, box-shadow .25s;
}

.btn-gold:hover {
    background: #FFB830;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(244,163,27,.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 32px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 2px;
    transition: border-color .25s, color .25s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-instagram {
    display: block;
    margin-top: 80px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.4);
    transition: color .25s;
}

.hero-instagram:hover { color: var(--gold); }

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: .4; transform: scaleY(.7); }
}

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    padding-right: 40px;
}

.marquee-track span::after {
    content: '◆';
    font-size: 7px;
    opacity: .6;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION SCAFFOLDING
───────────────────────────────────────── */
.section {
    position: relative;
    background: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.5px;
}

.section-title em { font-style: italic; color: var(--gold); }

.divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0;
}

/* ─────────────────────────────────────────
   ABOUT / INTRO
───────────────────────────────────────── */
.about {
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,.65);
    line-height: 1.85;
    margin-top: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.stat-card {
    background: var(--dark2);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: border-color .3s;
}

.stat-card:hover { border-color: rgba(244,163,27,.5); }

.stat-card .num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .desc {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ─────────────────────────────────────────
   EXPERIENCES (SERVICES)
───────────────────────────────────────── */
.experiences {
    padding: 0 0 100px;
}

.exp-header {
    padding: 80px 0 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.exp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.exp-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
}

.exp-card:nth-child(1) .exp-bg {
    background: linear-gradient(160deg, #2a1a07 0%, #0f0904 60%, #1a0d03 100%);
}

.exp-card:nth-child(2) .exp-bg {
    background: linear-gradient(160deg, #1a1208 0%, #0b0a06 60%, #1f1707 100%);
}

.exp-card:nth-child(3) .exp-bg {
    background: linear-gradient(160deg, #1e1108 0%, #0a0705 60%, #241507 100%);
}

.exp-bg {
    position: absolute;
    inset: 0;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.exp-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        radial-gradient(circle at 30% 40%, #F4A31B 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, #C8841A 0%, transparent 45%);
}

.exp-card:hover .exp-bg { transform: scale(1.06); }

.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,9,7,.92) 0%, rgba(11,9,7,.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 32px;
    transition: background .4s;
}

.exp-card:hover .exp-card-overlay {
    background: linear-gradient(to top, rgba(11,9,7,.96) 0%, rgba(11,9,7,.5) 60%, rgba(11,9,7,.15) 100%);
}

.exp-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    opacity: .9;
}

.exp-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 10px;
}

.exp-card p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, opacity .4s;
    opacity: 0;
}

.exp-card:hover p { max-height: 120px; opacity: 1; }

.exp-price {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.services-pricing-note {
    font-size: 13px;
    color: var(--text2);
    text-align: center;
    padding: 24px 0 8px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.exp-arrow {
    position: absolute;
    top: 28px; right: 28px;
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: border-color .3s, background .3s, transform .3s;
}

.exp-card:hover .exp-arrow {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
    transform: rotate(45deg);
}

/* ─────────────────────────────────────────
   EVENT TYPES
───────────────────────────────────────── */
.event-types {
    padding: 0 0 100px;
}

.event-types-header {
    padding: 80px 0 56px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.event-tile {
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
    transition: all .3s;
    cursor: default;
}

.event-tile:hover {
    border-color: rgba(244,163,27,.5);
    background: rgba(244,163,27,.04);
    transform: translateY(-4px);
}

.event-tile .icon { font-size: 2rem; display: block; margin-bottom: 16px; }

.event-tile .name {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    transition: color .3s;
}

.event-tile:hover .name { color: var(--gold); }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gallery {
    padding: 0 0 100px;
}

.gallery-header {
    padding: 0 0 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 3px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--dark2);
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-img {
    position: absolute;
    inset: 0;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.gallery-item:nth-child(1) .gallery-img {
    background: linear-gradient(135deg, #2a1a07 0%, #0d0804 50%, #1e1206 100%);
}
.gallery-item:nth-child(2) .gallery-img {
    background: linear-gradient(135deg, #1f1509 0%, #090806 100%);
}
.gallery-item:nth-child(3) .gallery-img {
    background: linear-gradient(135deg, #171009 0%, #080706 100%);
}
.gallery-item:nth-child(4) .gallery-img {
    background: linear-gradient(135deg, #231607 0%, #0b0806 100%);
}
.gallery-item:nth-child(5) .gallery-img {
    background: linear-gradient(135deg, #1a1108 0%, #0a0806 100%);
}
.gallery-item:nth-child(6) .gallery-img {
    background: linear-gradient(135deg, #1e1408 0%, #0d0906 100%);
}

.gallery-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 40%, rgba(244,163,27,.07) 0%, transparent 60%);
}

.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-caption {
    position: absolute;
    inset: 0;
    background: rgba(11,9,7,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.gallery-item:hover .gallery-caption { background: rgba(11,9,7,.35); }

.gallery-caption span {
    font-size: 22px;
    opacity: 0;
    transition: opacity .3s;
}

.gallery-item:hover .gallery-caption span { opacity: 1; }

.gallery-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
}

.gallery-label .gl-icon {
    font-size: 2rem;
    opacity: .2;
}

.gallery-label .gl-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.2);
}

/* ─────────────────────────────────────────
   QUOTE FORM
───────────────────────────────────────── */
.quote {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 100px 0;
}

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.quote-left .section-title {
    margin-bottom: 20px;
}

.quote-left p {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.quote-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    margin-bottom: 14px;
    transition: color .25s;
}

.quote-contact a:hover { color: var(--gold); }

.quote-contact .icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: border-color .25s;
}

.quote-contact a:hover .icon { border-color: var(--gold); }

.quote-form {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 48px 44px;
}

.form-section-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-field:last-child { margin-bottom: 0; }

.form-field label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    padding: 13px 15px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    transition: border-color .25s, background .25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.2); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    background: rgba(244,163,27,.03);
}

.form-field select option { background: #181208; }

/* Google Places PlaceAutocompleteElement styling */
#location-ac-container {
    width: 100%;
}
#location-ac-container gmp-place-autocomplete {
    display: block;
    width: 100%;
}
#location-ac-container gmp-place-autocomplete::part(input) {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    padding: 13px 15px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    box-sizing: border-box;
    transition: border-color .25s, background .25s;
}
#location-ac-container gmp-place-autocomplete::part(input):focus {
    border-color: var(--gold);
    background: rgba(244,163,27,.03);
}

.field-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    margin-top: 6px;
    line-height: 1.5;
}

.time-picker {
    display: flex;
    gap: 8px;
}

.time-picker .time-select {
    flex: 1;
    min-width: 0;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.service-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.service-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color .25s, background .25s;
}

.service-option:hover {
    border-color: rgba(244,163,27,.3);
    background: rgba(244,163,27,.02);
}

.service-option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(244,163,27,.05);
}

.service-option input {
    accent-color: var(--gold);
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.so-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
}

.so-desc {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    line-height: 1.5;
}

.cocktail-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.cocktail-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 8px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 2px;
    cursor: pointer;
    transition: all .25s;
}

.cocktail-btn:has(input:checked) {
    border-color: var(--gold);
    background: rgba(244,163,27,.05);
}

.cocktail-btn input { display: none; }

.cocktail-btn .cn {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.cocktail-btn .cl {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}

.form-note {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 2px solid rgba(244,163,27,.4);
    line-height: 1.6;
}

.form-estimate {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    margin-top: -12px;
    margin-bottom: 20px;
    min-height: 1.5em;
    transition: opacity .2s;
}

.form-spacer { margin-bottom: 24px; }

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 18px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .25s, transform .2s, box-shadow .25s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #FFB830;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(244,163,27,.25);
}

.form-footer-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.25);
    margin-top: 14px;
}

.form-confirmation {
    display: none;
    text-align: center;
    padding: 60px 24px;
}

.form-confirmation.visible { display: block; }

.conf-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    margin-bottom: 20px;
}

.form-confirmation h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 14px;
}

.form-confirmation p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

.conf-booking-ref {
    margin-top: 20px !important;
    font-size: 12px !important;
    color: rgba(255,255,255,.25) !important;
    letter-spacing: .5px;
}

.conf-booking-ref strong {
    color: var(--gold);
    font-weight: 500;
    font-family: var(--font-display);
    font-size: 13px;
}

.conf-email-note {
    margin-top: 16px !important;
    font-size: 12px !important;
    color: rgba(255,255,255,.45) !important;
    font-style: italic;
    line-height: 1.6;
}

/* Submit button spinner */
.btn-submit:disabled {
    opacity: .75;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(11,9,7,.3);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
    background: #060504;
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .5px;
}

.footer-brand span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-body);
    margin-top: 2px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-nav a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .25s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-btn {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: all .25s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,.2);
}

.footer-credit {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,.15);
    padding: 12px 0 4px;
}

.footer-credit a {
    color: rgba(255,255,255,.25);
    text-decoration: none;
    transition: color .25s;
}

.footer-credit a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    nav { padding: 0 32px; }
    .exp-cards { grid-template-columns: 1fr; gap: 3px; }
    .exp-card { aspect-ratio: unset; min-height: 220px; }
    .exp-card p { max-height: none; opacity: 1; }
    .exp-card-overlay { position: relative; inset: unset; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .quote-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-nav { justify-content: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    nav { padding: 0 20px; height: 62px; }
    .nav-links { display: none; }
    .event-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 32px 22px; }
    .exp-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
