/*
 * Holy Brush Strokes - Main Stylesheet
 * 1920s Art Deco meets Wine Country Warmth
 */

/* ── CSS Variables ── */
:root {
    --bg-parchment: #F2E8D5;
    --bg-parchment-light: #F8F2E8;
    --surface-burgundy: #4A1528;
    --surface-espresso: #1C1008;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #A68A3C;
    --accent-terracotta: #B85C38;
    --accent-forest: #2D4A3E;
    --text-dark: #2A1F1A;
    --text-light: #F5EAD0;
    --text-muted: #6B5D52;
    --gallery-wall: #1A0812;
    --shadow-warm: rgba(42, 31, 26, 0.15);
    --shadow-warm-heavy: rgba(42, 31, 26, 0.3);

    --font-display: 'Playfair Display', serif;
    --font-decorative: 'Cinzel Decorative', serif;
    --font-body: 'Libre Baskerville', serif;
    --font-script: 'Playfair Display', serif;
}

/* ── Reset & Base ── */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-parchment);
    line-height: 1.7;
    padding-top: 76px; /* navbar height */
}

/* Parchment texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-dark);
}

.display-heading {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.decorative-heading {
    font-family: var(--font-decorative);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--gold);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.script-text {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 400;
}

/* ── Section Label Treatment ── */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-label span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    text-shadow: 0 0 1px rgba(201, 168, 76, 0.3);
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── Navbar ── */
#mainNav {
    background: rgba(26, 8, 18, 0.85);
    backdrop-filter: blur(10px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

#mainNav.navbar-scrolled {
    background: rgba(26, 8, 18, 0.97);
    box-shadow: 0 4px 20px var(--shadow-warm-heavy);
}

.brand-script {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 2.4rem;
    letter-spacing: 0.12em;
    word-spacing: 0.15em;
    color: var(--gold) !important;
}

#mainNav .nav-link {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.5rem 0.85rem;
    transition: color 0.3s ease;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--surface-espresso) !important;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 700 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--surface-espresso) !important;
    transform: translateY(-1px);
}

/* ── Decorative Dividers ── */
.deco-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 300px;
}

.deco-divider-svg {
    width: 200px;
    height: 20px;
}

.deco-divider-wide {
    max-width: 500px;
}

/* ── Buttons ── */
.btn-gold {
    background: var(--gold);
    color: var(--surface-espresso);
    font-family: var(--font-decorative);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--surface-espresso);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-outline-gold {
    background: rgba(10, 5, 2, 0.7);
    color: var(--gold);
    font-family: var(--font-decorative);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--surface-espresso);
    transform: translateY(-2px);
}

.btn-burgundy {
    background: var(--surface-burgundy);
    color: var(--text-light);
    font-family: var(--font-decorative);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border: 2px solid var(--surface-burgundy);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-burgundy:hover {
    background: #5c1d34;
    color: var(--text-light);
    border-color: #5c1d34;
    transform: translateY(-2px);
}

/* ── Cards ── */
.hbs-card {
    background: var(--bg-parchment-light);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    box-shadow: 0 4px 15px var(--shadow-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.hbs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-warm-heavy);
}

.hbs-card .card-body {
    padding: 1.5rem;
}

.hbs-card .card-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--surface-burgundy);
}

/* ── Dark Sections ── */
.section-dark {
    background-color: var(--surface-burgundy);
    color: var(--text-light);
    position: relative;
}

.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4, .section-dark h5, .section-dark h6 {
    color: var(--text-light);
}

.section-espresso {
    background-color: var(--surface-espresso);
    color: var(--text-light);
}

.section-espresso h1, .section-espresso h2, .section-espresso h3,
.section-espresso h4, .section-espresso h5, .section-espresso h6 {
    color: var(--text-light);
}

/* ── Scroll Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Art Deco Frame (for gallery) ── */
.deco-frame {
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, #D4B96A, #C9A84C, #A68A3C, #C9A84C);
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.deco-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    pointer-events: none;
}

.deco-frame img {
    display: block;
    width: 100%;
    border-radius: 2px;
}

