/* ================================================
   John Mills Himself — Cafe Website Styles
   ================================================ */

/* --- Custom Properties --- */
:root {
    --bg:           #f7f3ee;
    --bg-alt:       #ece5db;
    --panel:        #f7f3ee;
    --text:         #2b1f14;
    --text-muted:   #6b5643;
    --heading:      #3a2a1a;
    --accent:       #8b5e3c;
    --accent-hover: #6d4528;
    --accent-light: #f0e2d3;
    --green:        #5c6b4e;
    --green-light:  #e8ede4;
    --line:         #d6cbbf;
    --overlay:      rgba(43, 31, 20, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3 {
    margin: 0 0 12px;
    font-family: "DM Serif Display", Georgia, serif;
    color: var(--heading);
    line-height: 1.3;
    letter-spacing: 0;
}

p {
    margin: 0 0 16px;
    color: var(--text-muted);
}

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

/* --- Layout Utilities --- */
.container {
    width: min(1120px, 100% - 2rem);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    background: var(--bg);
}

.section-alt {
    background: var(--bg-alt);
}

@keyframes bgShimmer {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Parallax iridescent break — used between sections as a visual separator */
.iridescent-break {
    height: 200px;
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f, #daa520, #8b5e3c);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: bgShimmer 8s ease infinite;
    position: relative;
}

.iridescent-break::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 20, 0.4);
}

.iridescent-break-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.iridescent-break-content h3 {
    color: #fff;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-family: "DM Serif Display", Georgia, serif;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.iridescent-break-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 0;
    font-size: 0.9375rem;
}

@media (max-width: 719px) {
    .iridescent-break {
        height: 150px;
        background-attachment: scroll;
    }
}

/* Parallax section background — applied to existing sections */
.section-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 20, 0.6);
    z-index: 0;
}

.section-parallax > .container {
    position: relative;
    z-index: 1;
}

