:root {
    --bg-deep: #0a0711;
    --bg-section: #100d18;
    --bg-card: #1a1525;
    /* --purple-primary: #8b5cf6;
    --purple-glow: #a78bfa;
    --purple-dark: #6d28d9; */
    --purple-primary: #684062;
    --purple-glow: ##914F8A;
    --purple-dark: #914c87;
    --wine-red: #9b2335;
    --wine-blush: #c5687d;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --text-primary: #f0ece4;
    --text-secondary: #ccbbe4;
    --text-muted: #817691;
    --divider: rgba(139, 92, 246, 0.15);
    --nav-active: #684062;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}
p {
    font-size: 1.1rem;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(10, 7, 17, 0);
    backdrop-filter: blur(0);
    transition: all 0.4s;
}

nav.scrolled {
    padding: 0.6rem 3rem;
    background: rgba(10, 7, 17, 0.3);
     backdrop-filter: blur(10px);
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.4s;
}

nav.scrolled .nav-logo {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.15rem;
}

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

.nav-links a.active {
    color: var(--text-primary);
    border-bottom-color: var(--nav-active);
}

.nav-links a.active:hover {
    color: var(--gold);
    border-bottom-color: var(--nav-active);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* ─── AWARD BADGE (Pull Quote) ─── */
/* Base pull-quote badge styling — editorial strip with stars + italic quote + citation */
.award-badge {
    display: none; /* Hidden by default; active slot is enabled via [data-badge-pos] */
    align-items: center;
    gap: 0.9rem;
    padding: 0.55rem 1rem 0.55rem 0.9rem;
    background: rgba(26, 21, 37, 0.55);
    border: 1px solid rgba(212, 168, 83, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-body);
    color: inherit;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    white-space: nowrap;
    animation: fadeUp 0.8s 0.1s backwards;
}

.award-badge:hover {
    background: rgba(26, 21, 37, 0.72);
    border-color: rgba(212, 168, 83, 0.65);
    transform: translateY(-1px);
}

.award-badge .ab-stars {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.award-badge .ab-quote {
    font-family: var(--font-display);
    /* font-style: italic; */
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--text-primary);
}

.award-badge .ab-source {
    font-size: .8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    border-left: 1px solid rgba(240, 236, 228, 0.22);
    padding-left: 0.75rem;
    line-height: 1;
    white-space: nowrap;
}

/* Slot A — under the logo, left side of nav */
.award-badge--under-logo {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 3rem;
    z-index: 2;
}
body[data-badge-pos="under-logo"] .award-badge--under-logo {
    display: inline-flex;
}

/* Slot B — above the hero eyebrow, centered */
.award-badge--hero-above {
    margin: 0 auto 2.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s forwards;
}
body[data-badge-pos="hero-above"] .award-badge--hero-above {
    display: inline-flex;
}

/* Nav needs position:relative so under-logo slot anchors to it */
nav#navbar {
    position: fixed; /* keeps existing behavior; .award-badge--under-logo uses absolute to nav */
}

/* Responsive — collapse citation on narrow screens so it fits */
@media (max-width: 720px) {
    .award-badge {
        gap: 0.6rem;
        padding: 0.5rem 0.8rem;
    }
    .award-badge .ab-quote {
        font-size: 0.92rem;
        white-space: normal;
    }
    .award-badge .ab-source {
        display: none;
    }
    .award-badge--under-logo {
        left: 1.5rem;
        right: 1.5rem;
    }
}

/* On mobile, move the under-logo badge into the hero so it isn't cramped behind the hamburger */
@media (max-width: 900px) {
    body[data-badge-pos="under-logo"] .award-badge--under-logo {
        display: none;
    }
    body[data-badge-pos="under-logo"] .award-badge--hero-above {
        display: inline-flex;
    }
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark scrim so text stays legible over any photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 3, 10, 0.55) 0%, rgba(5, 3, 10, 0.45) 60%, rgba(5, 3, 10, 0.7) 100%),
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--purple-glow);
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 1.5rem auto 2.5rem;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s;
}

