/* ============================================
   ZOOM CAFE BAR — STYLESHEET
   Brand colours live in :root — change them here
   to match your exact logo and the whole site updates.
   ============================================ */

:root {
    /* ===== BRAND COLOURS (sampled from official Zoom Cafe logo) ===== */
    --primary:        #1F4A27;   /* Zoom forest green — dominant logo colour */
    --primary-dark:   #143218;
    --primary-light:  #2C6837;
    --accent:         #9C3630;   /* Zoom burgundy — logo accent circle */
    --accent-dark:    #7A2A24;
    --accent-light:   #B7463F;
    --dark:           #1A1410;
    --darker:         #0F0B08;
    --cream:          #FAF6F0;
    --cream-warm:     #F2EBDD;
    --text:           #2C2520;
    --text-muted:     #6B635B;
    --line:           #E5DDD0;
    --white:          #FFFFFF;
    --success:        #2E7D32;
    --error:          #C62828;

    /* ===== TYPOGRAPHY — display font matches logo style ===== */
    --font-display:   'Bowlby One', 'Anton', 'Impact', sans-serif;
    --font-heading:   'Bowlby One', 'Anton', 'Impact', sans-serif;
    --font-body:      'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ===== SPACING / LAYOUT ===== */
    --container:      1200px;
    --radius:         8px;
    --radius-lg:      16px;
    --shadow-sm:      0 2px 8px rgba(26, 20, 16, .08);
    --shadow:         0 6px 24px rgba(26, 20, 16, .12);
    --shadow-lg:      0 16px 48px rgba(26, 20, 16, .18);
    --transition:     .3s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400; /* Bowlby One has only one weight */
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: .5em;
    letter-spacing: -0.5px;
}
/* Smaller headings stay in body font for readability — Bowlby One is too chunky at small sizes */
h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: .5em;
    letter-spacing: -0.2px;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
p  { margin-bottom: 1em; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: var(--white) !important; }
.btn-primary:hover  { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover  { background: var(--white); color: var(--dark) !important; }
.btn-dark     { background: var(--dark); color: var(--white) !important; }
.btn-dark:hover { background: var(--darker); }
.btn-lg       { padding: 18px 40px; font-size: 15px; }

/* ============================================
   TOPBAR — fixed at top, solid Zoom-logo green with white text
   ============================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    background: var(--primary);     /* solid Zoom green */
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
    transition: opacity .35s ease, transform .35s ease;
}
.topbar a       { color: var(--white); }
.topbar a:hover { color: var(--cream-warm); }
.topbar-left i  { color: var(--white); }
.topbar-right a {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
}
.topbar-right a:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}
.topbar.faded {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--accent); }
.topbar-left  { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left i { color: var(--accent); margin-right: 4px; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    transition: all var(--transition);
}
.topbar-right a:hover { background: var(--primary); border-color: var(--primary); }
@media (max-width: 768px) {
    .hide-sm { display: none; }
}

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: fixed;
    top: 38px;       /* sits flush below the solid-green topbar */
    left: 0; right: 0;
    z-index: 100;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: none;
    padding-bottom: 24px;  /* extra room for the fade-out gradient */
    transition: top .35s ease, background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: var(--shadow);
    padding-bottom: 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    gap: 24px;
    transition: padding .3s ease;
}
.site-header.scrolled .header-inner {
    padding: 8px 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}
.logo img {
    height: 120px;
    width: auto;
    transition: height .3s ease;
}
.site-header.scrolled .logo img { height: 70px; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1;
}
.logo-text small {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--dark);
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.main-nav li a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}
.main-nav li a:not(.btn):hover,
.main-nav li a.active {
    color: var(--primary);
}
.main-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-cta {
    margin-left: 12px;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none; border: none;
    width: 40px; height: 40px;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
        box-shadow: var(--shadow);
    }
    .main-nav.open { max-height: 600px; }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px;
        gap: 0;
    }
    .main-nav li a { padding: 14px 16px; }
    .nav-cta { margin: 12px 0 0; text-align: center; }
}

