/* ============================================================
   Madam Zed's Emporium — Main Stylesheet
   Theme: Victorian Witch-Apothecary / Curiosity Cabinet
   Colors: Crimson #7A1A1A | Gold #B8860B | Parchment #F5E6C8
           Amber #C17A2A | Teal #2D5A4A | Ink #1A1008
   ============================================================ */

/* --- Custom Properties --- */
:root {
    /* Brand — Deep Crimson */
    --crimson:        #7A1A1A;
    --crimson-dark:   #4E0E0E;
    --crimson-deeper: #1E0606;
    --crimson-light:  #A84040;
    --crimson-pale:   #F7ECEC;
    /* Accent — Antique Gold */
    --gold:           #B8860B;
    --gold-dark:      #8B6508;
    --gold-light:     #D4A843;
    --gold-pale:      #FDF6DC;
    /* Accent 2 — Warm Amber */
    --amber:          #C17A2A;
    --amber-light:    #E4A55E;
    --amber-pale:     #FDE8CC;
    /* Accent 3 — Bottle Teal */
    --teal:           #2D5A4A;
    --teal-dark:      #1A3B30;
    --teal-light:     #4A8A72;
    --teal-pale:      #E6F2EC;
    /* Backgrounds — Aged Parchment */
    --parchment:      #F5E6C8;
    --parchment-dark: #EDD9A3;
    --parchment-warm: #FDF6EE;
    --white:          #ffffff;
    /* Text — Ink */
    --ink:            #1A1008;
    --ink-mid:        #4a3f35;
    --ink-light:      #7a6e63;
    /* Shadows (crimson-tinted) */
    --shadow-sm:      0 2px 10px rgba(122, 26, 26, 0.12);
    --shadow:         0 4px 20px rgba(122, 26, 26, 0.18);
    --shadow-lg:      0 8px 40px rgba(122, 26, 26, 0.28);
    /* Geometry */
    --radius:         14px;
    --radius-lg:      22px;
    --radius-xl:      32px;
    --ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --duration:       0.3s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--ink);
    background-color: var(--parchment-warm);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--crimson-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    color: var(--crimson);
    margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; color: var(--ink-mid); }

strong { color: var(--ink); }

/* --- Layout Helpers --- */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: block;
}

.section-label--light { color: var(--gold-light); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.8rem;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--duration) var(--ease),
                color var(--duration) var(--ease),
                border-color var(--duration) var(--ease),
                transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--crimson);
    color: var(--white);
    border-color: var(--crimson);
    box-shadow: 0 4px 18px rgba(122, 26, 26, 0.38);
}
.btn-primary:hover {
    background: var(--crimson-dark);
    border-color: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 28px rgba(122, 26, 26, 0.48);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(184, 134, 11, 0.42);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 28px rgba(184, 134, 11, 0.52);
}

.btn-facebook {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}
.btn-facebook:hover {
    background: #0d65d8;
    border-color: #0d65d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(24, 119, 242, 0.45);
}

.btn-outline-crimson {
    background: transparent;
    color: var(--crimson);
    border-color: var(--crimson);
}
.btn-outline-crimson:hover {
    background: var(--crimson);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(122, 26, 26, 0.35);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.badge-crimson { background: var(--crimson-pale); color: var(--crimson-dark); }
.badge-gold    { background: var(--gold-pale);    color: var(--gold-dark); }
.badge-amber   { background: var(--amber-pale);   color: var(--amber); }

/* --- Ornamental Dividers --- */
.rune-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    color: var(--amber);
}
.rune-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--amber), transparent);
    display: inline-block;
}
.rune-divider--gold { color: var(--gold); }
.rune-divider--gold .rune-line {
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* --- Section Fade-In Animation --- */
.section-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.section-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(78, 14, 14, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--duration) var(--ease),
                padding var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

#navbar.scrolled {
    background: var(--crimson-dark);
    padding: 0.6rem 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.25rem;
    color: var(--gold-light);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.35);
    line-height: 1;
    letter-spacing: 0.04em;
    transition: color var(--duration);
}
.nav-brand:hover { color: var(--amber-light); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.38rem 0.85rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
    transition: background var(--duration), color var(--duration);
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.nav-links .nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 0.38rem 1.1rem;
}
.nav-links .nav-cta:hover {
    background: var(--gold-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(212, 168, 67, 0.5);
    border-radius: 6px;
    color: var(--gold-light);
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    transition: border-color var(--duration);
}
.nav-toggle:hover { border-color: var(--gold-light); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 75%, rgba(122, 26, 26, 0.55) 0%, transparent 52%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 55%, rgba(45, 90, 74, 0.12) 0%, transparent 55%),
        var(--crimson-deeper);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(30, 6, 6, 0.68) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 9rem 2rem 5rem;
    max-width: 960px;
}

.hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    color: var(--parchment);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.55), 0 0 60px rgba(184, 134, 11, 0.18);
    line-height: 1.12;
    margin-bottom: 0.6rem;
}

.hero-symbol {
    font-size: 2rem;
    color: var(--gold-light);
    margin: 0.5rem 0;
    display: inline-block;
    animation: float 3.2s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(184, 134, 11, 0.55);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.4vw, 1.5rem);
    color: var(--gold-light);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}

.hero-location {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: rgba(245, 230, 200, 0.5);
    letter-spacing: 0.12em;
    margin-bottom: 2.4rem;
}

.hero-btn {
    font-size: 1rem;
    padding: 0.92rem 2.6rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 1.6rem;
    color: var(--gold);
    animation: bounce 2.2s ease-in-out infinite;
    line-height: 1;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50%       { transform: translateX(-50%) translateY(9px); opacity: 1; }
}

/* ============================================================
   ABOUT — THE EMPORIUM
   ============================================================ */
#about {
    padding: 5.5rem 0;
    background: var(--parchment-warm);
}

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

.about-text .lead-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--crimson);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.about-image-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--parchment-dark);
    transform: rotate(1.8deg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    width: 100%;
    max-width: 460px;
}
.about-image-frame:hover {
    transform: rotate(0deg) scale(1.025);
    box-shadow: 0 12px 50px rgba(122, 26, 26, 0.22);
}
.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Placeholder for about image before real photo is added */
.about-image-placeholder {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    border: 3px dashed var(--parchment-dark);
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    transform: rotate(1.8deg);
    transition: transform 0.4s var(--ease);
}
.about-image-placeholder:hover { transform: rotate(0deg); }
.about-image-placeholder .ph-icon  { font-size: 3rem; }
.about-image-placeholder .ph-label {
    color: var(--ink-light);
    font-size: 0.78rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.08em;
    text-align: center;
}

.about-caption {
    font-size: 0.78rem;
    color: var(--ink-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
}

/* ============================================================
   THE WITCH — ARTIST FEATURE
   ============================================================ */
#witch { padding: 0; }

.witch-banner {
    position: relative;
    overflow: hidden;
}

.witch-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--crimson-deeper) 0%,
        #3A0F0F 28%,
        #1E1408 55%,
        #0D1E18 80%,
        var(--teal-dark) 100%
    );
    z-index: 0;
}

.witch-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 65%, rgba(212, 168, 67, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 88% 18%, rgba(184, 134, 11, 0.09) 0%, transparent 46%),
        radial-gradient(ellipse at 50% 92%, rgba(122, 26, 26, 0.22) 0%, transparent 58%);
}

.witch-inner {
    position: relative;
    z-index: 1;
    padding: 5.5rem 2rem 5rem;
    text-align: center;
}

.witch-badge-row { margin-bottom: 0.85rem; }

.witch-month-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.38rem 1.3rem;
    border-radius: 50px;
    box-shadow: 0 3px 14px rgba(184, 134, 11, 0.55);
}

.witch-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 0.15rem;
}

.witch-name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    color: var(--parchment);
    text-shadow: 2px 5px 18px rgba(0, 0, 0, 0.42);
    margin-bottom: 0.2rem;
}

.witch-studio {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 2.8rem;
    letter-spacing: 0.04em;
}
.studio-name { font-weight: 700; }
.booth-num   { color: var(--amber-light); font-weight: 700; }

.witch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    max-width: 1020px;
    margin: 0 auto 3rem;
}

/* Bio column */
.witch-bio p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.9rem;
    font-size: 0.97rem;
}

.witch-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
    margin-bottom: 1.4rem;
    line-height: 1.55;
}

.witch-bio strong { color: var(--amber-light); font-weight: 700; }

.witch-mission {
    color: rgba(255, 255, 255, 0.68) !important;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem !important;
}

.witch-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--amber-light);
    text-shadow: 1px 3px 12px rgba(0, 0, 0, 0.35);
    margin-top: 0.3rem;
    line-height: 1.1;
}

/* Photo grid column */
.witch-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
}

.artist-photo-slot {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
}
.artist-photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s var(--ease);
}
.artist-photo-slot img:hover { transform: scale(1.06); }

.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 135px;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(212, 168, 67, 0.25);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem;
    transition: background var(--duration), border-color var(--duration);
    cursor: default;
}
.photo-placeholder:hover {
    background: rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.4);
}
.ph-icon  { font-size: 2.1rem; }
.ph-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.73rem;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.06em;
    text-align: center;
}

.photos-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 0;
}

.witch-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   STRANGE WARES
   ============================================================ */
.section-light {
    padding: 5.5rem 0;
    background: var(--parchment);
}

.section-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--ink-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

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