.section-parallax .eyebrow {
    background: linear-gradient(90deg, #cd853f, #f5deb3, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-parallax h2 {
    color: #fff;
}

.section-parallax p {
    color: rgba(255, 255, 255, 0.8);
}

.section-parallax .hours-day {
    color: #fff;
}

.section-parallax .hours-time {
    color: rgba(255, 255, 255, 0.7);
}

.section-parallax .hours-note {
    color: #cd853f;
}

.section-parallax .hours-list li {
    border-color: rgba(255, 255, 255, 0.15);
}

.section-parallax .visit-info p {
    color: rgba(255, 255, 255, 0.8);
}

.section-parallax .visit-info .info-icon {
    color: #cd853f;
}

.section-parallax .map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-parallax .map-placeholder .placeholder-text {
    color: rgba(255, 255, 255, 0.5);
}

.section-parallax .faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-parallax .faq-question {
    color: #fff;
}

.section-parallax .faq-question:hover {
    color: #cd853f;
}

.section-parallax .faq-answer p {
    color: rgba(255, 255, 255, 0.75);
}

.section-parallax .faq-icon {
    color: #cd853f;
}

.section-parallax .review-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-parallax .review-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.section-parallax .review-card-name {
    color: #fff;
}

.section-parallax .review-card-date {
    color: rgba(255, 255, 255, 0.5);
}

.section-parallax .review-card-author {
    border-color: rgba(255, 255, 255, 0.12);
}

.section-parallax .reviews-score {
    color: rgba(255, 255, 255, 0.7);
}

.section-parallax .product-card {
    background: rgba(255, 255, 255, 0.95);
}

/* Tagline inside parallax section */
.parallax-tagline {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.parallax-tagline h3 {
    color: #fff;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-family: "DM Serif Display", Georgia, serif;
    margin: 0 0 8px;
}

.parallax-tagline p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9375rem;
}

@media (max-width: 719px) {
    .section-parallax {
        background-attachment: scroll;
    }
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

.section-header p {
    font-size: 1.0625rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #cd853f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    padding: 10px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: top 0.2s ease;
    z-index: 100;
}

.skip-link:focus-visible {
    top: 12px;
}

/* --- Header --- */
.site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(247, 243, 238, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 75px;
    width: auto;
    transition: filter 0.3s ease;
}

.scrolled .brand-logo {
    filter: brightness(0.2);
}

@media (max-width: 719px) {
    .brand-logo {
        height: 55px;
    }

    .header-inner {
        padding: 12px 0;
    }
}

.nav-links {
    display: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.15s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.scrolled .nav-links a {
    color: var(--text);
}

.scrolled .nav-links a:hover,
.scrolled .nav-links a:focus-visible {
    background-color: var(--accent-light);
    color: var(--accent);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f, #8b5e3c);
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
    color: #fff;
    font-weight: 600;
    margin-left: 6px;
    border: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
    animation: shimmer 2s ease infinite;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
    color: #fff;
}

.scrolled .nav-links .nav-cta {
    color: #fff;
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f7f3ee;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.scrolled .nav-toggle span {
    background: var(--heading);
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 243, 238, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-open .mobile-nav {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.15s ease;
}

.mobile-nav a:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, background-position 0.3s ease, border-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn.primary {
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f, #8b5e3c);
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(139, 94, 60, 0.3);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 134, 11, 0.4), 0 0 20px rgba(184, 134, 11, 0.15);
    animation: shimmer 2s ease infinite;
    outline: none;
}

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    outline: none;
}

.btn.outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    position: relative;
}

.btn.outline:hover,
.btn.outline:focus-visible {
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f, #8b5e3c);
    background-size: 300% 300%;
    animation: shimmer 3s ease infinite;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* --- Shimmer Keyframes --- */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.shimmer {
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
}

/* --- Hero --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2b1f14;
    overflow: hidden;
}

/* Video slideshow background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-video.active {
    opacity: 1;
}

/* Animated gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 31, 20, 0.6), rgba(139, 94, 60, 0.25), rgba(43, 31, 20, 0.55), rgba(184, 134, 11, 0.15), rgba(43, 31, 20, 0.65));
    background-size: 400% 400%;
    animation: overlayShift 10s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes overlayShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
}

/* Staggered hero content fade-in */
.hero .eyebrow {
    background: linear-gradient(90deg, #cd853f, #f5deb3, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-logo {
    max-width: 650px;
    width: 100%;
    height: auto;
    margin: 0 auto -40px;
    clip-path: inset(0 0 20% 0);
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    animation: heroLogoIn 1s ease forwards;
    animation-delay: 0.6s;
}

.hero .tagline {
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.5s;
}

.hero-address {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.8s;
}

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

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text .eyebrow {
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    position: relative;
}

.about-text h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8b5e3c, #b8860b, #cd853f);
    border-radius: 2px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.about-image {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
}

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

/* --- Menu Section --- */
.menu-section {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.menu-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.menu-ornament {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 0.5em;
    opacity: 0.5;
    margin: 8px 0;
}

.menu-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.menu-header h2 {
    color: var(--heading);
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 8px;
}

.menu-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

/* Menu board — the main two-column layout */
.menu-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.menu-col {
    display: flex;
    flex-direction: column;
}

.menu-divider {
    display: none;
}

/* Individual dish */
.menu-dish {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.menu-dish:last-child {
    border-bottom: none;
}

.menu-dish--highlight {
    background: rgba(139, 94, 60, 0.06);
    border-radius: 12px;
    padding: 18px 16px;
    margin: 4px -16px;
    border-bottom: none;
}

.menu-dish-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu-dish-name {
    font-weight: 700;
    color: var(--heading);
    font-size: 1rem;
    white-space: nowrap;
}

.menu-dish-line {
    flex: 1;
    border-bottom: 1px dotted var(--line);
    min-width: 16px;
    margin-bottom: 4px;
}

.menu-dish-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.0625rem;
    white-space: nowrap;
}

.menu-dish-price::before {
    content: "$";
    font-size: 0.75em;
    opacity: 0.7;
}

.menu-dish-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 6px 0 0;
    line-height: 1.5;
}

.menu-dish-tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.menu-dish-tags span {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Add-ons */
.menu-addons {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    margin-bottom: 40px;
}

.menu-addons h3 {
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: normal;
    margin-bottom: 16px;
    text-align: center;
}

.menu-addons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.menu-addons-list span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Menu footer (legend, CTA, note) */
.menu-footer {
    text-align: center;
}

.menu-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 32px;
}

.menu-legend span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.menu-legend strong {
    color: var(--green);
    margin-right: 2px;
}

.menu-view-btn {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.menu-view-btn:hover,
.menu-view-btn:focus-visible {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.menu-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

/* --- Coffee Grid (replaces menu modal) --- */
.coffee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.coffee-card {
    background: linear-gradient(160deg, #faf6f1 0%, #f5ece0 40%, #f0e2cc 70%, #f5ece0 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.coffee-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(184, 134, 11, 0.06) 45%, rgba(205, 133, 63, 0.08) 50%, rgba(184, 134, 11, 0.06) 55%, transparent 60%);
    animation: cardSheen 6s ease infinite;
    pointer-events: none;
    z-index: 1;
}

.coffee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.15);
    border-color: #b8860b;
}

.coffee-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.coffee-card-body {
    padding: 24px;
}

.coffee-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.coffee-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Pastry Grid --- */
.pastry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pastry-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.pastry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pastry-item:hover {
    transform: scale(1.02);
}

.pastry-item:hover img {
    transform: scale(1.05);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(43, 31, 20, 0.7));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Reviews --- */
.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars svg {
    width: 24px;
    height: 24px;
    fill: #f0a500;
}

.reviews-score {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    background: linear-gradient(160deg, #faf6f1 0%, #f5ece0 40%, #f0e2cc 70%, #f5ece0 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.review-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(184, 134, 11, 0.06) 45%, rgba(205, 133, 63, 0.08) 50%, rgba(184, 134, 11, 0.06) 55%, transparent 60%);
    animation: cardSheen 6s ease infinite;
    pointer-events: none;
}

@keyframes cardSheen {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

.review-card-stars {
    display: flex;
    gap: 3px;
}

.review-card-stars svg {
    width: 18px;
    height: 18px;
    fill: #f0a500;
}

.review-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin: 0;
    flex: 1;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-card-name {
    display: block;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.9375rem;
}

.review-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.reviews-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Mobile: show 1 card */
@media (max-width: 719px) {
    .reviews-track {
        grid-auto-columns: 100%;
    }
}

/* Tablet: show 2 cards */
@media (min-width: 720px) and (max-width: 959px) {
    .reviews-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

/* --- Hours & Location --- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.hours-list {
    margin: 24px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--heading);
}

.hours-time {
    color: var(--text-muted);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--accent);
    font-style: italic;
    margin-top: 8px;
}

.visit-info {
    margin-top: 24px;
}

.visit-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.visit-info .info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.map-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}

.map-placeholder .placeholder-text {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Contact / Reservations --- */
.reservations {
    background: radial-gradient(ellipse at 50% 0%, var(--accent-light) 0%, var(--bg) 70%);
}

.reservations-inner {
    max-width: 640px;
    margin: 0 auto;
}

.reservation-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 10, 60, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--heading);
}

input, textarea, select {
    font: inherit;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #ece5db;
    color: var(--text);
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    font-size: 0.9375rem;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--accent);
    background: #f7f3ee;
    box-shadow: 0 0 0 3px var(--accent-light);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5643' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.reservation-form .btn {
    width: 100%;
}

/* --- Footer (image with gradient reveal + grain) --- */
.site-footer {
    background: var(--heading);
    color: rgba(250, 246, 241, 0.8);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden;
}

.site-footer .footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/footer.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.35;
}

/* Gradient fade — solid at top, reveals image at bottom */
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(58, 42, 26, 0.95) 0%,
        rgba(58, 42, 26, 0.8) 40%,
        rgba(58, 42, 26, 0.5) 100%
    );
    z-index: 1;
}

/* Subtle animated grain texture */
.site-footer::after {
    content: "";
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 2;
    pointer-events: none;
    animation: grainShift 8s steps(10) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -15%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(3%, -20%); }
    90% { transform: translate(-10%, 10%); }
}

.site-footer > .container {
    position: relative;
    z-index: 3;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    opacity: 0.9;
}

.footer-brand .footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 246, 241, 0.6);
    margin-top: 12px;
}