/* ============================================
   HERO SLIDER — full viewport height, image extends fully
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--dark);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-color: var(--dark);
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.55) 100%);
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-slide.active .hero-content {
    animation: heroIn 1s ease forwards;
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
}
.hero-content .eyebrow {
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}
.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin-bottom: 32px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* dots */
.hero-dots {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px;
    z-index: 5;
}
.hero-dots button {
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dots button.active {
    background: var(--white);
    width: 36px;
    border-radius: 8px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    z-index: 5;
    font-size: 18px;
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
@media (max-width: 768px) {
    .hero-arrow { display: none; }
}

/* fallback gradients used while user adds real photos */
.hero-slide.fallback-1 { background-image: linear-gradient(135deg, #1F4A27 0%, #143218 100%); }
.hero-slide.fallback-2 { background-image: linear-gradient(135deg, #9C3630 0%, #7A2A24 100%); }
.hero-slide.fallback-3 { background-image: linear-gradient(135deg, #1F4A27 0%, #9C3630 100%); }
.hero-slide.fallback-4 { background-image: linear-gradient(135deg, #1A1410 0%, #1F4A27 100%); }

/* ============================================
   SECTIONS / GENERIC
   ============================================ */
section { padding: 80px 0; }
.section-title {
    text-align: center;
    margin-bottom: 56px;
}
.section-title .eyebrow {
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
}

/* divider with leaf */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto;
    color: var(--primary);
}
.divider::before, .divider::after {
    content: '';
    height: 1px; width: 60px;
    background: var(--primary);
    opacity: .4;
}

/* ============================================
   INTRO / WELCOME
   ============================================ */
.intro {
    background: var(--cream);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}
.intro-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 3/4;
    object-fit: cover;
}
.intro-images img:nth-child(2) { margin-top: 48px; aspect-ratio: 4/5; }
.intro-images .img-fallback {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 48px;
}
.intro-images .img-fallback:nth-child(2) {
    margin-top: 48px;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.intro-text .eyebrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.intro-text h2 { margin-bottom: 16px; }
.intro-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 17px; }
.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}
.intro-features div {
    display: flex; gap: 12px; align-items: center;
}
.intro-features i {
    color: var(--primary);
    font-size: 22px;
    width: 36px;
}
.intro-features strong { color: var(--dark); font-size: 15px; }

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

/* ============================================
   FEATURED MENU CARDS
   ============================================ */
.featured-bg {
    background: var(--dark);
    color: var(--cream);
    position: relative;
}
.featured-bg .section-title h2 { color: var(--white); }
.featured-bg .section-title p { color: rgba(255,255,255,.7); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card .badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.menu-card .price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.menu-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}
.menu-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}
.menu-card .tags {
    display: flex; gap: 6px; margin-top: 12px;
}
.menu-card .tag {
    background: var(--cream-warm);
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}
.menu-card .tag.veg { background: #e8f5e9; color: #2e7d32; }
.menu-card .tag.vegan { background: #e0f2e0; color: #1b5e20; }
.menu-card .tag.gf { background: #fff3e0; color: #e65100; }

/* ============================================
   FULL MENU PAGE
   ============================================ */
.menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 48px;
    overflow-x: auto;
    padding: 4px 4px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
@media (max-width: 1100px) {
    .menu-tabs { justify-content: flex-start; }
}
.menu-tabs button {
    background: transparent;
    border: 2px solid var(--line);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.menu-tabs button:hover,
.menu-tabs button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.menu-section { margin-bottom: 64px; }
.menu-section h2 {
    text-align: center;
    margin-bottom: 8px;
}
.menu-section .section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
}
.menu-item {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--line);
}
.menu-item-info { flex: 1; }
.menu-item-info h4 {
    font-family: var(--font-heading);
    font-size: 19px;
    margin-bottom: 4px;
    display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.menu-item-info p { font-size: 14px; color: var(--text-muted); margin: 0; }
.menu-item-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    padding-top: 2px;
}
.dot-leader {
    flex: 1;
    border-bottom: 2px dotted var(--line);
    margin: 0 8px 6px;
    align-self: flex-end;
    min-width: 20px;
}
.diet-icons { display: inline-flex; gap: 4px; }
.diet-icons span {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--cream-warm);
    color: var(--text-muted);
}
.diet-icons .v  { background: #e8f5e9; color: #2e7d32; }
.diet-icons .vg { background: #e0f2e0; color: #1b5e20; }
.diet-icons .gf { background: #fff3e0; color: #e65100; }

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

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
    background: var(--cream-warm);
    position: relative;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}
.review-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 8px; left: 24px;
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--primary);
    opacity: .15;
    line-height: 1;
}
.review-stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.review-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.review-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--dark); }
.review-source { font-size: 12px; color: var(--text-muted); }
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* google rating banner */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.google-rating .big-num {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.google-rating .stars {
    color: #F5A623;
    font-size: 24px;
    letter-spacing: 4px;
}
.google-rating .meta { color: var(--text-muted); font-size: 14px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    background: var(--cream-warm);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%);
    color: var(--white);
    display: flex; align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 48px;
    opacity: .8;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.lightbox .close {
    position: absolute;
    top: 24px; right: 24px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
    /* Default fallback when no inline background-image is set. Pages override
       background-image inline so url() resolves relative to the page (not the stylesheet). */
    background: linear-gradient(135deg, var(--dark), #3a2a1f);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    /* Top padding clears the fixed topbar (~38px) + header (~140px) = ~178px,
       plus a comfortable buffer so the h1 sits well clear of the navigation. */
    padding: 230px 0 90px;
    min-height: 50vh;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header > .container {
    position: relative;
    z-index: 1;
}
.page-header > .container {
    position: relative;
    z-index: 1;
}
.page-header h1 {
    text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.page-header .breadcrumb {
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(200,16,46,.3) 0%, transparent 50%);
}
.page-header h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    position: relative;
    margin-bottom: 12px;
}
.page-header .breadcrumb {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    position: relative;
}
.page-header .breadcrumb a { color: var(--accent); }

/* ============================================
   FORMS
   ============================================ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,16,46,.15);
    background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 24px; }

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* flash messages */
.flash-wrap { padding-top: 24px; }
.flash {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    font-weight: 500;
}
.flash-success { background: #e6f7e6; border-left: 4px solid var(--success); color: var(--success); }
.flash-error   { background: #fdecea; border-left: 4px solid var(--error);   color: var(--error); }
.flash-info    { background: #e3f2fd; border-left: 4px solid #1976d2;        color: #1976d2; }

/* ============================================
   CONTACT / BOOKING SPLIT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info-card {
    background: var(--dark);
    color: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card .info-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-info-card .info-block:last-child { border: 0; }
.contact-info-card .info-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.contact-info-card h4 { color: var(--white); font-size: 16px; margin-bottom: 4px; font-family: var(--font-body); font-weight: 600; }
.contact-info-card p, .contact-info-card a { color: rgba(255,255,255,.85); font-size: 14px; margin: 0; }
.contact-info-card a:hover { color: var(--accent); }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 48px;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FEATURE CARDS (about page) — 3 equal columns on desktop
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.feature-card p { margin: 0; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 26px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================
   CTA STRIP — burgundy for warmth + contrast against green primary
   ============================================ */
.cta-strip {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-strip p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto 24px; position: relative; }
.cta-strip .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: var(--darker);
    color: var(--cream);
    padding-top: 80px;
    overflow: hidden;
    isolation: isolate;
}

/* Background image with filter — placed via CSS so we can layer + filter it */
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('../images/482084008_1181555250639235_6076570629741869963_n.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(.35) saturate(110%);
    transform: scale(1.05);
    opacity: .65;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        rgba(15, 11, 8, 0.7) 0%,
        rgba(31, 74, 39, 0.55) 50%,
        rgba(15, 11, 8, 0.92) 100%);
}

/* Social rail — vertical column of circles floating on the right edge */
.footer-social-rail {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-social-rail a {
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(6px);
    transition: all var(--transition);
    font-size: 16px;
    text-decoration: none;
}
.footer-social-rail a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateX(-4px) scale(1.08);
    box-shadow: 0 8px 24px rgba(156, 54, 48, .4);
}
@media (max-width: 992px) {
    .footer-social-rail {
        position: relative;
        top: auto; right: auto; transform: none;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto 32px;
        max-width: 600px;
    }
}

/* Footer logo */
.footer-logo-img {
    display: inline-block;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo-img img {
    height: 130px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .5));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    padding-right: 100px;  /* leave room for social rail on right */
}
@media (max-width: 992px) {
    .footer-grid { padding-right: 0; }
}
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-col p, .footer-col address, .footer-col li { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; }
.footer-col address { font-style: normal; margin-bottom: 16px; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--accent); }
.footer-col i { color: var(--primary); width: 20px; }
.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary) !important;
    border: 0 !important;
    padding: 0 !important;
    margin-bottom: 12px;
    display: block !important;
    letter-spacing: 1px;
}
.footer-logo small {
    display: block;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--cream) !important;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.hours-list li.closed span:last-child { color: var(--primary-light); font-weight: 600; }
.quick-links li { padding: 4px 0; }
.socials { display: flex; gap: 12px; margin-top: 12px; }
.socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--cream);
    transition: all var(--transition);
}
.socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
    background: rgba(0,0,0,.4);
    padding: 20px 0;
    margin-top: 16px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.footer-bottom p { margin: 0; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================
   ANIMATIONS / UTILS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 24px; }

/* ============================================
   ADMIN — auth pages (login / magic link)
   ============================================ */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background:
        linear-gradient(135deg, rgba(31,74,39,0.92) 0%, rgba(15,11,8,0.95) 60%, rgba(156,54,48,0.88) 100%),
        url('../images/482084008_1181555250639235_6076570629741869963_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.admin-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 0, transparent 40%);
    pointer-events: none;
}

.admin-auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
    padding: 48px 40px 36px;
    position: relative;
    z-index: 1;
    animation: authCardIn .55s cubic-bezier(.2,.8,.2,1);
}
@keyframes authCardIn {
    from { opacity: 0; transform: translateY(16px) scale(.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.admin-auth-logo {
    display: block;
    width: clamp(180px, 45%, 240px);
    margin: 0 auto 24px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(31,74,39,.25));
}

.admin-auth-card h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.2px;
}
.admin-auth-card .lede {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.5;
}

.admin-auth-card .form-group input {
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    background: var(--cream);
    border-radius: 10px;
    font-size: 15px;
    transition: all .2s ease;
}
.admin-auth-card .form-group input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(31,74,39,.12);
}
.admin-auth-card .form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.admin-auth-card .btn {
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 1.2px;
}
.admin-auth-card .btn-primary {
    box-shadow: 0 6px 18px rgba(31,74,39,.3);
}
.admin-auth-card .btn-primary:hover {
    box-shadow: 0 10px 24px rgba(31,74,39,.4);
}

.admin-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 14px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.admin-auth-divider::before,
.admin-auth-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid var(--line);
}

