/* ========================================
   Monarch Liquor - Art Nouveau Inspired
   ======================================== */

/* --- CSS Variables --- */
:root {
    --navy: #212f56;
    --gold: #ffce85;
    --gold-dark: #e6b76e;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --text-dark: #333;
    --text-medium: #666;
    --heading-font: 'Libre Baskerville', serif;
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Self-hosted heading font --- */
@font-face {
    font-family: 'Libre Baskerville';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/libre-baskerville-400-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400 700; /* variable weight axis in one file */
    font-display: swap;
    src: url('/fonts/libre-baskerville-400-normal.woff2') format('woff2');
}

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    background: var(--navy);
    text-align: center;
    padding: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--body-font);
}

.announcement-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.announcement-bar a:hover {
    color: var(--white);
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    background: white;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 30px;
}

.navbar .container,
.navbar > div,
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-left a,
.nav-right a {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    color: var(--navy);
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.nav-left a::after,
.nav-right a:not(.btn-shop)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-left a.active::after,
.nav-right a:not(.btn-shop):hover::after,
.nav-right a:not(.btn-shop).active::after {
    width: 100%;
}

/* Nav Center (Logo) */
.nav-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-center span {
    font-family: var(--heading-font);
    letter-spacing: 3px;
    color: var(--navy);
    font-size: 13px;
}

.nav-center img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* Shop Now Button */
.btn-shop {
    background: var(--gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-shop:hover {
    background: var(--gold-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 47, 86, 0.97);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-family: var(--heading-font);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/images/hero-banner-1920.jpg');
    background-image: image-set(
        url('/images/hero-banner-1920.webp') type('image/webp'),
        url('/images/hero-banner-1920.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .hero {
        background-image: url('/images/hero-banner-1280.jpg');
        background-image: image-set(
            url('/images/hero-banner-1280.webp') type('image/webp'),
            url('/images/hero-banner-1280.jpg') type('image/jpeg')
        );
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: url('/images/hero-banner-768.jpg');
        background-image: image-set(
            url('/images/hero-banner-768.webp') type('image/webp'),
            url('/images/hero-banner-768.jpg') type('image/jpeg')
        );
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(33, 47, 86, 0.55),
        rgba(33, 47, 86, 0.2) 45%,
        rgba(33, 47, 86, 0.45)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
}

.hero h1 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 52px;
    margin-bottom: 15px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 30px;
    font-family: var(--body-font);
}

.btn-hero {
    border: 2px solid white;
    color: white;
    padding: 14px 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--body-font);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ========================================
   Categories
   ======================================== */
.categories {
    padding: 80px 0;
    background: white;
}

.categories .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.category-card {
    text-align: center;
    transition: transform 0.3s ease;
}

/* Framed card imagery — gold keyline echoes the art-nouveau posters */
.card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 47, 86, 0.35), transparent 40%);
    outline: 1px solid var(--gold);
    outline-offset: -8px;
    pointer-events: none;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-card:hover .card-media img {
    transform: scale(1.05);
}

.category-card h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 28px;
    margin-top: 20px;
    color: var(--navy);
}

.category-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 20px;
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
}

/* ========================================
   Guides Teaser (home page)
   ======================================== */
.guides-teaser {
    padding: 80px 0;
    background: var(--light-gray);
}

.guides-teaser > .section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.guides-teaser .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ========================================
   Visit Us
   ======================================== */
.visit-us {
    padding: 80px 0;
}

.visit-us > .section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-heading::before,
.section-heading::after {
    content: '';
    height: 2px;
    flex: 1;
    background: var(--gold);
}

.section-heading::before {
    margin-right: 20px;
}

.section-heading::after {
    margin-left: 20px;
}

/* Also used on About page for locations heading */
.locations .section-heading {
    margin-bottom: 40px;
}

/* Location Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

.location-tab {
    padding: 14px 40px;
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--navy);
}

.location-tab.active {
    background: var(--gold);
    color: var(--navy);
    border-radius: 25px 25px 0 0;
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

.tab-text {
    padding: 50px 40px;
}

.tab-text h3 {
    font-family: var(--heading-font);
    font-size: 32px;
    margin-bottom: 10px;
}

.location-address {
    color: var(--gold-dark);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tab-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-actions a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-actions a:hover {
    color: var(--gold-dark);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.tab-image {
    position: relative;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-image::after {
    content: '';
    position: absolute;
    inset: 0;
    outline: 1px solid var(--gold);
    outline-offset: -8px;
    pointer-events: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo span {
    font-family: var(--heading-font);
    letter-spacing: 4px;
    color: var(--gold);
    font-size: 14px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    padding: 0 12px 4px;
    border-right: 1px solid var(--gold);
    transition: color 0.3s ease;
}

/* Gold underline sweep, matching the top nav */
.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-nav a:hover::after {
    transform: scaleX(1);
}

.footer-nav a:last-child {
    border-right: none;
}

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

.footer-social {
    margin-bottom: 25px;
}

.footer-social a {
    color: white;
    font-size: 22px;
    margin: 0 12px;
    transition: color 0.3s ease;
}

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

.footer-sub-links {
    margin-bottom: 20px;
}

.footer-sub-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-sub-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Page Hero (interior pages)
   ======================================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(33, 47, 86, 0.6),
        rgba(33, 47, 86, 0.35) 50%,
        rgba(33, 47, 86, 0.6)
    );
    z-index: 1;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 48px;
    color: var(--gold);
}