/* ── Sold Out Badge ── */
.badge-sold-out {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-terracotta);
    color: white;
    font-family: var(--font-decorative);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    z-index: 2;
}

/* ── Star Rating ── */
.stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ── Footer ── */
.site-footer {
    background: var(--surface-espresso);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-ornament {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: var(--font-decorative);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(245, 234, 208, 0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: rgba(245, 234, 208, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(245, 234, 208, 0.7);
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
}

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

.footer-email {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 234, 208, 0.5);
}

/* ── Forms ── */
.form-control, .form-select {
    background-color: var(--bg-parchment-light);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--text-dark);
    font-family: var(--font-body);
    border-radius: 4px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25);
    background-color: #fff;
}

.form-label {
    font-family: var(--font-decorative);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

/* ── Hero Section ── */
.hero-section {
    position: relative;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--surface-burgundy) 0%, var(--surface-espresso) 50%, #2A1020 100%);
    overflow: hidden;
}

/* ── Hero Photo Mosaic ── */
.hero-mosaic-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    z-index: 0;
}

.hero-mosaic-cell {
    overflow: hidden;
    opacity: 0;
    animation: mosaicFadeIn 1.2s ease forwards;
    transition: opacity 0.7s ease;
}

.hero-mosaic-cell.mosaic-fade-out {
    opacity: 0 !important;
}

.hero-mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-mosaic-cell:nth-child(odd) img {
    transform: scale(1.05);
}

.hero-mosaic-cell:nth-child(even) img {
    transform: scale(1.0);
}

.hero-section:hover .hero-mosaic-cell:nth-child(odd) img {
    transform: scale(1.12);
}

.hero-section:hover .hero-mosaic-cell:nth-child(even) img {
    transform: scale(1.08);
}

@keyframes mosaicFadeIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

.hero-overlay-mosaic {
    background:
        radial-gradient(ellipse at center, rgba(28, 16, 8, 0.55) 0%, rgba(28, 16, 8, 0.75) 100%),
        linear-gradient(to bottom, rgba(74, 21, 40, 0.3) 0%, rgba(28, 16, 8, 0.6) 100%);
    z-index: 1;
}

.hero-section .decorative-heading {
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-content > .reveal {
    background: rgba(10, 5, 2, 0.65);
    padding: 2.5rem 3rem;
    border-radius: 12px;
    display: inline-block;
    max-width: 750px;
}

.hero-title {
    font-size: 4.2rem;
    color: var(--text-light);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 2.2rem;
    color: var(--gold);
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 0, 0, 0.7);
}

.hero-description {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    max-width: 620px;
    margin: 0 auto;
    background: rgba(10, 5, 2, 0.8);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ── Occasion Cards (Perfect For section) ── */
.occasion-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: var(--bg-parchment-light);
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.occasion-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

.occasion-icon {
    width: 52px;
    height: 52px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.occasion-card:hover .occasion-icon {
    background: var(--gold);
    color: var(--surface-espresso);
}

.occasion-card h6 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--surface-burgundy);
    margin-bottom: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-arrow {
    width: 1px;
    height: 30px;
    background: var(--gold);
    margin: 0.5rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Page Heroes ── */
.page-hero {
    padding: 5rem 0 3rem;
}

/* ── Event Cards ── */
.event-card {
    position: relative;
}

.event-card-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--surface-burgundy), #2a1020);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.5rem;
    opacity: 0.6;
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.event-card-date {
    font-family: var(--font-decorative);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    font-weight: 700;
}

.event-card-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.event-card-venue,
.event-card-venue-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-card-venue-detail i {
    margin-right: 0.3rem;
}

.event-venue-type-badge {
    display: inline-block;
    font-family: var(--font-decorative);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(201,168,76,0.15);
    color: var(--gold-dark);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.event-card-painting {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-dark);
    margin-bottom: 0;
}

.event-card-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--surface-burgundy);
}

