/*
  Zarf Café — Production Stylesheet
  Luxury dark theme · Caramel accents · Premium typography
  Fonts: Cormorant Garamond (display) + Inter (body)
*/

/* ─── 1. DESIGN TOKENS ───────────────────────────────── */
:root {
    /* Palette */
    --bg-base:        #090807;
    --bg-surface:     #0f0c0b;
    --bg-elevated:    #181311;
    --bg-card:        #1e1916;
    --border-subtle:  rgba(212, 163, 115, 0.10);
    --border-mid:     rgba(212, 163, 115, 0.18);
    --caramel:        #d4a373;
    --caramel-light:  #e3b98a;
    --caramel-dim:    rgba(212, 163, 115, 0.15);
    --cream:          #f5e6d3;
    --cream-muted:    #a08b7a;
    --white:          #ffffff;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing & Layout */
    --nav-h:          110px;
    --max-w:          1200px;
    --section-py:     112px;
    --section-py-sm:  72px;

    /* Easing */
    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:   cubic-bezier(0.4, 0, 1, 1);
    --dur-fast:  0.18s;
    --dur-mid:   0.38s;
    --dur-slow:  0.7s;
}

/* ─── 2. RESET ────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) ease; }
button { font-family: inherit; background: none; border: none; color: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Containers */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}
.text-center { text-align: center; }

/* ─── 3. TYPOGRAPHY SCALE ─────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--cream-muted);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.text-center .section-title { margin-bottom: 16px; }

/* ─── 4. BUTTONS ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background var(--dur-mid) var(--ease-out),
                color var(--dur-mid) var(--ease-out),
                transform var(--dur-fast) ease,
                box-shadow var(--dur-mid) var(--ease-out);
}

.btn-primary {
    background-color: var(--caramel);
    color: var(--bg-base);
}
.btn-primary:hover {
    background-color: var(--caramel-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.28);
}
.btn-primary:focus-visible {
    outline: 2px solid var(--caramel);
    outline-offset: 3px;
}

.btn-outline {
    border: 1px solid rgba(245, 230, 211, 0.25);
    color: var(--cream);
}
.btn-outline:hover {
    border-color: var(--caramel);
    color: var(--caramel);
    transform: translateY(-2px);
}

/* ─── 5. LOADER ──────────────────────────────────────── */
/* loader removed */ .loader-container-unused {
    position: fixed; inset: 0;
    background: var(--bg-base);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity var(--dur-slow) var(--ease-out),
                visibility var(--dur-slow) var(--ease-out);
}
.loader-container-unused.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-video-unused {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.mobile-video-unused { display: none; }

/* ─── 6. NAVBAR ─────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0;
    width: 100%; height: var(--nav-h);
    display: flex; align-items: center;
    z-index: 1000;
    transition: background var(--dur-mid) var(--ease-out),
                border-color var(--dur-mid) var(--ease-out),
                box-shadow var(--dur-mid) var(--ease-out);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(9, 8, 7, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--border-subtle);
    box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}
.nav-container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo, .footer-brand {
    display: flex;
    align-items: center;
    user-select: none;
}

.nav-logo-img {
    height: 90px;
    width: auto;
    max-width: 65vw;
    object-fit: contain;
}

.loader-logo-img {
    height: 90px;
    width: auto;
    max-width: 80vw;
    object-fit: contain;
}

/* Nav links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--cream-muted);
    position: relative;
    padding: 4px 0;
    transition: color var(--dur-fast) ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--caramel);
    transition: width var(--dur-mid) var(--ease-out);
}
.nav-link:hover, .nav-link.active {
    color: var(--cream);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link-cta {
    padding: 8px 18px;
    border: 1px solid var(--border-mid);
    border-radius: 3px;
    color: var(--caramel) !important;
    letter-spacing: 1.5px;
    transition: background var(--dur-fast) ease,
                border-color var(--dur-fast) ease;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
    background: var(--caramel-dim);
    border-color: var(--caramel);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
    color: var(--cream-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4px;
    transition: color var(--dur-fast) ease;
}
.icon-btn:hover { color: var(--caramel); }
.icon-btn:focus-visible {
    outline: 2px solid var(--caramel);
    outline-offset: 4px;
    border-radius: 3px;
}
.cart-badge {
    position: absolute;
    top: -4px; right: -6px;
    background: var(--caramel);
    color: var(--bg-base);
    font-size: 9px; font-weight: 700;
    height: 15px; width: 15px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--dur-fast) ease;
}
.cart-badge.pop { transform: scale(1.4); }

/* Mobile toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 22px;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.mobile-menu-btn.open span:first-child  { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:last-child   { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── 7. HERO ────────────────────────────────────────── */
.hero-scroll-container {
    position: relative;
    height: 100vh;
    background: var(--bg-surface);
    overflow: hidden;
}
.hero-sticky-content {
    height: 100vh; width: 100%;
    overflow: hidden;
    display: flex; align-items: center;
}
#hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        100deg,
        rgba(9, 8, 7, 0.95) 0%,
        rgba(9, 8, 7, 0.82) 40%,
        rgba(9, 8, 7, 0.30) 75%,
        rgba(9, 8, 7, 0.10) 100%
    );
    z-index: 2;
}
.hero-layout {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
}
.hero-text-panel { max-width: 580px; }