.page-hero p {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-top: 12px;
}

/* Champagne toast background (about, delivery, contact) */
.page-hero--toast {
    background-image: url('/images/champagne-toast-1920.jpg');
    background-image: image-set(
        url('/images/champagne-toast-1920.webp') type('image/webp'),
        url('/images/champagne-toast-1920.jpg') type('image/jpeg')
    );
}

/* Art-nouveau banner background (guides, bars & restaurants) */
.page-hero--nouveau {
    background-image: url('/images/hero-banner-1920.jpg');
    background-image: image-set(
        url('/images/hero-banner-1920.webp') type('image/webp'),
        url('/images/hero-banner-1920.jpg') type('image/jpeg')
    );
}

/* Wine cellar background (careers) */
.page-hero--cellar {
    background-image: url('/images/wines-display-1600.jpg');
    background-image: image-set(
        url('/images/wines-display-1600.webp') type('image/webp'),
        url('/images/wines-display-1600.jpg') type('image/jpeg')
    );
}

/* Plain navy hero (privacy policy and other prose pages) */
.page-hero--plain {
    height: 30vh;
    min-height: 200px;
}

@media (max-width: 1280px) {
    .page-hero--toast {
        background-image: url('/images/champagne-toast-1280.jpg');
        background-image: image-set(
            url('/images/champagne-toast-1280.webp') type('image/webp'),
            url('/images/champagne-toast-1280.jpg') type('image/jpeg')
        );
    }

    .page-hero--nouveau {
        background-image: url('/images/hero-banner-1280.jpg');
        background-image: image-set(
            url('/images/hero-banner-1280.webp') type('image/webp'),
            url('/images/hero-banner-1280.jpg') type('image/jpeg')
        );
    }

    .page-hero--cellar {
        background-image: url('/images/wines-display-1280.jpg');
        background-image: image-set(
            url('/images/wines-display-1280.webp') type('image/webp'),
            url('/images/wines-display-1280.jpg') type('image/jpeg')
        );
    }
}

@media (max-width: 768px) {
    .page-hero--toast {
        background-image: url('/images/champagne-toast-768.jpg');
        background-image: image-set(
            url('/images/champagne-toast-768.webp') type('image/webp'),
            url('/images/champagne-toast-768.jpg') type('image/jpeg')
        );
    }

    .page-hero--nouveau {
        background-image: url('/images/hero-banner-768.jpg');
        background-image: image-set(
            url('/images/hero-banner-768.webp') type('image/webp'),
            url('/images/hero-banner-768.jpg') type('image/jpeg')
        );
    }

    .page-hero--cellar {
        background-image: url('/images/wines-display-768.jpg');
        background-image: image-set(
            url('/images/wines-display-768.webp') type('image/webp'),
            url('/images/wines-display-768.jpg') type('image/jpeg')
        );
    }
}

/* ========================================
   Story
   ======================================== */
.story {
    padding: 80px 0;
}

.story h2 {
    font-family: var(--heading-font);
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--navy);
    text-align: center;
}

.gold-text {
    color: var(--gold);
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.story-text {
    flex: 3;
}

.story-text p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-image {
    flex: 2;
    display: flex;
    justify-content: center;
}

.story-image img {
    width: 100%;
    border-radius: 50%;
    max-width: 350px;
}

/* ========================================
   Locations
   ======================================== */
.locations {
    padding: 80px 0;
    background: var(--light-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.location-card h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--navy);
}

.location-card p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card p i {
    color: var(--gold);
    width: 20px;
}

.location-card iframe {
    margin-top: 15px;
}

/* ========================================
   Join Team
   ======================================== */
.join-team {
    position: relative;
    padding: 100px 0;
    background-image: url('/images/wines-display-1600.jpg');
    background-image: image-set(
        url('/images/wines-display-1600.webp') type('image/webp'),
        url('/images/wines-display-1600.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .join-team {
        background-image: url('/images/wines-display-768.jpg');
        background-image: image-set(
            url('/images/wines-display-768.webp') type('image/webp'),
            url('/images/wines-display-768.jpg') type('image/jpeg')
        );
    }
}

.join-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 47, 86, 0.8);
    z-index: 1;
}

.join-team h2,
.join-team p,
.join-team a {
    position: relative;
    z-index: 2;
}

.join-team h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 38px;
    margin-bottom: 20px;
}

.join-team p {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background: var(--gold-dark);
}

/* ========================================
   Interior Content Pages
   ======================================== */
.content-section {
    padding: 70px 0;
}

.content-section--alt {
    background: var(--light-gray);
}

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section .section-heading {
    margin-bottom: 30px;
}

.content-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-medium);
}

/* Step / benefit cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-grid--four {
    grid-template-columns: repeat(4, 1fr);
}

.step-card {
    background: white;
    border: 1px solid rgba(33, 47, 86, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card i {
    font-size: 28px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.step-card h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-medium);
}

.step-card .btn-outline {
    margin-top: 18px;
    font-size: 11px;
    padding: 10px 22px;
}

.step-card a:not(.btn-outline) {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--navy);
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 15px;
}

/* FAQ accordions */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-list details {
    background: white;
    border: 1px solid rgba(33, 47, 86, 0.12);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 22px 18px;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

/* CTA band */
.cta-band {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.cta-band h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--gold);
}