.event-seats-left {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Event Filter Bar ── */
.event-filter-bar {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.event-filter-pill {
    font-family: var(--font-decorative);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-filter-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.event-filter-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--surface-espresso);
}

/* ── Event Detail ── */
.event-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-detail-row i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ── Step Icons (How It Works) ── */
.step-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin: 0 auto 1rem;
}

/* ── Testimonial Cards ── */
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(245, 234, 208, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.testimonial-name {
    font-family: var(--font-decorative);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
}

/* ── About Page ── */
.about-feature-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-text {
    font-family: var(--font-decorative);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 234, 208, 0.5);
    margin-top: 0.3rem;
}

/* ── Venmo Handle ── */
.venmo-handle {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--surface-burgundy);
    letter-spacing: 0.02em;
}

/* ── Partner Type Cards ── */
.partner-type-card {
    display: block;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    background: var(--bg-parchment-light);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-type-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}

.partner-type-card.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    box-shadow: 0 0 0 2px var(--gold);
}

.partner-type-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.partner-type-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--surface-burgundy);
    margin-bottom: 0.5rem;
}

.partner-type-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ── Occasion Spotlight ── */
.occasion-spotlight {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-parchment-light);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow-warm);
}

.occasion-spotlight-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.occasion-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.occasion-spotlight-text {
    flex: 1;
    min-width: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.occasion-spotlight-text h4 {
    color: var(--surface-burgundy);
    margin-bottom: 0.5rem;
}

.occasion-spotlight-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ── Shop ── */
.shop-card {
    background: var(--bg-parchment-light);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-warm);
}

.shop-card-image {
    display: block;
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.05);
}

.shop-card-placeholder {
    width: 100%;
    height: 220px;
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.5rem;
}

.shop-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--surface-burgundy);
    margin-bottom: 0.25rem;
}

.shop-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}

.shop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.shop-card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--surface-burgundy);
    font-weight: 700;
}

.shop-demand-badge {
    font-size: 0.72rem;
    color: #c0392b;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(192, 57, 43, 0.08);
    border-radius: 4px;
    text-align: center;
}

.shop-demand-badge i {
    color: #e74c3c;
    margin-right: 2px;
}

/* ── Cart Badge ── */
.nav-cart {
    position: relative;
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: -6px;
    background: var(--gold);
    color: var(--surface-espresso);
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Cart Table ── */
.cart-table th {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--surface-burgundy);
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.cart-table td {
    vertical-align: middle;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

/* ── Contact Info ── */
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--surface-burgundy);
    margin-bottom: 0.25rem;
}

.contact-info-item a {
    color: var(--gold-dark);
    text-decoration: none;
}

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

/* ── FAQ Accordion ── */
.faq-item {
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    border-radius: 6px !important;
    margin-bottom: 0.75rem;
    background: var(--bg-parchment-light);
    overflow: hidden;
}

.faq-item .accordion-button {
    background: transparent;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(201, 168, 76, 0.06);
    color: var(--surface-burgundy);
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-item .accordion-body {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ── Gallery Items ── */
.gallery-thumb {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-4px);
}

.gallery-item {
    display: block;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    color: var(--text-light);
}

.gallery-item-info {
    padding: 0.75rem 0.25rem;
    text-align: center;
}

.gallery-item-info h6 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.gallery-item-info small {
    color: rgba(245, 234, 208, 0.5);
    font-size: 0.8rem;
}

/* ── Art Deco Section Borders ── */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold-dark) 15%,
        var(--gold) 30%,
        var(--gold-light) 50%,
        var(--gold) 70%,
        var(--gold-dark) 85%,
        transparent 100%
    );
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 168, 76, 0.4) 30%,
        rgba(201, 168, 76, 0.4) 70%,
        transparent 100%
    );
}

.section-espresso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.section-espresso {
    position: relative;
}

/* ── Art Deco Geometric Overlay ── */
.section-dark .container {
    position: relative;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold-light) 50%,
        var(--gold) 80%,
        transparent 100%
    );
    z-index: 3;
}

