/* ==========================================================================
   Queen Creek Nail Spa — v2
   Luxury Black & Gold Theme (with Light/Dark toggle)
   ========================================================================== */

:root {
    /* Raw brand palette — fixed constants used for photography overlays,
       gradients over images, and "always dark" contexts that must not
       flip with the theme toggle. */
    --black: #080808;
    --charcoal: #151515;
    --charcoal-light: #1e1c17;
    --gold: #C9A227;
    --gold-light: #E1C66B;
    --cream: #F7F3EA;
    --white: #FFFFFF;
    --muted: #b9b2a0;

    --font-display: 'Cormorant Garamond', serif;
    --font-accent: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --container-max: 1240px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Theme tokens (dark = default brand look). Only "chrome" — page/section
       backgrounds, headings, body copy, functional gold text — reads from
       these. Sections built over photography (hero, featured-experience,
       gallery hover, lightbox) reference the raw constants above directly
       so they stay legible regardless of theme. */
    --bg: var(--black);
    --bg-alt: var(--charcoal);
    --text-heading: var(--white);
    --text-body: var(--cream);
    --text-muted: var(--muted);
    --gold-text: var(--gold);
    --gold-text-soft: var(--gold-light);
    --nav-bg: rgba(8, 8, 8, 0.92);
}

:root[data-theme="light"] {
    --bg: #FBF8F1;
    --bg-alt: #F0E9D7;
    --text-heading: #201A10;
    --text-body: #3D3626;
    --text-muted: #786F5C;
    --gold-text: #8A6A12;
    --gold-text-soft: #6B5410;
    --nav-bg: rgba(251, 248, 241, 0.92);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.container { max-width: var(--container-max); }

img { max-width: 100%; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-heading);
    margin: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--black); }

/* ==========================================================================
   Shared UI: eyebrows, rules, section heads, buttons
   ========================================================================== */

.eyebrow {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-text);
    margin-bottom: 14px;
}

/* Fixed, non-theme-swapping variants for use over photography (e.g. the
   Featured Experience section), where the backdrop is always a dark scrim
   regardless of site theme. */
.eyebrow--on-photo { color: var(--gold-light); }
.section-title--on-photo { color: var(--white) !important; }
.section-sub--on-photo { color: var(--muted) !important; }

.gold-rule {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px 0;
}

.gold-rule--center { margin-left: auto; margin-right: auto; }
.gold-rule--left { margin-left: 0; }

.section-head { max-width: 640px; margin: 0 auto 64px; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); }
.section-sub { color: var(--text-muted); font-size: 1.02rem; }

.btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 36px;
    border-radius: 0;
    border: 1px solid var(--gold);
    transition: all 0.35s var(--ease);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 14px 2px rgba(201, 162, 39, 0.35), 0 0 30px 4px rgba(201, 162, 39, 0.18);
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 0 20px 4px rgba(225, 198, 107, 0.55), 0 0 42px 8px rgba(225, 198, 107, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-text-soft);
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 0 10px 1px rgba(201, 162, 39, 0.2);
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 0 20px 4px rgba(201, 162, 39, 0.5), 0 0 40px 8px rgba(201, 162, 39, 0.25);
}

.btn-lg { padding: 17px 42px; font-size: 0.82rem; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */

.announcement-bar {
    background: var(--bg);
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 15px;
}

.announcement-bar__dot { color: var(--gold); margin: 0 10px; }

.announcement-bar__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-text-soft);
    transition: color 0.3s var(--ease);
}
.announcement-bar__phone:hover { color: var(--gold); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0);
    transition: all 0.35s var(--ease);
}

.site-navbar.is-scrolled {
    padding: 12px 0;
    border-bottom-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}

.navbar-brand__name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-transform: uppercase;
}

.navbar-brand__name-main {
    font-family: var(--font-accent);
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--gold-text-soft);
}

.navbar-brand__name-sub {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 2px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-body);
    padding: 10px 18px !important;
    position: relative;
    transition: color 0.3s var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-text-soft);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 4px;
    height: 1px;
    background: var(--gold);
}

.site-navbar__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 16px;
}

.theme-toggle {
    flex: none;
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.4);
    background: transparent;
    color: var(--gold-text-soft);
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.theme-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.site-navbar__mobile-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.navbar-toggler {
    border: none;
    padding: 4px;
    box-shadow: none !important;
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}
.navbar-toggler-icon-custom span {
    display: block;
    height: 2px;
    background: var(--gold-text-soft);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bg);
        margin-top: 18px;
        padding: 24px 4px 8px;
        border-top: 1px solid rgba(201, 162, 39, 0.2);
    }
    .navbar-nav { text-align: center; gap: 6px; margin-bottom: 20px; }
    .site-navbar__actions { flex-direction: column; margin-left: 0; width: 100%; }
    .site-navbar__actions .btn { width: 100%; text-align: center; }
    .site-navbar__actions .theme-toggle { align-self: center; }
}