.cta-band p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-primary {
    margin: 0 8px 10px;
}

.cta-band .btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin: 0 8px 10px;
    transition: all 0.3s ease;
}

.cta-band .btn-outline-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Prose (privacy policy, articles) */
.prose h2 {
    font-family: var(--heading-font);
    font-size: 26px;
    color: var(--navy);
    margin: 40px 0 15px;
}

.prose h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 20px;
    color: var(--navy);
    margin: 30px 0 12px;
}

.prose p,
.prose li {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.prose ul,
.prose ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.prose a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.prose a:hover {
    color: var(--gold-dark);
}

/* Guide articles */
.breadcrumb {
    max-width: 820px;
    margin: 25px auto 0;
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-medium);
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--gold-dark);
}

.article-header {
    max-width: 820px;
    margin: 20px auto 10px;
    padding: 0 20px;
}

.article-header h1 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 38px;
    color: var(--navy);
    margin-bottom: 12px;
}

.article-meta {
    font-size: 13px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.shop-callout {
    background: rgba(255, 206, 133, 0.18);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 25px;
    margin: 35px 0;
    text-align: center;
}

.shop-callout p {
    margin-bottom: 15px;
    color: var(--navy);
}

/* ========================================
   Animations (reduced-motion safe)
   All motion lives inside the no-preference
   media query; content is always visible
   without JS (reveal gated on html.js).
   ======================================== */
@media (prefers-reduced-motion: no-preference) {

    /* Scroll reveal */
    html.js .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    html.js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    /* Stagger cards within grids */
    html.js .categories .container > .reveal:nth-child(2),
    html.js .guides-teaser .container > .reveal:nth-child(2),
    html.js .steps-grid > .reveal:nth-child(2),
    html.js .locations-grid > .reveal:nth-child(2) {
        transition-delay: 0.1s;
    }

    html.js .categories .container > .reveal:nth-child(3),
    html.js .guides-teaser .container > .reveal:nth-child(3),
    html.js .steps-grid > .reveal:nth-child(3),
    html.js .locations-grid > .reveal:nth-child(3) {
        transition-delay: 0.2s;
    }

    html.js .steps-grid > .reveal:nth-child(4) {
        transition-delay: 0.3s;
    }

    /* Hero entrance */
    @keyframes heroFadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }

    .hero-content > * {
        animation: heroFadeUp 0.8s ease both;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.15s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    /* Button hover lift */
    .btn-shop:hover,
    .btn-hero:hover,
    .btn-outline:hover,
    .btn-primary:hover,
    .btn-outline-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(230, 183, 110, 0.35);
    }

    /* Card hover lift */
    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(33, 47, 86, 0.12);
    }
}

@media (prefers-reduced-motion: reduce) {

    /* Neutralize the whole-card hover motion from the base styles */
    .category-card:hover {
        transform: none;
    }

    .category-card:hover .card-media img {
        transform: none;
    }
}

/* ========================================
   Responsive - Tablet (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
    /* 6-item nav needs tighter spacing to avoid wrapping */
    .nav-left,
    .nav-right {
        gap: 14px;
    }

    .nav-left a,
    .nav-right a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .btn-shop {
        padding: 8px 16px;
    }

    .categories .container,
    .guides-teaser .container {
        gap: 20px;
    }
}

/* ========================================
   Responsive - Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        flex-wrap: wrap;
    }

    /* Higher specificity than ".navbar > div { display: flex }" above. */
    .navbar .nav-left,
    .navbar .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Hero */
    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 32px;
    }

    /* Categories / Guides teaser */
    .categories .container,
    .guides-teaser .container {
        grid-template-columns: 1fr;
    }

    /* Visit Us Tabs */
    .tab-panel.active {
        grid-template-columns: 1fr;
    }

    .tab-image {
        height: 300px;
    }

    /* Section Heading */
    .section-heading {
        font-size: 28px;
    }

    /* Story */
    .story-content {
        flex-direction: column;
    }

    .story-image {
        text-align: center;
        order: -1;
    }

    .story-image img {
        max-width: 250px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* Page Hero */
    .page-hero h1 {
        font-size: 36px;
    }

    /* Content pages */
    .steps-grid,
    .steps-grid--four {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .steps-grid--four {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Design tokens (added in the 2026 overhaul)
   ======================================== */
:root {
    --cream: #fbf7f0;
    --navy-700: #182342;
    --gold-100: #fff3dc;
    --open: #1f7a4d;
    --closed: #b3261e;
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-pill: 999px;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(33, 47, 86, 0.14);
}

/* ========================================
   Accessibility helpers
   ======================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 3000;
    background: var(--navy);
    color: var(--gold);
    padding: 10px 16px;
    border-radius: 0 0 var(--r-md) var(--r-md);
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

:focus-visible {
    outline: 3px solid var(--gold-dark);
    outline-offset: 2px;
}

/* ========================================
   Buttons (new system; legacy btn-* classes still work)
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    border: 2px solid transparent;
    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn--secondary {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.btn--secondary:hover {
    background: var(--navy-700);
}

.btn--ghost {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.btn--ghost:hover {
    background: var(--navy);
    color: var(--white);
}

/* ========================================
   Hours status (live via /js/hours.js, static fallback otherwise)
   ======================================== */
.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.hours-status__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-dark);
    flex: none;
}

.hours-status[data-open="true"] [data-status] {
    color: var(--open);
}

.hours-status[data-open="true"] .hours-status__dot {
    background: var(--open);
    box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.18);
}