.admin-auth-magic {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white) !important;
    border: 0;
    box-shadow: 0 6px 18px rgba(156,54,48,.28);
}
.admin-auth-magic:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(156,54,48,.4);
    color: var(--white) !important;
}

.admin-auth-back {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-muted);
}
.admin-auth-back a {
    color: var(--text-muted);
    text-decoration: none;
}
.admin-auth-back a:hover { color: var(--primary); }

.admin-auth-card .countdown-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(31,74,39,.08);
    border-radius: 30px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}
.admin-auth-card .countdown-pill.expired {
    background: rgba(198,40,40,.08);
    color: var(--error);
}

/* old class kept for backward compat with other admin uses */
.admin-login .form-card {
    width: 100%;
    max-width: 460px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    background: var(--cream);
}
.admin-side {
    background: var(--dark);
    color: var(--cream);
    padding: 24px 16px;
}
.admin-side-logo {
    display: block;
    padding: 8px 12px 24px;
    margin: 0 -16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.admin-side-logo img {
    width: 100%;
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
    transition: transform .25s ease;
}
.admin-side-logo:hover img { transform: scale(1.04); }

.admin-side-divider {
    height: 1px;
    background: rgba(255,255,255,.06);
    margin: 16px 0;
}

.admin-side-foot {
    margin-top: auto;
    padding: 16px 14px;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    color: rgba(255,255,255,.5);
    font-size: 12px;
    line-height: 1.5;
}
.admin-side-foot strong {
    color: var(--cream);
    word-break: break-all;
}

.admin-side {
    display: flex;
    flex-direction: column;
}

.admin-side a {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,.75);
    border-radius: var(--radius);
    margin-bottom: 4px;
    font-size: 15px;
    transition: all var(--transition);
}
.admin-side a:hover, .admin-side a.active {
    background: rgba(255,255,255,.05);
    color: var(--white);
}
.admin-side a.active { border-left: 3px solid var(--primary); }
.admin-side a i { width: 22px; }
.admin-main { padding: 32px; }
.admin-main h1 { font-size: 28px; margin-bottom: 24px; }

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}
.stat-card .num {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.stat-card .label { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

table.admin-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-collapse: collapse;
}
table.admin-table th {
    background: var(--cream-warm);
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
table.admin-table td {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.status-badge {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-completed { background: #d1ecf1; color: #0c5460; }

@media (max-width: 768px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-side { display: none; }
}

/* ============================================
   ANALYTICS DASHBOARD (re-uses .admin-* shell)
   ============================================ */
.an-rangebar {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.an-rangebar a {
    padding: 7px 16px;
    border: 1.5px solid var(--line);
    border-radius: 30px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    background: var(--white);
    transition: all .2s ease;
}
.an-rangebar a:hover { border-color: var(--primary); color: var(--primary); }
.an-rangebar a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.an-section-title {
    margin: 32px 0 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.an-section-title h2 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.2px;
}
.an-section-title small {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.an-grid {
    display: grid;
    gap: 20px;
}
.an-grid--2 { grid-template-columns: repeat(2, 1fr); }
.an-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .an-grid--2, .an-grid--3 { grid-template-columns: 1fr; } }

.an-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
}

.an-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.an-card h3 {
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.2px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.an-card h3 small {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.an-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(31, 74, 39, .08);
    color: var(--primary);
}
.an-pill--accent { background: rgba(156, 54, 48, .08); color: var(--accent); }
.an-pill--gold   { background: rgba(245, 166, 35, .12); color: #b07f10; }

.an-pctbar {
    height: 5px;
    background: var(--cream-warm);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}
.an-pctbar > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.an-stat .num { color: var(--primary); }
.an-stat--accent .num { color: var(--accent); }

.an-cell-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.an-cell-muted {
    color: var(--text-muted);
    font-size: 12px;
}
.an-cell-truncate {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.an-vital--good { color: var(--success); font-weight: 600; }
.an-vital--meh  { color: #b07f10;        font-weight: 600; }
.an-vital--bad  { color: var(--error);   font-weight: 600; }

/* ============================================
   COOKIE CONSENT BANNER (Zoom-themed)
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(15, 11, 8, 0.96);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--primary);
    padding: 18px 24px;
    transform: translateY(100%);
    transition: transform .4s ease;
    color: var(--cream);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-text { font-size: 14px; line-height: 1.55; flex: 1; min-width: 280px; margin: 0; color: rgba(255,255,255,.85); }
.cookie-banner-text a { color: var(--cream-warm); text-decoration: underline; }
.cookie-banner-text a:hover { color: var(--white); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all .2s;
    border: 2px solid transparent;
    font-family: var(--font-body);
}
.cookie-btn-accept { background: var(--primary);     color: var(--white); border-color: var(--primary); }
.cookie-btn-accept:hover { background: var(--primary-light); border-color: var(--primary-light); }
.cookie-btn-reject { background: transparent;        color: var(--cream); border-color: rgba(255,255,255,.3); }
.cookie-btn-reject:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; text-align: center; gap: 14px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 16px 48px 16px 20px;
    font-weight: 600;
    color: var(--text);
    font-size: 16px;
    position: relative;
    line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--primary);
    transition: transform .2s ease;
    font-weight: 400;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-a {
    padding: 0 20px 18px;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 15px;
}
.faq-a a { color: var(--primary); text-decoration: underline; }
.faq-a a:hover { color: var(--accent); }

/* ============================================
   Breadcrumb (semantic <nav>)
   ============================================ */
.breadcrumb {
    display: inline-block;
    font-size: 14px;
    color: rgba(255,255,255,.85);
    letter-spacing: .3px;
}
.breadcrumb a { color: #fff; text-decoration: underline; opacity: .9; }
.breadcrumb a:hover { opacity: 1; }

/* ============================================
   Footer — "Explore more" cross-link strip
   ============================================ */
.footer-explore {
    padding: 24px 0 8px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 16px;
}
.footer-explore h4 {
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-weight: 600;
    opacity: .8;
}
.footer-explore ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 0;
    margin: 0;
}
.footer-explore li a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}
.footer-explore li a:hover { color: var(--white); }
.footer-explore li a i { color: var(--primary-light); margin-right: 6px; }