/* ==========================================================================
   Hero (always rendered over photography — deliberately theme-independent)
   ========================================================================== */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px 120px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    opacity: 0;
    animation: heroSlideFade 21s ease-in-out infinite both;
}

.hero__bg--1 { animation-delay: 0s; }
.hero__bg--2 { animation-delay: 7s; }
.hero__bg--3 { animation-delay: 14s; }

@keyframes heroSlideFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    29%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__bg { animation: none; opacity: 0; }
    .hero__bg--1 { opacity: 1; }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.35) 35%, rgba(8,8,8,0.75) 78%, rgba(8,8,8,0.96) 100%);
}

.hero__dust {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero__dust-particle {
    position: absolute;
    width: var(--size, 3px);
    height: var(--size, 3px);
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 6px 1px rgba(225, 198, 107, 0.75);
    opacity: 0;
    animation: heroDustFloat var(--duration, 12s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes heroDustFloat {
    0%   { transform: translate(0, 0); opacity: 0; }
    15%  { opacity: 0.9; }
    50%  { transform: translate(calc(var(--drift-x, 10px) * 0.5), calc(var(--drift-y, -80px) * 0.5)); }
    85%  { opacity: 0.9; }
    100% { transform: translate(var(--drift-x, 10px), var(--drift-y, -80px)); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__dust { display: none; }
}

.hero__sparkles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero__sparkle {
    position: absolute;
    width: var(--size, 10px);
    height: var(--size, 10px);
    background: var(--gold-light);
    clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
    filter: drop-shadow(0 0 4px rgba(225, 198, 107, 0.85));
    opacity: 0;
    animation: heroSparkleTwinkle var(--duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes heroSparkleTwinkle {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50%      { transform: scale(1) rotate(45deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero__sparkles { display: none; }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-info {
    background:
        linear-gradient(160deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.88) 100%),
        url('../img/marble-dark.png') center / cover no-repeat;
    border-bottom: 1px solid rgba(225, 198, 107, 0.22);
    padding: 46px 0;
}

.hero__info {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero__info--desktop {
    position: relative;
    z-index: 2;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(225, 198, 107, 0.22);
}

.hero__info-icon {
    display: block;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hero__info-col h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.hero__info-col p {
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 4px;
}
.hero__info-col p:last-child { margin-bottom: 0; }

.hero__info-col a {
    color: var(--cream);
    transition: color 0.3s var(--ease);
}
.hero__info-col a:hover { color: var(--gold-light); }

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.hero__title {
    margin-bottom: 4px;
    position: relative;
}

/* Soft dark glow behind the mark — not a hard circle background, just
   enough localized darkening that the thin gold linework reads clearly
   no matter which part of the photo happens to sit behind it. */
.hero__title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(280px, 34vw, 440px);
    height: clamp(280px, 34vw, 440px);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 72%);
    z-index: 0;
}

.hero__logo {
    position: relative;
    z-index: 1;
    width: 250px;
    max-width: 100%;
    height: auto;
    /* The linework is thin gold on a busy photo — a tight, fairly dark
       shadow gives every line a defining edge; the wider soft shadow
       underneath adds lift without washing the tight one out. */
    filter:
        drop-shadow(0 0 3px rgba(0, 0, 0, 1))
        drop-shadow(0 0 8px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 16px rgba(0, 0, 0, 0.75))
        drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
}

.hero__tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--cream);
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 10px;
}

.hero__services-line {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 1px solid rgba(225, 198, 107, 0.55);
    border-radius: 20px;
}

.hero__scroll span {
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 4px;
    margin-left: -2px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: heroScroll 1.8s infinite;
}

@keyframes heroScroll {
    0% { opacity: 1; top: 8px; }
    80% { opacity: 0; top: 24px; }
    100% { opacity: 0; top: 24px; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about { background: var(--bg); padding: 130px 0; }

.about__media {
    position: relative;
    padding: 22px 0 0 22px;
}

.about__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.about__media-frame {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    z-index: 1;
}

.about__ornament {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 90px; height: 90px;
    color: var(--gold);
    background: var(--bg);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.about__ornament svg { width: 40px; height: 40px; }

.about__lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-body);
    font-weight: 500;
}

.about__body { color: var(--text-muted); }

.about__list {
    list-style: none;
    padding: 0;
    margin: 26px 0 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.about__list li {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about__list i { color: var(--gold); font-size: 0.9rem; }

/* ==========================================================================
   Service preview cards
   ========================================================================== */

.services-preview { background: var(--bg-alt); padding: 130px 0; }

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.service-card {
    background: var(--bg);
    border: 1px solid rgba(201, 162, 39, 0.16);
    transition: all 0.4s var(--ease);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.service-card__media {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__media img { transform: scale(1.08); }

.service-card__media-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,8,8,0.85) 100%);
}

.service-card__body { padding: 30px 28px 32px; }

.service-card__title {
    font-size: 1.5rem;
    color: var(--gold-text-soft);
    margin-bottom: 10px;
}

.service-card__desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    min-height: 44px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-text);
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card__link:hover { gap: 13px; color: var(--gold-text-soft); }

/* ==========================================================================
   Promotions
   ========================================================================== */

.promotions-section { background: var(--bg); padding: 130px 0; }

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

.promo-card {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid rgba(201, 162, 39, 0.16);
    padding: 40px 34px 34px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.promo-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.promo-card__badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-text);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 30px;
}

.promo-card__icon {
    display: block;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.promo-card__offer {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold-text-soft);
    margin-bottom: 6px;
}

.promo-card__title {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.promo-card__desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 26px;
}

.promo-card__cta { margin-bottom: 20px; }

.promo-card__terms {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.75;
    margin: 0;
}

.promo-empty {
    max-width: 480px;
    margin: 0 auto;
    padding: 56px 40px;
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.promo-empty .eyebrow { margin-bottom: 18px; }
.promo-empty .gold-rule { margin-bottom: 22px; }

.promo-empty__text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-body);
    margin: 0;
}

.promo-empty__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
}
.promo-empty__social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-text-soft);
    transition: all 0.3s var(--ease);
}
.promo-empty__social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ==========================================================================
   Service Menu (full pricing)
   ========================================================================== */

.service-menu { background: var(--bg); padding: 130px 0 100px; }

.menu-jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: 90px;
}

.menu-jump a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 10px 20px;
    transition: all 0.3s var(--ease);
}
.menu-jump a:hover { color: var(--black); background: var(--gold); border-color: var(--gold); }