.card {
    background: var(--parchment-warm);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-top-color 0.35s;
    border-top: 5px solid transparent;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.card--crimson:hover { border-top-color: var(--crimson); }
.card--gold:hover    { border-top-color: var(--gold); }
.card--teal:hover    { border-top-color: var(--teal); }

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.card h3 { font-size: 1.18rem; }
.card p  { font-size: 0.93rem; margin-bottom: 0; }

/* ============================================================
   THE CABINET — GALLERY
   ============================================================ */
.section-dark {
    position: relative;
    padding: 5.5rem 0;
    background: var(--crimson-deeper);
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.gallery-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gallery-title {
    color: var(--parchment);
    margin-bottom: 0.5rem;
}

.gallery-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(245, 230, 200, 0.5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--full { grid-column: span 3; min-height: 260px; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
    filter: brightness(0.92) sepia(0.1);
}
.gallery-item img:hover {
    transform: scale(1.04);
    filter: brightness(1.05) sepia(0);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: rgba(245, 230, 200, 0.04);
    border: 2px dashed rgba(184, 134, 11, 0.18);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration), border-color var(--duration);
}
.gallery-placeholder:hover {
    background: rgba(184, 134, 11, 0.07);
    border-color: rgba(184, 134, 11, 0.32);
}
.gallery-placeholder span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(245, 230, 200, 0.25);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
}

.gallery-note {
    font-size: 0.84rem;
    color: rgba(245, 230, 200, 0.4);
    margin-bottom: 0;
}
.gallery-note a {
    color: var(--amber-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gallery-note a:hover { color: var(--gold-light); }

/* ============================================================
   FIND US
   ============================================================ */
#find-us {
    padding: 5.5rem 0;
    background: var(--parchment-warm);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
}

.visit-info h2 { margin-bottom: 1.2rem; }

.visit-address {
    margin-bottom: 1.8rem;
    padding: 1rem 1.2rem;
    background: var(--crimson-pale);
    border-radius: var(--radius);
    border-left: 4px solid var(--crimson);
}
.visit-address p {
    font-size: 1rem;
    color: var(--crimson-dark);
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.visit-address p:last-child { margin-bottom: 0; }

.hours-block { margin-bottom: 1.8rem; }

.hours-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 0.7rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table td {
    padding: 0.4rem 0.7rem;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--parchment-dark);
}
.hours-table td:first-child {
    font-weight: 700;
    color: var(--ink);
    width: 120px;
}
.hours-table td:last-child {
    color: var(--teal-dark);
    font-weight: 700;
}
.hours-table tr:last-child td { border-bottom: none; }

.hours-note {
    font-size: 0.78rem;
    color: var(--ink-light);
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.visit-map iframe {
    width: 100%;
    height: 430px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    border: 3px solid var(--parchment-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--crimson-deeper);
    color: var(--white);
}

.footer-rune-bar {
    background: var(--crimson-dark);
    text-align: center;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 0.6rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.footer-inner {
    text-align: center;
    padding: 3rem 2rem 2.5rem;
}

.footer-brand {
    font-family: 'Cinzel Decorative', cursive;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    color: var(--gold-light);
    line-height: 1.2;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--amber-light);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.footer-address {
    color: rgba(245, 230, 200, 0.38);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: background var(--duration), transform var(--duration);
}
.footer-fb-btn:hover {
    background: #1877f2;
    transform: scale(1.12);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(245, 230, 200, 0.25);
    margin-bottom: 0;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--crimson);
    color: var(--gold-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(122, 26, 26, 0.5);
    transition: all var(--duration) var(--ease);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--crimson-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 24px rgba(122, 26, 26, 0.6);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid    { gap: 2.5rem; }
    .witch-content { gap: 2rem; }
    .cards-grid    { gap: 1rem; }
    .visit-grid    { gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--crimson-dark);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.15rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.55rem 0.9rem; font-size: 0.95rem; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .about-image-frame,
    .about-image-placeholder {
        transform: none;
        max-width: 360px;
        margin: 0 auto;
    }

    /* Witch */
    .witch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .witch-inner { padding: 4rem 1.5rem 3.5rem; }

    /* Cards */
    .cards-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--tall  { grid-row: span 1; min-height: 180px; }
    .gallery-item--wide  { grid-column: span 2; }
    .gallery-item--full  { grid-column: span 2; }
    .gallery-placeholder { min-height: 180px; }

    /* Find Us */
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .visit-map iframe { height: 300px; }
    .visit-actions {
        flex-direction: column;
    }
    .visit-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }

    .hero-content { padding: 7.5rem 1.5rem 4rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item--full {
        grid-row: span 1;
        grid-column: span 1;
    }
    .gallery-placeholder { min-height: 160px; }

    .witch-photo-grid { gap: 0.5rem; }

    .witch-cta-row { flex-direction: column; align-items: stretch; }
    .witch-cta-row .btn { text-align: center; justify-content: center; }

    .section-light,
    #about,
    #find-us,
    .section-dark {
        padding: 3.5rem 0;
    }
    .witch-inner { padding: 3rem 1.25rem 2.5rem; }
}