.btn-primary {
    background: var(--purple-primary);
    color: #fff;
    border-radius: 0;
}

.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-muted);
}

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

.btn-gold {
    background: var(--gold);
    color: var(--bg-deep);
    border-radius: 0;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-wine {
    background: var(--wine-red);
    color: #fff;
    border-radius: 0;
}

.btn-wine:hover {
    background: #b12a40;
    transform: translateY(-2px);
}

.btn-arrow::after {
    content: '→';
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ─── SECTIONS ─── */
section {
    padding: 6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-full {
    max-width: 100%;
    padding: 6rem 0;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--purple-primary);
    margin: 0 auto 1.5rem;
}

.section-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.8rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subheading {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.about-text h3 em {
    color: var(--purple-glow);
    font-style: italic;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-stat-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-align: center;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.about-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--bg-card);
    border: 1px solid var(--divider);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(10, 7, 17, 0.95) 0%, rgba(10, 7, 17, 0.7) 60%, transparent 100%);
}

.about-visual-overlay p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.founder-quote-name {
    text-align: left;
    margin-top: 0.8rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* ─── EXPERIENCE CARDS ─── */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exp-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--purple-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.exp-card:hover::before {
    transform: scaleX(1);
}

.exp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.exp-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.exp-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-align: center;
}

.exp-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    text-align: center;
}

.exp-card ul {
    list-style: none;
    margin-top: 1rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.exp-card li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
    text-align: left;
}

.exp-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-size: 0.55rem;
    top: 0.6rem;
}

/* ─── BANNER / CTA STRIP ─── */
.cta-strip {
    background: var(--bg-section);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    text-align: center;
    padding: 3.5rem 2rem;
}

.cta-strip h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-strip p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ─── EVENTS SECTION ─── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.event-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.event-card-date {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.event-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.event-card-title a:hover {
    color: var(--purple-glow);
}

.event-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.event-card-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-card-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
}

.event-card-status.upcoming {
    color: var(--purple-glow);
    background: rgba(139, 92, 246, 0.12);
}

.event-card-status.free {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.event-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.event-card-link:hover {
    color: var(--gold-light);
}

.events-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* ─── ARTICLES / NEWS ─── */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    padding: 2rem;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.article-card-source {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wine-blush);
    margin-bottom: 0.8rem;
}

.article-card h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.article-card h4 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.article-card h4 a:hover {
    color: var(--purple-glow);
}

.article-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    flex: 1;
}

.article-card-read {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-read:hover {
    color: var(--gold-light);
}

.article-card-read::after {
    content: ' →';
}

/* ─── STORY SECTION ─── */
.story-section {
    background: var(--bg-section);
}

.story-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2rem;
}

.founder-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.test-card {
    background: var(--bg-card);
    border: 1px solid var(--divider);
    padding: 2rem;
    position: relative;
}

.test-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--purple-primary);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.test-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
}

.test-card cite {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.test-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ─── VISIT / HOURS ─── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    row-gap: 2.5rem;
    align-items: start;
}

.visit-hours-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--divider);
}

.hours-table td {
    padding: 0.8rem 0;
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-secondary);
}

.hours-table tr.closed td:last-child {
    color: var(--wine-blush);
}

.visit-info-block {
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--divider);
}

.visit-info-block h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.visit-info-block p {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.visit-parking-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.visit-info-block a {
    color: var(--purple-glow);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-info-block a:hover {
    color: var(--gold);
}

.cashless-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--divider);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-glow);
}

.map-embed {
    position: relative;
    min-height: 240px;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid var(--divider);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: 0;
    filter: saturate(0.3) brightness(0.45) contrast(1.1);
}

.map-tint {
    position: absolute;
    inset: 0;
    background: rgba(104, 64, 98, 0.35);
    mix-blend-mode: color;
    pointer-events: none;
}

.map-embed .map-link {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(10, 7, 17, 0.7);
    padding: 0.5rem 1.2rem;
    backdrop-filter: blur(4px);
    transition: color 0.3s, background 0.3s;
}