.hours-status[data-open="false"] [data-status] {
    color: var(--closed);
}

.hours-status[data-open="false"] .hours-status__dot {
    background: var(--closed);
}

.hours-status__sep {
    color: var(--text-medium);
}

.hours-status [data-detail] {
    font-weight: 500;
    color: var(--text-medium);
}

/* ========================================
   Hours table
   ======================================== */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 12px 0;
}

.hours-table th,
.hours-table td {
    padding: 6px 8px;
    border-bottom: 1px solid rgba(33, 47, 86, 0.1);
    text-align: left;
}

.hours-table th {
    font-weight: 500;
    color: var(--text-medium);
}

.hours-table td {
    text-align: right;
    font-weight: 600;
    color: var(--navy);
}

.hours-table tr.is-closed td {
    color: var(--closed);
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
    background: var(--gold-100);
    font-weight: 700;
    color: var(--navy);
}

/* ========================================
   Store cards (home, about, contact)
   ======================================== */
.visit-us .container {
    max-width: 1100px;
}

.store-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-card__head h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 28px;
    color: var(--navy);
    margin: 0;
}

.store-card__head h3 a {
    color: inherit;
    text-decoration: none;
}

.store-card__head h3 a:hover {
    color: var(--gold-dark);
}

.store-card__tagline {
    color: var(--text-medium);
    font-size: 14px;
    margin: 2px 0 0;
}

.store-card__status {
    margin: 0;
}

.store-card__address,
.store-card__line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-style: normal;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.store-card__address i,
.store-card__line i {
    color: var(--gold-dark);
    width: 18px;
    margin-top: 4px;
    flex: none;
}

.store-card__address a,
.store-card__line a {
    color: var(--navy);
    text-decoration: none;
}

.store-card__address a:hover,
.store-card__line a:hover {
    text-decoration: underline;
}

.store-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.store-card iframe {
    margin-top: 8px;
}

/* ========================================
   Footer (four-column with store NAP)
   ======================================== */
.footer {
    text-align: left;
    padding: 56px 20px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    justify-content: flex-start;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-brand .footer-social {
    margin-bottom: 0;
}

.footer-brand .footer-social a:first-child {
    margin-left: 0;
}

.footer-heading {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin: 0 0 12px;
}

.footer-heading a {
    color: inherit;
    text-decoration: none;
}

.footer-heading a:hover {
    text-decoration: underline;
}

.footer-store address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-store a {
    color: white;
    text-decoration: none;
}

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

.footer-store p {
    margin: 0 0 8px;
    font-size: 14px;
}

.footer-hours {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-store .hours-status {
    color: white;
    font-size: 13px;
}

.footer-store .hours-status [data-detail],
.footer-store .hours-status__sep {
    color: rgba(255, 255, 255, 0.7);
}

.footer-store .hours-status[data-open="true"] [data-status] {
    color: #7fd6a5;
}

.footer-store .hours-status[data-open="false"] [data-status] {
    color: #ff9d94;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    width: fit-content;
}

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

.footer-links .shop-link {
    color: var(--gold);
    font-weight: 700;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom .footer-sub-links {
    margin-bottom: 12px;
}

/* ========================================
   Location pages
   ======================================== */
.page-hero--store {
    background-image: var(--hero-image);
    background-image: image-set(var(--hero-image-webp) type("image/webp"), var(--hero-image) type("image/jpeg"));
    height: auto;
    min-height: 360px;
    padding: 70px 20px;
}

.page-hero__kicker {
    position: relative;
    z-index: 2;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    margin: 0 0 8px;
}

.page-hero__status {
    margin-top: 16px;
}

.page-hero__status .hours-status {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: var(--r-pill);
}

.page-hero p.page-hero__status {
    text-transform: none;
    letter-spacing: 0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-medium);
}

.answer {
    font-size: 18px;
    line-height: 1.7;
    color: var(--navy);
    border-left: 4px solid var(--gold);
    padding-left: 18px;
    margin-bottom: 22px;
}

.store-facts__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

.store-facts__intro p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.store-facts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.store-facts__card {
    background: white;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}

.store-facts__card h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 24px;
    color: var(--navy);
    margin: 0 0 10px;
}

.store-facts__note {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0 0 12px;
}

.store-facts__holiday {
    font-size: 14px;
    background: var(--gold-100);
    padding: 8px 12px;
    border-radius: var(--r-sm);
    margin: 0 0 12px;
}

.store-facts__card address {
    font-style: normal;
}

.store-facts__card address p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin: 0 0 8px;
}

.store-facts__card address i {
    color: var(--gold-dark);
    width: 18px;
    margin-top: 3px;
}

.store-facts__card address a {
    color: var(--navy);
    text-decoration: none;
}

.store-facts__card address a:hover {
    text-decoration: underline;
}

.store-map {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.store-map__text .section-heading {
    justify-content: flex-start;
    font-size: 30px;
}

.store-map__text .section-heading::before {
    display: none;
}

.store-map__text p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.store-map__text h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--navy);
    margin: 22px 0 8px;
}