.footer-nav h4 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 246, 241, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
    font-size: 0.9375rem;
    transition: color 0.15s ease;
}

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

.footer-social h4 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 246, 241, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

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

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(250, 246, 241, 0.4);
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Shop Page --- */
.hero.shop-hero {
    min-height: auto;
    padding: 100px 0 50px;
}

.hero.shop-hero .hero-content {
    padding: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 520px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: linear-gradient(160deg, #faf6f1 0%, #f5ece0 40%, #f0e2cc 70%, #f5ece0 100%);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.15);
    border-color: #b8860b;
}

.product-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(184, 134, 11, 0.06) 45%, rgba(205, 133, 63, 0.08) 50%, rgba(184, 134, 11, 0.06) 55%, transparent 60%);
    animation: cardSheen 6s ease infinite;
    pointer-events: none;
    z-index: 1;
}

.product-card > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: linear-gradient(135deg, #f0e2d3, #e8d5b8, #f0e2d3);
    padding: 16px;
}

.product-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0e2d3, #e8d5b8, #f0e2d3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.product-card-body {
    padding: 24px;
}

.product-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-family: "DM Serif Display", Georgia, serif;
    color: var(--heading);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-price .original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    margin-right: 8px;
}

.product-price .sale {
    color: #b8860b;
}