.map-embed .map-link:hover {
    color: var(--gold);
    background: rgba(10, 7, 17, 0.85);
}

/* ─── EMAIL SIGNUP ─── */
.signup-section {
    background: linear-gradient(180deg, var(--bg-section), var(--bg-deep));
    text-align: center;
    padding: 5rem 2rem;
}

.signup-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.signup-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--divider);
    padding: 2rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

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

.footer-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* ─── GALLERY / INSTAGRAM ─── */
.gallery-section {
    background: var(--bg-section);
}

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

@media (min-width: 901px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(109, 40, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

/* When a Behold/EmbedSocial widget is loaded into #instagram-feed,
   hide the static fallback grid automatically */
#instagram-feed:not(:empty) ~ #gallery-static {
    display: none;
}

/* ─── MODAL ─── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 3, 10, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.25);
    max-width: 480px;
    width: 100%;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.35s;
}

.modal-overlay.open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.modal-form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.modal-form-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ── Mailchimp embedded form overrides ──
   These auto-apply once Steffini pastes her embed code in. */
#mc_embed_signup {
    background: transparent !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
}

#mc_embed_signup h2 {
    display: none;
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;
    padding-bottom: 0.75rem !important;
}

#mc_embed_signup .mc-field-group label {
    color: var(--text-secondary) !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.4rem !important;
}

#mc_embed_signup input.email,
#mc_embed_signup input[type="text"],
#mc_embed_signup input[type="email"] {
    background: var(--bg-section) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 0 !important;
    color: var(--text-primary) !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#mc_embed_signup input.email:focus,
#mc_embed_signup input[type="text"]:focus,
#mc_embed_signup input[type="email"]:focus {
    border-color: var(--purple-primary) !important;
    outline: none !important;
}

#mc_embed_signup .button,
#mc-embedded-subscribe {
    background: var(--purple-primary) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    padding: 0.9rem 2.2rem !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 0.5rem !important;
    transition: background 0.3s !important;
}

#mc_embed_signup .button:hover,
#mc-embedded-subscribe:hover {
    background: var(--purple-dark) !important;
}

#mc_embed_signup div#mce-responses {
    margin: 0 !important;
    padding: 0 !important;
}

#mc_embed_signup .response {
    font-size: 0.85rem !important;
    margin: 0.75rem 0 0 !important;
    padding: 0 !important;
    color: var(--gold) !important;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-info-block {
        border-top: none;
        padding-top: 0;
        margin-top: 1.5rem;
    }

    .experience-grid,
    .events-grid,
    .articles-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .about-visual {
        aspect-ratio: 16/9;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 7, 17, 0.97);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--divider);
    }
}

/* ─── BADGE TWEAKS (position switcher) ─── */
.badge-tweaks {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    width: 240px;
    background: linear-gradient(180deg, rgba(26, 21, 37, 0.96), rgba(10, 7, 17, 0.96));
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: var(--font-body);
    padding: 14px 14px 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

.badge-tweaks.show {
    display: block;
}

.badge-tweaks h4 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.badge-tweaks h4 small {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    font-style: normal;
}

.badge-tweaks .lbl {
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.badge-tweaks .opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.badge-tweaks .opt {
    padding: 8px 6px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    background: rgba(240, 236, 228, 0.05);
    border: 1px solid rgba(240, 236, 228, 0.1);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    transition: all 0.15s;
}

.badge-tweaks .opt:hover {
    background: rgba(240, 236, 228, 0.1);
    color: var(--text-primary);
}

.badge-tweaks .opt.on {
    background: var(--purple-primary);
    color: #fff;
    border-color: var(--purple-primary);
}

.badge-tweaks .hint {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 10px;
    border-top: 1px solid rgba(240, 236, 228, 0.1);
    padding-top: 8px;
}

.badge-tweaks-fab {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    background: var(--purple-primary);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.badge-tweaks-fab:hover {
    background: var(--purple-dark);
}

.badge-tweaks.show + .badge-tweaks-fab {
    display: none;
}

behold-branding {
    display: none;
}