.store-highlights {
    padding-left: 20px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.store-map__fallback {
    font-size: 13px;
    margin-top: 8px;
}

.store-faq {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.store-faq__photo img {
    width: 100%;
    height: auto;
    border-radius: var(--r-lg);
    display: block;
}

.store-faq__list .section-heading {
    font-size: 30px;
}

/* ========================================
   Hero additions
   ======================================== */
.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-hero--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.btn-hero--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.hero-trust {
    margin: 26px 0 0;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* ========================================
   Responsive additions
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .store-card {
        padding: 24px 20px;
    }

    .store-facts__grid,
    .store-map,
    .store-faq {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .store-faq__photo {
        order: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-actions .btn-hero {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Conversion: mobile order pill, sticky bar, inline CTA, terms list
   ======================================== */
.nav-order-mobile {
    display: none;
    background: var(--gold);
    color: var(--navy);
    padding: 9px 16px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: var(--body-font);
}

.page-hero__actions {
    position: relative;
    z-index: 2;
    margin-top: 22px;
}

.page-hero p.page-hero__actions {
    text-transform: none;
    letter-spacing: 0;
}

.cta-inline {
    background: var(--gold-100);
    border-top: 1px solid rgba(230, 183, 110, 0.5);
    border-bottom: 1px solid rgba(230, 183, 110, 0.5);
    padding: 34px 0;
}

.cta-inline__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-inline h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 26px;
    color: var(--navy);
    margin: 0 0 4px;
}

.cta-inline p {
    margin: 0;
    color: var(--text-medium);
}

.cta-inline__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.terms-list {
    margin: 0;
}

.terms-list__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(33, 47, 86, 0.1);
}

.terms-list dt {
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--navy);
    font-size: 17px;
}

.terms-list dd {
    margin: 0;
    line-height: 1.7;
}

.delivery-intro {
    padding-bottom: 20px;
}

.zone-checker {
    max-width: 560px;
    margin: 36px auto 0;
    background: white;
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.zone-checker label {
    display: block;
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.zone-checker__row {
    display: flex;
    gap: 10px;
}

.zone-checker input {
    flex: 1;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid rgba(33, 47, 86, 0.3);
    border-radius: var(--r-md);
    font-size: 16px;
}

.zone-checker__result {
    margin: 12px 0 0;
    min-height: 1.5em;
}

.location-card h3 a {
    color: inherit;
    text-decoration: none;
}

.location-card h3 a:hover {
    color: var(--gold-dark);
}

/* Sticky mobile action bar */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 16px;
    }

    .nav-center {
        margin-right: auto;
    }

    .nav-center img {
        width: 56px;
        height: 56px;
    }

    .nav-order-mobile {
        display: inline-flex;
        align-items: center;
    }

    .cta-inline__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .terms-list__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    body {
        padding-bottom: calc(66px + env(safe-area-inset-bottom));
    }

    .sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1500;
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 8px;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid rgba(33, 47, 86, 0.15);
        box-shadow: 0 -4px 18px rgba(33, 47, 86, 0.12);
        backdrop-filter: blur(6px);
    }

    body.menu-open .sticky-cta {
        display: none;
    }

    .sticky-cta__order {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        background: var(--gold);
        color: var(--navy);
        border-radius: var(--r-pill);
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        font-family: var(--body-font);
    }

    .sticky-cta__btn {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        min-height: 48px;
        color: var(--navy);
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1px solid rgba(33, 47, 86, 0.2);
        border-radius: var(--r-md);
        cursor: pointer;
        list-style: none;
        font-family: var(--body-font);
    }

    .sticky-cta__btn::-webkit-details-marker {
        display: none;
    }

    .sticky-cta__btn i {
        font-size: 16px;
        color: var(--gold-dark);
    }

    .sticky-cta__menu {
        position: relative;
    }

    .sticky-cta__popover {
        position: absolute;
        bottom: calc(100% + 8px);
        right: 0;
        min-width: 220px;
        background: white;
        border-radius: var(--r-md);
        box-shadow: var(--shadow-md);
        padding: 6px;
        display: flex;
        flex-direction: column;
    }

    .sticky-cta__popover a {
        display: flex;
        flex-direction: column;
        padding: 10px 12px;
        color: var(--navy);
        text-decoration: none;
        font-weight: 600;
        border-radius: var(--r-sm);
    }

    .sticky-cta__popover a span {
        font-size: 12px;
        font-weight: 400;
        color: var(--text-medium);
    }

    .sticky-cta__popover a:hover {
        background: var(--gold-100);
    }
}

/* ========================================
   SEO/GEO additions: about blurb, FAQ page, guide cards
   ======================================== */
.about-blurb {
    background: var(--cream);
    border-top: 1px solid rgba(33, 47, 86, 0.1);
    padding: 26px 0;
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-blurb p {
    margin: 0;
    max-width: 900px;
}

.about-blurb strong {
    color: var(--navy);
}

.about-blurb a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.faq-page h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 28px;
    color: var(--navy);
    margin: 40px 0 14px;
}

.faq-page .faq-list {
    max-width: none;
    padding: 0;
}

.card-blurb {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    padding: 0 20px;
    margin: -6px 0 16px;
}

.category-card h3 a {
    color: inherit;
    text-decoration: none;
}

.category-card h3 a:hover {
    color: var(--gold-dark);
}

.cta-band p a {
    color: var(--gold);
}

/* ========================================
   Inline SVG icons (Font Awesome removed)
   ======================================== */
.icon {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -0.125em;
    flex: none;
}

.icon--facebook,
.icon--star {
    fill: currentColor;
    stroke: none;
}

.hamburger .icon {
    width: 26px;
    height: 26px;
    display: block;
}

.mobile-menu-close .icon {
    width: 30px;
    height: 30px;
    display: block;
}

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

.location-card p .icon {
    color: var(--gold);
    width: 18px;
    height: 18px;
}

.step-card .icon {
    width: 30px;
    height: 30px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.store-card__address .icon,
.store-card__line .icon,
.store-facts__card address .icon {
    color: var(--gold-dark);
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.btn .icon {
    width: 16px;
    height: 16px;
}

.sticky-cta__btn .icon {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
}

/* ========================================
   Polish: drawer, section rhythm, hover, guide tables
   ======================================== */
.navbar.is-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-section--alt,
.locations {
    background: var(--cream);
}

.btn--light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn--light:hover {
    background: var(--white);
    color: var(--navy);
}

/* Lift cards only where a hover pointer exists */
@media (hover: none) {
    .category-card:hover,
    .step-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
}

/* Guide tables */
.guide-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 15px;
}

.guide-table th,
.guide-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(33, 47, 86, 0.12);
    text-align: left;
    vertical-align: top;
}

.guide-table th {
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--navy);
    background: var(--gold-100);
    font-weight: 400;
}

.guide-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.prose .guide-table {
    display: block;
    overflow-x: auto;
}

/* Slide-in drawer replaces the full-screen overlay */
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(88vw, 380px);
    background: var(--navy);
    color: var(--white);
    z-index: 2000;
    padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
}