.menu-category {
    padding: 60px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    scroll-margin-top: 110px;
}
.menu-category:first-of-type { border-top: none; padding-top: 0; }

.menu-category__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 24px;
}
.menu-category__media img { width: 100%; height: 100%; object-fit: cover; }

.menu-category__heading { margin-bottom: 28px; }
.menu-category__heading h3 {
    font-size: 1.9rem;
    color: var(--gold-text-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.menu-category__note { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; font-style: italic; }

.menu-category__strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.menu-category__strip img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.menu-list {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.menu-item { border-bottom: 1px solid rgba(201, 162, 39, 0.15); background: transparent; }

.menu-item__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-body);
}

.menu-item__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    text-align: left;
}

.menu-item__duration {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.menu-item__price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--gold-text);
    white-space: nowrap;
    font-size: 1.02rem;
}

.menu-item__desc {
    padding: 0 4px 20px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.menu-subhead {
    padding: 22px 4px 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-text-soft);
}
.menu-subhead b { color: var(--gold-text-soft); }

.menu-footnote {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 40px;
    font-style: italic;
}

.menu-coming-soon {
    max-width: 560px;
    margin: 0 auto;
    padding: 60px 20px;
}
.menu-coming-soon i {
    font-size: 2rem;
    color: var(--gold-text-soft);
    margin-bottom: 18px;
    display: block;
}
.menu-coming-soon p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   Featured Experience (always rendered over photography)
   ========================================================================== */