.product-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 16px;
    color: var(--text-muted);
}

.product-card .btn {
    width: 100%;
    font-size: 0.8125rem;
    padding: 10px 16px;
}

/* Wholesale CTA */
.wholesale-section {
    padding: 80px 0;
    text-align: center;
}

.wholesale-section:not(.section-parallax) {
    background: linear-gradient(135deg, #3a2a1a 0%, #5a3d20 25%, #3a2a1a 50%, #6b4a28 75%, #3a2a1a 100%);
    background-size: 600% 600%;
    animation: bgShimmer 10s ease infinite;
}

.wholesale-section h2 {
    color: #fff;
}

.wholesale-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 24px;
}

.wholesale-section .btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.wholesale-section .btn:hover {
    background: #fff;
    color: var(--heading);
    border-color: #fff;
}

/* ============================================
   DEMO PROTECTION
   ============================================ */

/* Fixed bottom banner */
.demo-watermark {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(58, 42, 26, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1.5rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    user-select: none;
    -webkit-user-select: none;
}

.demo-watermark__divider {
    opacity: 0.4;
    font-weight: 400;
}

/* Repeating diagonal watermark across the page */
.demo-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 180px,
            rgba(139, 94, 60, 0.03) 180px,
            rgba(139, 94, 60, 0.03) 181px
        );
    background-size: 100% 100%;
    overflow: hidden;
}

.demo-overlay::before {
    content: 'DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    display: flex;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%) rotate(-35deg);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(139, 94, 60, 0.05);
    white-space: pre-wrap;
    word-spacing: 0.5em;
    line-height: 6;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

/* Expired state */
.demo-expired {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--heading);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: center;
    padding: 2rem;
}

.demo-expired h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.demo-expired p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 400px;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    height: 140px;
    width: auto;
    opacity: 0;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* --- Scroll Progress Bar (shimmer) --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    z-index: 9999;
    transition: width 0.05s linear;
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
    display: none;
}