.mobile-menu.active {
    display: flex;
    left: auto;
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.28s ease;
    background: var(--navy);
    width: min(88vw, 380px);
    height: auto;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu.active {
        transition: none;
    }
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mobile-menu__brand {
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
}

.mobile-menu .mobile-menu-close {
    position: static;
    padding: 6px;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__links a {
    font-size: 15px;
    letter-spacing: 1.5px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--body-font);
    font-weight: 600;
}

.mobile-menu__stores {
    display: grid;
    gap: 14px;
    margin: 20px 0;
}

.mobile-menu__store {
    display: grid;
    gap: 4px;
    font-size: 13px;
}

.mobile-menu .mobile-menu__store-name {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 17px;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0;
}

.mobile-menu__store-line {
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu .mobile-menu__store-line a {
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--body-font);
    text-decoration: underline;
}

.mobile-menu__store .hours-status {
    color: var(--white);
    font-size: 13px;
}

.mobile-menu__store .hours-status [data-detail],
.mobile-menu__store .hours-status__sep {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-menu__store .hours-status[data-open="true"] [data-status] {
    color: #7fd6a5;
}

.mobile-menu__store .hours-status[data-open="false"] [data-status] {
    color: #ff9d94;
}

.mobile-menu__actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.mobile-menu__actions .btn {
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 1px;
}

.mobile-menu__actions .btn--primary {
    color: var(--navy);
}

/* Hero: a little taller, calmer overlay, room for the trust line */
.hero {
    min-height: 72vh;
}

.hero::before {
    background: linear-gradient(to bottom, rgba(33, 47, 86, 0.62), rgba(33, 47, 86, 0.3) 45%, rgba(33, 47, 86, 0.6));
}

@media (max-width: 768px) {
    .hero {
        min-height: 62vh;
    }
}

/* Accessibility: footer contrast and tap targets (Lighthouse) */
.footer-copyright {
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom .footer-sub-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
}

.footer-sub-links a {
    display: inline-block;
    padding: 10px 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.store-card__note {
    font-size: 13px;
    color: var(--text-medium);
    margin: -4px 0 0;
}

/* ========================================
   Header nav sizing + SHOP NOW pill (specificity beats ".nav-right a")
   ======================================== */
.nav-left a,
.nav-right a {
    padding: 8px 2px;
}

.nav-right a.btn-shop {
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 1.2px;
    line-height: 1;
    border-radius: var(--r-pill);
    box-shadow: 0 2px 8px rgba(230, 183, 110, 0.35);
}

.nav-right a.btn-shop::after {
    display: none;
}

@media (max-width: 1024px) {
    .nav-left a,
    .nav-right a {
        font-size: 12px;
    }

    .nav-right a.btn-shop {
        padding: 10px 20px;
    }
}

/* ========================================
   Store strip (redesigned): one status, two addresses, no phones
   ======================================== */
.store-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 9px 20px;
    background: var(--cream);
    border-bottom: 1px solid rgba(33, 47, 86, 0.1);
    font-family: var(--body-font);
    font-size: 13px;
}

.store-strip__status .hours-status {
    font-size: 13px;
    padding: 4px 12px 4px 10px;
    background: var(--white);
    border: 1px solid rgba(33, 47, 86, 0.12);
    border-radius: var(--r-pill);
}

.store-strip__stores {
    display: flex;
    align-items: center;
    gap: 0;
}

.store-strip__store {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 4px 16px;
    color: var(--navy);
    text-decoration: none;
    border-left: 1px solid rgba(33, 47, 86, 0.15);
}

.store-strip__store:first-child {
    border-left: none;
}

.store-strip__store:hover .store-strip__address {
    text-decoration: underline;
}

.store-strip__name {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 15px;
}

.store-strip__address {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .store-strip {
        flex-direction: column;
        gap: 6px;
        padding: 8px 12px;
    }

    .store-strip__stores {
        width: 100%;
        justify-content: center;
    }

    .store-strip__store {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 2px 14px;
        font-size: 12px;
    }

    .store-strip__name {
        font-size: 14px;
    }
}

/* Hero: subtitle sits under the buttons */
.hero-sub {
    margin: 26px 0 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-family: var(--body-font);
}

/* ========================================
   Third-party delivery apps
   ======================================== */
.marketplaces {
    padding: 56px 0;
    background: var(--white);
    border-top: 1px solid rgba(33, 47, 86, 0.08);
}

.marketplaces--compact {
    padding: 44px 0;
    background: var(--cream);
    border-top: none;
}

.marketplaces__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
}

.marketplaces__text h2 {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 26px;
    color: var(--navy);
    margin: 0 0 10px;
}

.marketplaces__text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.marketplaces__text a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 3px;
}