.featured-experience {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.featured-experience__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.featured-experience__scrim {
    position: absolute; inset: 0;
    background: rgba(8, 8, 8, 0.82);
}

.featured-experience .container { position: relative; z-index: 2; }

.feature { text-align: center; padding: 0 10px; }

.feature__num {
    display: block;
    font-family: var(--font-accent);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 16px;
}

.feature__title {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.feature__text { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-section { background: var(--bg-alt); padding: 130px 0; }
.gallery-preview-wrap { background: var(--bg-alt); }
.gallery-preview-wrap__more { padding-bottom: 130px; }

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

/* Homepage preview strip: lead photo forms a big 2x2 square, with the
   remaining tiles filling in around it as a 4-wide, 2-row grid — the equal
   gap on both axes keeps the lead photo perfectly square against 1fr columns. */
@media (min-width: 992px) {
    .gallery-grid--preview { grid-template-columns: repeat(6, 1fr); }
    .gallery-grid--preview .gallery-grid__item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-grid__item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0;
    background: none;
    cursor: pointer;
}

.gallery-grid__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

/* Hover overlay sits directly on a photograph — always a dark scrim with
   pale-gold text, regardless of site theme. */
.gallery-grid__overlay {
    position: absolute; inset: 0;
    background: rgba(8,8,8,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold-light);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}

.gallery-grid__overlay i { font-size: 1.4rem; }
.gallery-grid__overlay span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__item:hover .gallery-grid__overlay { opacity: 1; }

/* GLightbox theme overrides — always dark "cinema mode", independent of
   site theme, so photography reads consistently. Gold accents match brand. */
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background-color: rgba(8, 8, 8, 0.75);
    border: 1px solid rgba(201, 162, 39, 0.4);
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background-color: var(--gold);
}
.glightbox-clean .gclose:hover svg,
.glightbox-clean .gnext:hover svg,
.glightbox-clean .gprev:hover svg { fill: var(--black); }
.gdesc-inner {
    background: var(--charcoal);
}
.glightbox-clean .gslide-description.description-bottom {
    background: var(--charcoal);
}
.glightbox-clean .gslide-title {
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-choose { background: var(--bg); padding: 130px 0; }

.why-item__icon {
    font-size: 2.1rem;
    color: var(--gold-text);
    margin-bottom: 20px;
    display: inline-block;
}

.why-item__title {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.why-item__text { color: var(--text-muted); font-size: 0.9rem; }

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.cta__bg {
    position: absolute; inset: 0;
    background-image: url('../img/marble-dark.png');
    background-size: cover;
    background-position: center;
}

:root[data-theme="light"] .cta__bg {
    background-image: url('../img/marble-light.png');
}

.cta__scrim {
    position: absolute; inset: 0;
    background: rgba(8, 8, 8, 0.45);
}

:root[data-theme="light"] .cta__scrim {
    background: rgba(255, 255, 255, 0.55);
}

.cta .container { position: relative; z-index: 2; }

.cta__ornament {
    position: absolute;
    top: 50%;
    width: 340px; height: 340px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    transform: translateY(-50%);
}
.cta__ornament--left { left: -160px; }
.cta__ornament--right { right: -160px; }

.cta__title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--text-heading);
    max-width: 780px;
    margin: 0 auto;
}

.cta__text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section { background: var(--bg); padding: 130px 0; }

.contact-panel {
    border: 1px solid rgba(201, 162, 39, 0.25);
    background: var(--bg-alt);
}

.contact-panel__details {
    padding: 56px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-panel__name {
    font-size: 1.8rem;
    color: var(--gold-text-soft);
    margin-bottom: 4px;
}

.contact-panel__row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-panel__row i {
    color: var(--gold-text);
    font-size: 1.15rem;
    margin-top: 3px;
}
.contact-panel__row p { color: var(--text-body); font-size: 0.95rem; }

.contact-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-top: 6px;
    font-weight: 600;
}
.contact-panel__link:hover { color: var(--gold-text-soft); }

.contact-panel__phone {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-text-soft);
    font-weight: 600;
}

.contact-panel__hours p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 6px;
}
.contact-panel__hours p span:first-child { color: var(--text-muted); }

.contact-panel .btn { align-self: flex-start; margin-top: auto; }

.contact-panel__map {
    min-height: 420px;
    height: 100%;
    filter: grayscale(0.3) contrast(1.05);
}
.contact-panel__map iframe { min-height: 420px; }

/* ==========================================================================
   Page banner (subpage masthead)
   ========================================================================== */

.page-banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(8, 8, 8, 0.6) 0%, rgba(8, 8, 8, 0.8) 100%),
        url('../img/marble-dark.png') center / cover no-repeat;
    padding: 100px 20px 70px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.page-banner > .container {
    position: relative;
    z-index: 2;
}

:root[data-theme="light"] .page-banner {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.82) 100%),
        url('../img/marble-light.png') center / cover no-repeat;
}