.hero-text-block {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-slow) var(--ease-out),
                transform var(--dur-slow) var(--ease-out);
    position: absolute;
    pointer-events: none;
}
.hero-text-block.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}
.hero-text-block.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.tagline {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 18px;
}
.main-heading {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 80px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--cream);
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--cream-muted);
    max-width: 420px;
    margin-bottom: 8px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream-muted);
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 1.5px solid rgba(245, 230, 211, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--caramel);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60%       { transform: translateY(8px); opacity: 0.3; }
}

/* ─── 8. FEATURES ────────────────────────────────────── */
.features-section {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: border-color var(--dur-mid) ease,
                transform var(--dur-mid) var(--ease-out);
}
.feature-card:hover {
    border-color: var(--border-mid);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px; height: 52px;
    background: var(--caramel-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--caramel);
    margin-bottom: 22px;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--cream-muted);
}

/* ─── 9. SIGNATURE COFFEE ────────────────────────────── */
.coffee-section {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}
.coffee-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.coffee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--dur-mid) var(--ease-out),
                border-color var(--dur-mid) ease;
    cursor: default;
}
.coffee-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-mid);
}
.coffee-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.coffee-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}
.coffee-card:hover .coffee-img-wrap img { transform: scale(1.05); }
.coffee-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--caramel);
    color: var(--bg-base);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
}
.coffee-info {
    padding: 22px 24px 26px;
}
.coffee-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
}
.coffee-info p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--cream-muted);
    margin-bottom: 16px;
}
.coffee-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--caramel);
    font-family: var(--font-display);
}

/* ─── 10. MENU SECTION ───────────────────────────────── */
.menu-section {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream-muted);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: var(--bg-card);
    transition: all var(--dur-fast) ease;
    cursor: pointer;
}
.filter-btn:hover {
    color: var(--cream);
    border-color: var(--border-mid);
}
.filter-btn.active {
    background: var(--caramel);
    color: var(--bg-base);
    border-color: var(--caramel);
    font-weight: 600;
}
.filter-btn:focus-visible {
    outline: 2px solid var(--caramel);
    outline-offset: 3px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.menu-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--dur-mid) var(--ease-out),
                border-color var(--dur-mid) ease;
}
.menu-item-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-mid);
}
.menu-item-img {
    aspect-ratio: 1;
    overflow: hidden;
}
.menu-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}
.menu-item-card:hover .menu-item-img img { transform: scale(1.08); }
.menu-item-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.menu-item-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 5px;
    line-height: 1.2;
}
.menu-item-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--cream-muted);
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.menu-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--caramel);
    font-family: var(--font-display);
}
.add-btn {
    width: 32px; height: 32px;
    background: var(--caramel);
    color: var(--bg-base);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: background var(--dur-fast) ease,
                transform var(--dur-fast) ease;
}
.add-btn:hover {
    background: var(--caramel-light);
    transform: scale(1.1);
}
.add-btn:focus-visible { outline: 2px solid var(--caramel); outline-offset: 3px; border-radius: 50%; }