.marketplaces__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, max-content));
    gap: 12px;
    justify-content: end;
    margin: 0;
    padding: 0;
}

.marketplace-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 18px 10px 14px;
    border-radius: var(--r-md);
    border: 1px solid rgba(33, 47, 86, 0.14);
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.marketplace-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

span.marketplace-badge {
    opacity: 0.85;
}

.marketplace-badge img {
    height: 28px;
    width: auto;
    display: block;
}

.marketplace-badge__mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    flex: none;
}

.marketplace-badge--ubereats .marketplace-badge__mark { background: #06c167; }
.marketplace-badge--doordash .marketplace-badge__mark { background: #ff3008; }
.marketplace-badge--grubhub .marketplace-badge__mark { background: #f63440; }
.marketplace-badge--instacart .marketplace-badge__mark { background: #43b02a; }

@media (max-width: 768px) {
    .marketplaces__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .marketplaces__list {
        grid-template-columns: 1fr 1fr;
        justify-content: stretch;
    }

    .marketplace-badge {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   Social icons in the header and drawer (floating sidebar removed)
   ======================================== */
.nav-social {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0 4px 0 -6px;
}

.nav-right .nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    color: var(--navy);
}

.nav-right .nav-social a::after {
    display: none;
}

.nav-right .nav-social a:hover {
    background: var(--gold-100);
}

.nav-social .icon {
    width: 18px;
    height: 18px;
}

.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.mobile-menu__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.mobile-menu__social .icon {
    width: 20px;
    height: 20px;
}

.marketplace-badge__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex: none;
    display: block;
}

/* ========================================
   TYPOGRAPHY SYSTEM (2026 audit)
   ----------------------------------------
   Two families, one job each:
     Libre Baskerville (serif)  = display + headings. Italic for brand/display
                                  moments (h1, section titles, card titles),
                                  upright inside long-form articles.
     Source Sans 3 (sans)       = everything else: body, UI, labels, buttons.
   One modular scale (below). These rules come last in the file on purpose so
   they win over the older per-component sizes above.
   ======================================== */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/source-sans-3-400-700-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Source Sans 3';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/source-sans-3-400-italic.woff2') format('woff2');
}

:root {
    --body-font: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Scale (16px base) */
    --fs-caption: 0.8125rem;   /* 13px  captions, meta, footer links */
    --fs-small: 0.9375rem;     /* 15px  secondary text, card blurbs, FAQ answers */
    --fs-body: 1.0625rem;      /* 17px  body copy (Source Sans runs small) */
    --fs-lead: 1.1875rem;      /* 19px  answer paragraphs, intros */
    --fs-h4: 1.25rem;          /* 20px  small headings: step cards, footer, prose h3 */
    --fs-h3: 1.625rem;         /* 26px  card titles */
    --fs-h2: clamp(1.875rem, 1.45rem + 1.7vw, 2.5rem);   /* 30–40px section titles */
    --fs-h1: clamp(2.375rem, 1.6rem + 3vw, 3.5rem);      /* 38–56px page titles */
    --fs-label: 0.8125rem;     /* 13px  uppercase UI labels */
    --fs-nav: 0.875rem;        /* 14px  header nav */

    --track-label: 0.1em;      /* uppercase labels and buttons */
    --track-kicker: 0.25em;    /* hero sub-lines and kickers */

    --lh-tight: 1.15;
    --lh-heading: 1.25;
    --lh-body: 1.65;
    --lh-prose: 1.75;
}

/* --- Base --- */
body {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

/* --- Display headings: italic serif --- */
.hero h1,
.page-hero h1,
.article-header h1 {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-h1);
    line-height: var(--lh-tight);
    letter-spacing: -0.01em;
}

.section-heading,
.cta-band h2,
.join-team h2,
.story h2,
.faq-page h2,
.cta-inline h2,
.marketplaces__text h2,
.store-facts__card h2,
.store-map__text .section-heading,
.store-faq__list .section-heading {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-h2);
    line-height: var(--lh-heading);
}

/* Secondary section titles stay a step smaller than the page's main section titles */
.store-facts__card h2,
.cta-inline h2,
.marketplaces__text h2,
.faq-page h2 {
    font-size: var(--fs-h3);
}

/* --- Card / item titles --- */
.category-card h3,
.store-card__head h3,
.location-card h3,
.tab-text h3 {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-h3);
    line-height: var(--lh-heading);
}