.page-banner__title {
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    background: linear-gradient(180deg, var(--text-heading), var(--gold-text-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--bg);
    border-top: 1px solid rgba(201, 162, 39, 0.25);
    padding: 90px 0 30px;
}

.site-footer__top { padding-bottom: 50px; }

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.site-footer__logo {
    height: 160px;
    width: auto;
}

.site-footer__brand-name {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    color: var(--gold-text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer__tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.site-footer__social {
    display: flex;
    gap: 16px;
}
.site-footer__social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-text-soft);
    transition: all 0.3s var(--ease);
}
.site-footer__social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

@media (max-width: 767.98px) {
    .site-footer__top .col-lg-4 {
        text-align: center;
    }
    .site-footer__brand {
        align-items: center;
    }
    .site-footer__social {
        justify-content: center;
    }
}

.site-footer__heading {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 20px;
}

.site-footer__links { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 12px; }
.site-footer__links a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.site-footer__links a:hover { color: var(--gold-text-soft); }

.site-footer__text { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.site-footer__text a { color: var(--text-muted); }
.site-footer__text a:hover { color: var(--gold-text-soft); }

.site-footer__hours-row { display: flex; justify-content: space-between; gap: 14px; }

.site-footer__bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    padding-top: 26px;
    text-align: center;
}
.site-footer__bottom p { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.5px; margin: 0; }

/* ==========================================================================
   Quick links rail — find us / social / call
   ========================================================================== */

.quick-links {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 767.98px) {
    .quick-links {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }
    .quick-links__item {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .quick-links__label {
        right: calc(100% + 10px);
    }
}

.quick-links__item {
    position: relative;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.6);
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(6px);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s var(--ease);
}

.quick-links__item:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.05);
}

.quick-links__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 30px;
    padding: 10px 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.quick-links__item:hover .quick-links__label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.quick-links__label-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-text-soft);
}

.quick-links__label-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white);
}

.quick-links__toggle {
    width: 32px; height: 32px;
    align-self: flex-end;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.5);
    background: rgba(8, 8, 8, 0.8);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.quick-links__toggle:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Collapsed state — only the toggle stays on screen so it can be reopened */
.quick-links.is-collapsed .quick-links__item {
    display: none;
}

/* ==========================================================================
   Promotions side banner — populated by assets/js/announcements.js
   ========================================================================== */

.side-banner {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-banner:empty { display: none; }

.side-banner .promo .banner_wrap {
    display: block;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.6);
    border-radius: 0 8px 8px 0;
    background: rgba(8, 8, 8, 0.8);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    transition: all 0.3s var(--ease);
}

.side-banner .promo .banner_wrap:hover {
    width: 76px;
    height: 76px;
    border-color: var(--gold);
}

.side-banner .promo .banner_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-modal .modal-content {
    background: var(--charcoal);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 0;
    padding: 14px;
    position: relative;
}

.promo-modal .btn-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background-color: var(--gold);
    opacity: 1;
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 5;
}

#popup-promo img {
    width: 100%;
    height: auto;
    display: block;
}

#popup-promo a + a {
    margin-top: 10px;
}

.opening-soon-modal__body {
    padding: 46px 30px;
}
.opening-soon-modal__title {
    margin: 6px 0 16px;
}
.opening-soon-modal__text {
    color: var(--text-muted);
    margin-bottom: 24px;
}
.opening-soon-modal__dismiss {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: left;
}
.opening-soon-modal__dismiss .form-check-input {
    margin: 0;
}
.opening-soon-modal__dismiss .form-check-label {
    color: inherit;
}

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */

/* Reveal-on-scroll only engages once JS confirms it's driving it (html.has-js,
   set synchronously in <head>) — so content stays visible by default if JS
   fails to load or errors out. main.js also force-reveals anything left
   un-triggered after a short timeout as a second safety net. */
html.has-js [data-aos] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.has-js [data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
    .service-card-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about__list { grid-template-columns: 1fr; }
    .contact-panel__details { padding: 44px 34px; }
    .contact-panel__map, .contact-panel__map iframe { min-height: 320px; }
    .featured-experience__bg { background-attachment: scroll; }
}

@media (max-width: 767.98px) {
    .about, .services-preview, .service-menu, .gallery-section, .why-choose, .contact-section, .promotions-section {
        padding: 90px 0;
    }
    .gallery-preview-wrap__more { padding-bottom: 90px; }
    .service-card-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .featured-experience { padding: 100px 0; }
    .cta { padding: 90px 0; }
    .cta__ornament { display: none; }
    .hero {
        min-height: 100vh;
        min-height: 100svh; /* accounts for mobile browser toolbars so the hero fits the actual visible screen, not the taller 100vh */
        padding: 130px 20px 90px;
    }
    .hero-info { padding: 40px 0; }
    .hero__info { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .menu-category__heading h3 { font-size: 1.5rem; }
    .site-footer__top { text-align: center; }
    .site-footer__social { justify-content: center; }
    .contact-panel__details { text-align: left; }
}

@media (max-width: 480px) {
    .hero__actions, .cta__actions { flex-direction: column; width: 100%; }
    .hero__actions .btn, .cta__actions .btn { width: 100%; }
    .btn { padding: 14px 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .menu-item__name { font-size: 1.05rem; }
}