/* ─── 11. ABOUT ──────────────────────────────────────── */
.about-section {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-visuals {
    position: relative;
}
.about-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease-out);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-accent-img {
    position: absolute;
    bottom: -32px; right: -28px;
    width: 44%;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--bg-elevated);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    aspect-ratio: 1;
}
.about-accent-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-text-content { padding-bottom: 32px; }
.about-p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cream-muted);
    margin-bottom: 18px;
}
.about-highlights {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 36px;
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.highlight-item strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--caramel);
}
.highlight-item span {
    font-size: 12px;
    color: var(--cream-muted);
    letter-spacing: 0.5px;
}
.highlight-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* ─── 12. GALLERY ────────────────────────────────────── */
.gallery-section {
    padding: var(--section-py) 0 0;
    background: var(--bg-surface);
}
.gallery-section .section-header { padding: 0 28px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    margin-top: 64px;
    padding: 0 28px;
    max-width: calc(var(--max-w) + 56px);
    margin-left: auto;
    margin-right: auto;
}
.gallery-item {
    overflow: hidden;
    margin: 0;
    position: relative;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,8,7,0.9) 0%, rgba(9,8,7,0.2) 60%, rgba(9,8,7,0) 100%);
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
    pointer-events: none;
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s;
}
.gallery-item:hover img { 
    transform: scale(1.1); 
    filter: brightness(1.1);
}
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
    pointer-events: none;
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}
.gallery-caption h4 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.gallery-caption p {
    font-size: 11px;
    font-weight: 600;
    color: var(--caramel);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-2 { grid-column: span 1; grid-row: span 1; }
.gi-3 { grid-column: span 1; grid-row: span 2; }
.gi-4 { grid-column: span 1; grid-row: span 1; }
.gi-5 { grid-column: span 2; grid-row: span 1; }
.gi-6 { grid-column: span 2; grid-row: span 1; }

/* ─── 13. TESTIMONIALS ───────────────────────────────── */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}
.testimonials-slider-container { position: relative; }
.testimonials-slider {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-slide {
    display: none;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 48px;
    animation: slide-in 0.5s var(--ease-out) forwards;
}
.testimonial-slide.active { display: flex; flex-direction: column; align-items: center; gap: 24px; }
@keyframes slide-in {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.testimonial-rating {
    color: var(--caramel);
    font-size: 18px;
    letter-spacing: 4px;
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--cream);
    quotes: "\201C" "\201D";
}
.testimonial-quote::before { content: open-quote; color: var(--caramel); font-size: 1.4em; }
.testimonial-quote::after  { content: close-quote; color: var(--caramel); font-size: 1.4em; }
.author-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 4px;
}
.author-title { font-size: 12px; color: var(--cream-muted); letter-spacing: 1px; }
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.slider-arrow {
    width: 42px; height: 42px;
    border: 1px solid var(--border-mid);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream-muted);
    transition: all var(--dur-fast) ease;
}
.slider-arrow:hover {
    border-color: var(--caramel);
    color: var(--caramel);
    background: var(--caramel-dim);
}
.slider-dots { display: flex; gap: 8px; }
.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--border-mid);
    border: none;
    cursor: pointer;
    transition: background var(--dur-fast) ease, transform var(--dur-fast) ease;
}
.dot.active {
    background: var(--caramel);
    transform: scale(1.3);
}