.step-card h3,
.footer-heading,
.store-map__text h3,
.zone-checker label,
.mobile-menu__brand,
.mobile-menu .mobile-menu__store-name,
.terms-list dt {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-h4);
    line-height: var(--lh-heading);
}

/* --- Long-form articles: upright serif headings for readability --- */
.prose h2 {
    font-family: var(--heading-font);
    font-style: normal;
    font-weight: 700;
    font-size: var(--fs-h3);
    line-height: var(--lh-heading);
    margin: 40px 0 14px;
}

.prose h3 {
    font-family: var(--heading-font);
    font-style: normal;
    font-weight: 700;
    font-size: var(--fs-h4);
    margin: 28px 0 10px;
}

.prose p,
.prose li,
.story-text p,
.store-facts__intro p,
.store-map__text p,
.terms-list dd {
    font-size: var(--fs-body);
    line-height: var(--lh-prose);
}

.answer {
    font-size: var(--fs-lead);
    line-height: 1.6;
}

.content-intro,
.card-blurb,
.step-card p,
.faq-list details p,
.footer-tagline,
.store-card__tagline,
.marketplaces__text p,
.about-blurb,
.store-facts__note,
.store-facts__holiday,
.cta-band p,
.cta-inline p {
    font-size: var(--fs-small);
    line-height: var(--lh-body);
}

.faq-list summary {
    font-size: var(--fs-body);
    font-weight: 600;
}

/* --- UI labels: uppercase sans, one tracking value --- */
.nav-left a,
.nav-right a,
.footer-nav a,
.footer-links a,
.mobile-menu__links a {
    font-family: var(--body-font);
    font-weight: 600;
    letter-spacing: var(--track-label);
}

.nav-left a,
.nav-right a {
    font-size: var(--fs-nav);
}

.footer-nav a,
.footer-links a,
.footer-sub-links a,
.article-meta,
.page-hero__kicker {
    font-size: var(--fs-caption);
}

.article-meta,
.page-hero__kicker,
.hero p,
.hero-sub,
.page-hero p:not(.page-hero__status):not(.page-hero__actions),
.announcement-bar {
    letter-spacing: var(--track-kicker);
    font-size: var(--fs-caption);
    text-transform: uppercase;
}

.announcement-bar {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
}

.nav-center span,
.footer-logo span {
    font-family: var(--heading-font);
    font-size: var(--fs-caption);
    letter-spacing: 0.25em;
}

/* --- Buttons: one voice --- */
.btn,
.btn-shop,
.btn-hero,
.btn-primary,
.btn-outline,
.btn-outline-light,
.sticky-cta__order,
.nav-order-mobile,
.mobile-menu__actions .btn {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: var(--fs-label);
    letter-spacing: var(--track-label);
    text-transform: uppercase;
}

.sticky-cta__btn {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
}

/* --- Status + strip --- */
.hours-status {
    font-family: var(--body-font);
    font-size: var(--fs-small);
    font-weight: 600;
}

.store-strip {
    font-size: var(--fs-small);
}

.store-strip__status .hours-status {
    font-size: var(--fs-caption);
}

.store-strip__name {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1rem;
}

.store-card__address,
.store-card__line,
.store-facts__card address p,
.location-card p {
    font-size: var(--fs-small);
}

/* --- Tables --- */
.hours-table,
.guide-table {
    font-size: var(--fs-small);
}

.guide-table th {
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    font-size: var(--fs-small);
}

@media (max-width: 768px) {
    :root {
        --fs-body: 1rem;
        --fs-lead: 1.125rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: var(--fs-nav);
    }
}

/* ========================================
   Storefront photos: responsive store hero + store card photo
   ======================================== */
.page-hero--responsive {
    background-position: var(--hero-pos, center);
    background-image: var(--hero-image);
    background-image: image-set(var(--hero-image-webp) type("image/webp"), var(--hero-image) type("image/jpeg"));
    min-height: 440px;
}

.page-hero--responsive::before {
    background: linear-gradient(to bottom, rgba(33, 47, 86, 0.45), rgba(33, 47, 86, 0.25) 45%, rgba(33, 47, 86, 0.7));
}

@media (max-width: 1280px) {
    .page-hero--responsive {
        background-image: var(--hero-1280);
        background-image: image-set(var(--hero-1280-webp) type("image/webp"), var(--hero-1280) type("image/jpeg"));
    }
}

@media (max-width: 768px) {
    .page-hero--responsive {
        background-image: var(--hero-768);
        background-image: image-set(var(--hero-768-webp) type("image/webp"), var(--hero-768) type("image/jpeg"));
        min-height: 320px;
    }
}

.store-card--photo {
    padding-top: 0;
    overflow: hidden;
}

.store-card__photo {
    display: block;
    margin: 0 -32px 18px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--navy);
}

.store-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .store-card--photo:hover .store-card__photo img {
        transform: scale(1.03);
    }
}

@media (max-width: 768px) {
    .store-card__photo {
        margin: 0 -20px 16px;
    }
}

/* Homepage category cards: portrait frame so the product shots show the whole bottle */
.categories .card-media {
    aspect-ratio: 4 / 5;
    height: auto;
}

.categories .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