@media (max-width: 719px) {
    .sticky-cta {
        position: fixed;
        bottom: 44px;
        left: 16px;
        right: 16px;
        z-index: 9997;
        display: block;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .sticky-cta.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .sticky-cta .btn {
        width: 100%;
        box-shadow: 0 4px 20px rgba(139, 94, 60, 0.4);
        font-size: 0.875rem;
        padding: 12px 20px;
    }
}

/* --- Stats Bar (shimmer background) --- */
.stats-bar {
    background: linear-gradient(135deg, #8b5e3c, #b8860b, #a0522d, #cd853f);
    background-size: 200% 200%;
    animation: shimmer 3s ease infinite;
    padding: 60px 0;
    position: relative;
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 20, 0.45);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #cd853f, #b8860b, #f5deb3, #b8860b, #cd853f);
    background-size: 300% 300%;
    animation: shimmer 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "DM Serif Display", Georgia, serif;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (min-width: 720px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Video Reels --- */
.reels-section {
    position: relative;
}

.reels-section:not(.section-parallax) {
    background: var(--heading);
}

.reels-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 20, 0.75);
    z-index: 0;
}

.reels-section > .container {
    position: relative;
    z-index: 1;
}

.reels-section .eyebrow {
    background: linear-gradient(90deg, #cd853f, #f5deb3, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reels-section .section-header h2 {
    color: #fff;
}

.reels-section .btn.outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.reels-section .btn.outline:hover {
    background: #fff;
    color: var(--heading);
    border-color: #fff;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--heading);
    cursor: pointer;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.reel-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.reel-mute-btn svg {
    width: 18px;
    height: 18px;
}

.reel-mute-btn .icon-unmuted {
    display: none;
}

.reel-item.unmuted .reel-mute-btn .icon-muted {
    display: none;
}

.reel-item.unmuted .reel-mute-btn .icon-unmuted {
    display: block;
}

.reels-cta {
    text-align: center;
    margin-top: 32px;
}

@media (min-width: 720px) {
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* --- Gallery Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 31, 20, 0.9);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: max(2vh, 12px);
    right: max(2vw, 12px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

/* --- About Parallax --- */
.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform 0.1s linear;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--panel);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.9375rem;
    text-align: left;
    gap: 12px;
    transition: color 0.15s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Section Dividers (wavy SVG + iridescent bar) --- */
.section-wave {
    display: block;
    width: 100%;
    height: 48px;
    margin-top: -1px;
}

.section-wave-flip {
    transform: scaleY(-1);
    margin-bottom: -1px;
    margin-top: 0;
}

/* Iridescent divider bar */
.iridescent-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5e3c, #b8860b, #cd853f, #f5deb3, #cd853f, #b8860b, #8b5e3c, transparent);
    background-size: 200% 100%;
    animation: dividerShimmer 4s ease infinite;
}

@keyframes dividerShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(139, 94, 60, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.15s ease;
    z-index: 100;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Subtle Texture Overlay on Sections --- */
.section::after,
.section-alt::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.section,
.section-alt,
.menu-section {
    position: relative;
}

.section > .container,
.section-alt > .container,
.menu-section > .container {
    position: relative;
    z-index: 1;
}

/* --- Enhanced Button Glow --- */
.btn.primary:hover {
    box-shadow: 0 12px 32px rgba(139, 94, 60, 0.35), 0 0 0 4px rgba(139, 94, 60, 0.1);
}

/* --- Hero Address --- */
.hero-address {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

.hero-address a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.hero-address a:hover {
    color: #fff;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive: Mobile (max 719px) --- */
@media (max-width: 719px) {
    /* Hero */
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 30px 16px;
    }

    .hero-logo {
        max-width: 240px;
    }

    .hero .tagline {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .hero-address {
        font-size: 0.875rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    .section,
    .menu-section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-wave {
        height: 28px;
    }

    /* About */
    .about-text h2 {
        font-size: 1.375rem;
    }

    .about-text p {
        font-size: 0.9375rem;
    }

    .about-image {
        aspect-ratio: 3 / 2;
    }

    /* Menu */
    .menu-header h2 {
        font-size: 1.75rem;
    }

    .menu-section {
        padding: 56px 0;
    }

    .menu-dish-name {
        font-size: 0.875rem;
    }

    .menu-dish-price {
        font-size: 0.9375rem;
    }

    .menu-addons-list {
        gap: 6px 12px;
    }

    .menu-addons-list span {
        font-size: 0.75rem;
    }

    .menu-footer {
        gap: 20px;
    }

    .menu-legend {
        gap: 4px 12px;
    }

    /* Hide non-essential menu items on mobile */
    .mobile-hide {
        display: none;
    }

    /* Coffee grid — single column on mobile */
    .coffee-grid {
        grid-template-columns: 1fr;
    }

    /* Pastry grid — single column on mobile */
    .pastry-grid {
        grid-template-columns: 1fr;
    }

    .pastry-item {
        aspect-ratio: 3 / 2;
    }

    /* Gallery */
    .gallery-grid {
        gap: 8px;
    }

    /* Reviews */
    .reviews-stars svg {
        width: 20px;
        height: 20px;
    }

    .reviews-score {
        font-size: 0.75rem;
    }

    .review-card {
        padding: 20px;
    }

    .review-card::before {
        font-size: 3rem;
        top: 10px;
        right: 16px;
    }

    .review-card-text {
        font-size: 0.875rem;
    }

    .review-card-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.875rem;
    }

    .review-card-name {
        font-size: 0.875rem;
    }

    .reviews-dots {
        margin-top: 20px;
    }

    /* Hours */
    .hours-list li {
        font-size: 0.875rem;
        padding: 10px 0;
    }

    .visit-info p {
        font-size: 0.8125rem;
    }

    .map-placeholder {
        aspect-ratio: 16 / 9;
    }

    /* Contact / Reservations */
    .reservation-form {
        padding: 20px;
        gap: 16px;
    }

    .reservation-form .btn {
        padding: 14px 20px;
    }

    /* Footer */
    .site-footer {
        padding: 36px 0 72px;
    }

    .footer-grid {
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Back to top — above demo banner */
    .back-to-top {
        bottom: 70px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* Demo banner */
    .demo-watermark {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}

/* --- Responsive: Tablet (720px) --- */
@media (min-width: 720px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-board {
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
    }

    .menu-divider {
        display: block;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--line) 15%, var(--line) 85%, transparent);
        margin: 0 32px;
    }

    .menu-dish--highlight {
        margin: 4px -20px;
        padding: 18px 20px;
    }

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

    .pastry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .visit-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* --- Responsive: Desktop (960px) --- */
@media (min-width: 960px) {
    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 100px 0;
    }

    .about-grid {
        gap: 64px;
    }

    .reservation-form {
        padding: 36px;
    }
}