/* ─── 14. BOOKING ────────────────────────────────────── */
.booking-section {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
}
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.booking-perks {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cream-muted);
}
.booking-perks li svg { color: var(--caramel); flex-shrink: 0; }
.booking-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 40px;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream-muted);
}
.label-optional { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 11px; }
.form-group input,
.form-group select {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    padding: 12px 14px;
    color: var(--cream);
    font-size: 14px;
    transition: border-color var(--dur-fast) ease;
    appearance: none;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a08b7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.form-group input::placeholder { color: var(--cream-muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--caramel);
}
.form-group input:focus-visible,
.form-group select:focus-visible {
    outline: 2px solid var(--caramel);
    outline-offset: 2px;
}
.booking-submit { width: 100%; margin-top: 8px; }
.form-status {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
    transition: opacity var(--dur-fast) ease;
}
.form-status.success { color: #7abf8e; }
.form-status.error   { color: #e07a5f; }

/* ─── 15. CONTACT ────────────────────────────────────── */
.contact-section {
    padding: var(--section-py) 0;
    background: var(--bg-elevated);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-icon {
    width: 40px; height: 40px;
    background: var(--caramel-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--caramel);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin-bottom: 6px;
}
.contact-value {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cream);
}
.hours-list { display: flex; flex-direction: column; gap: 5px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13.5px;
    color: var(--cream);
}
.hours-row span:first-child { color: var(--cream-muted); }

.contact-map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 16/10;
}
.contact-map-wrap iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(0.9) brightness(0.85) sepia(0.2);
}

/* ─── 16. NEWSLETTER ─────────────────────────────────── */
.newsletter-section {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}
.newsletter-desc {
    font-size: 15px;
    color: var(--cream-muted);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.newsletter-form {
    display: flex;
    align-items: stretch;
    max-width: 460px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color var(--dur-fast) ease;
}
.newsletter-form:focus-within { border-color: var(--caramel); }
.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 14px;
    outline: none;
}
.newsletter-input::placeholder { color: var(--cream-muted); opacity: 0.5; }
.newsletter-form .btn {
    border-radius: 0;
    border-left: 1px solid var(--border-subtle);
    white-space: nowrap;
}

/* ─── 17. CART DRAWER ────────────────────────────────── */
.cart-drawer {
    position: fixed; inset: 0;
    z-index: 2000;
    pointer-events: none;
}
.cart-drawer.open { pointer-events: auto; }
.cart-drawer-overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity var(--dur-mid) ease;
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-content {
    position: absolute;
    top: 0; right: 0;
    width: 380px; max-width: 100%;
    height: 100%;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-subtle);
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease-out);
}
.cart-drawer.open .cart-drawer-content { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border-subtle);
}
.cart-drawer-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
}
.close-drawer-btn {
    color: var(--cream-muted);
    transition: color var(--dur-fast) ease;
}
.close-drawer-btn:hover { color: var(--caramel); }
.cart-items-container { flex: 1; overflow-y: auto; padding: 16px; }
.empty-cart-message {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
    height: 100%;
    min-height: 200px;
    color: var(--cream-muted);
    text-align: center;
    font-size: 14px;
    padding: 40px;
}
.cart-item {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.cart-item-img {
    width: 64px; height: 64px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 3px;
}
.cart-item-price { font-size: 13px; color: var(--caramel); }
.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.qty-control {
    display: flex; align-items: center; gap: 0;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    overflow: hidden;
}
.qty-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 300;
    color: var(--cream-muted);
    transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.qty-btn:hover { background: var(--bg-card); color: var(--caramel); }
.qty-val {
    width: 30px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-left: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    line-height: 28px;
}
.remove-item-btn {
    font-size: 11px;
    color: var(--cream-muted);
    text-decoration: underline;
    letter-spacing: 0.5px;
    transition: color var(--dur-fast) ease;
}
.remove-item-btn:hover { color: #e07a5f; }
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-card);
}
.cart-subtotal {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--cream-muted);
}
.cart-subtotal span:last-child {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--caramel);
}
.checkout-btn { width: 100%; }