/* ── Hero Gold Shimmer ── */
@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title {
    background: linear-gradient(
        90deg,
        var(--text-light) 0%,
        var(--text-light) 40%,
        var(--gold-light) 50%,
        var(--text-light) 60%,
        var(--text-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s ease-in-out infinite;
}

/* ── Hero Buttons spacing ── */
.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Art Deco Corner Decorations (Page Heroes) ── */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(201, 168, 76, 0.3);
    border-left: 2px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.3);
    border-right: 2px solid rgba(201, 168, 76, 0.3);
    pointer-events: none;
}

/* ── Section-label gold diamond between lines ── */
.section-label::before,
.section-label::after {
    position: relative;
}

/* ── GLightbox Custom Skin ── */
.glightbox-clean .goverlay {
    background: rgba(26, 8, 18, 0.92);
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: rgba(201, 168, 76, 0.4);
}

.glightbox-clean .gdesc-inner {
    font-family: var(--font-display);
    color: var(--surface-espresso);
}

.glightbox-clean .gslide-title {
    font-family: var(--font-display);
    color: var(--surface-burgundy);
    font-size: 1.2rem;
}

.glightbox-clean .gslide-desc {
    font-family: var(--font-body);
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
}

.glightbox-clean .gslide-media {
    max-height: 60vh;
}

/* ── Card corner accents ── */
.hbs-card {
    position: relative;
}

.hbs-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-radius: 6px 0 0 0;
    pointer-events: none;
    z-index: 1;
}

.hbs-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-radius: 0 0 6px 0;
    pointer-events: none;
    z-index: 1;
}

/* ── Event card image hover zoom ── */
.event-card .card-img-top {
    transition: transform 0.5s ease;
}

.event-card:hover .card-img-top {
    transform: scale(1.05);
}

.event-card {
    overflow: hidden;
}

/* ── Gallery deco-frame hover glow ── */
.gallery-thumb .deco-frame {
    transition: box-shadow 0.3s ease;
}

.gallery-thumb:hover .deco-frame {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(201, 168, 76, 0.15);
}

/* ── Smooth scroll for anchor links ── */
html {
    scroll-behavior: smooth;
}

/* ── Form focus gold glow ── */
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.25),
                0 0 15px rgba(201, 168, 76, 0.08);
}

/* ── Alert styling ── */
.alert {
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 4px;
}

.alert-success {
    background: rgba(45, 74, 62, 0.1);
    border-color: var(--accent-forest);
    color: var(--accent-forest);
}

.alert-danger {
    background: rgba(184, 92, 56, 0.1);
    border-color: var(--accent-terracotta);
    color: #8b3520;
}

.alert-info {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold-dark);
}

/* ── Footer ornament shimmer ── */
.footer-ornament {
    position: relative;
}

.footer-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    transform: translateY(-50%);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    #mainNav .navbar-collapse {
        background: rgba(26, 8, 18, 0.97);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
        margin-top: 0.5rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 66px;
    }

    .brand-script {
        font-size: 1.6rem;
    }

    .section-label span {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .hero-content > .reveal {
        padding: 1.5rem 1.25rem;
    }

    .hero-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .occasion-card {
        padding: 1rem 0.75rem;
    }

    .occasion-spotlight {
        flex-direction: column;
    }

    .occasion-spotlight-image {
        flex: none;
        max-width: 100%;
        max-height: 200px;
    }

    .occasion-spotlight-text {
        padding: 1.25rem;
    }

    .occasion-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .occasion-card h6 {
        font-size: 0.8rem;
    }

    .shop-card-image img,
    .shop-card-placeholder {
        height: 160px;
    }

    .shop-card-title {
        font-size: 0.85rem;
    }

    .shop-card-price {
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 3rem 0 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .event-detail-row {
        font-size: 0.85rem;
    }

    .page-hero::before,
    .page-hero::after {
        width: 30px;
        height: 30px;
    }

    .hbs-card::before,
    .hbs-card::after {
        width: 20px;
        height: 20px;
    }

    .partner-type-card {
        padding: 1.5rem 1rem;
    }

    .contact-info-icon {
        width: 35px;
        height: 35px;
    }

    .venmo-handle {
        font-size: 1.4rem;
    }

    .deco-frame {
        padding: 8px;
    }
}