/* ─── 18. SEARCH MODAL ───────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(9, 8, 7, 0.96);
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity var(--dur-mid) ease, visibility var(--dur-mid) ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content { width: 100%; max-width: 580px; padding: 24px 32px; }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
}
.modal-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
}
.close-modal-btn {
    color: var(--cream-muted);
    transition: color var(--dur-fast) ease;
    display: flex; align-items: center;
}
.close-modal-btn:hover { color: var(--caramel); }
.search-input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1.5px solid var(--border-mid);
    padding: 14px 0;
    font-size: 20px;
    color: var(--white);
    outline: none;
    transition: border-color var(--dur-fast) ease;
}
.search-input:focus { border-color: var(--caramel); }
.search-input::placeholder { color: var(--cream-muted); opacity: 0.5; }

/* ─── 19. FOOTER ─────────────────────────────────────── */
.footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.3fr 1.3fr;
    gap: 52px;
    padding-bottom: 64px;
}
.brand-col { max-width: 320px; }
.footer-brand { margin-bottom: 18px; display: flex; }
.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--cream-muted);
    margin-bottom: 24px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 36px; height: 36px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream-muted);
    transition: color var(--dur-fast) ease,
                border-color var(--dur-fast) ease,
                transform var(--dur-fast) ease;
}
.social-links a:hover {
    color: var(--caramel);
    border-color: var(--caramel);
    transform: translateY(-2px);
}
.footer-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 22px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
    font-size: 13.5px;
    color: var(--cream-muted);
    transition: color var(--dur-fast) ease, padding-left var(--dur-fast) ease;
}
.footer-links a:hover { color: var(--caramel); padding-left: 5px; }
.footer-contact-info li {
    display: flex; gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--cream-muted);
    align-items: flex-start;
}
.footer-contact-info svg { color: var(--caramel); flex-shrink: 0; margin-top: 2px; }
.footer-hours li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 14px;
}
.footer-hours .day { font-size: 13.5px; color: var(--white); font-weight: 500; }
.footer-hours .time { font-size: 12.5px; color: var(--cream-muted); }
.footer-note { font-size: 11.5px; color: var(--cream-muted); opacity: 0.6; margin-top: 8px; }
.footer-bottom {
    padding: 24px 28px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    font-size: 12.5px;
    color: var(--cream-muted);
    opacity: 0.7;
}

/* ─── 20. RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
    .features-grid     { grid-template-columns: repeat(2, 1fr); }
    .coffee-showcase   { grid-template-columns: repeat(2, 1fr); }
    .coffee-showcase .coffee-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
    .menu-grid         { grid-template-columns: repeat(4, 1fr); }
    .about-layout      { gap: 48px; }
    .footer-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --section-py: var(--section-py-sm); }
    .menu-grid         { grid-template-columns: repeat(3, 1fr); }
    .booking-layout    { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout    { grid-template-columns: 1fr; gap: 48px; }
    .contact-map-wrap  { aspect-ratio: 16/9; }
    .about-accent-img  { display: none; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .gi-1 { grid-column: span 2; grid-row: span 2; }
    .gi-2 { grid-column: span 1; grid-row: span 1; }
    .gi-3 { grid-column: span 1; grid-row: span 1; }
    .gi-4 { grid-column: span 1; grid-row: span 1; }
    .gi-5 { grid-column: span 1; grid-row: span 1; }
    .gi-6 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 90px; }

    .desktop-video { display: none; }
    .mobile-video-unused { display: block; }

    .main-heading { font-size: 46px; }

    .mobile-menu-btn { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--nav-h); left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-h));
        background: var(--bg-base);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 999;
        border-top: 1px solid var(--border-subtle);
        transition: left 0.4s var(--ease-out);
    }
    .nav-menu.open { left: 0; }
    .nav-link { font-size: 14px; }
    .nav-link-cta {
        border: 1px solid var(--caramel);
        padding: 10px 28px;
    }

    /* Hide search/account on mobile nav bar */
    #search-btn { display: none; }

    .features-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .menu-grid       { grid-template-columns: repeat(2, 1fr); }
    .coffee-showcase { grid-template-columns: 1fr; }
    .coffee-showcase .coffee-card:last-child { max-width: 100%; }
    .about-layout    { grid-template-columns: 1fr; gap: 40px; }
    .about-visuals   { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
    .about-img-wrap  { aspect-ratio: 3/2; }
    .booking-form-wrap { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .testimonial-slide { padding: 0 16px; }
}

@media (max-width: 540px) {
    .main-heading { font-size: 36px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { 
        grid-template-columns: 1fr; 
        grid-auto-rows: 260px;
    }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
        grid-column: span 1;
        grid-row: span 1;
    }
    .newsletter-form {
        flex-direction: column;
        border: none; background: none; border-radius: 0;
    }
    .newsletter-input {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-radius: 3px;
        padding: 13px 16px;
        width: 100%;
    }
    .newsletter-form .btn {
        border-radius: 3px;
        border-left: none;
        width: 100%;
    }
    .about-highlights { flex-direction: column; align-items: flex-start; }
    .highlight-divider { width: 40px; height: 1px; }
    .testimonials-slider { min-height: 360px; }
    .cart-drawer-content { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
