/* Cafe Heca — Intellectually Cozy Aesthetic */
:root {
    --bg: #F9F6F0;
    --surface: #F1EDE5;
    --deep: #1C1C1A;
    --brand: #C4622D;
    --brand-hover: #A85120;
    --sage: #7B9E6B;
    --muted-warm: #8C7355;
    --text: #1C1C1A;
    --text-muted: #7A7065;
    --border: #E2DAD0;
    --hero-overlay: rgba(28,28,26,0.52);
    --footer-bg: #1C1C1A;
    --footer-text: #C8BFB0;
    --brand-gradient: linear-gradient(135deg, #C4622D 0%, #7B9E6B 100%);
    --brand-gradient-warm: linear-gradient(135deg, #C4622D 0%, #A85120 100%);
    --card-shadow: 0 2px 14px rgba(28,28,26,0.07);
    --card-shadow-hover: 0 8px 28px rgba(28,28,26,0.12);
    --radius: 10px;
    --radius-pill: 999px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: 0.25s ease;
    --max-width: 1160px;
    --section-coffee-wash: radial-gradient(circle at 16% 10%, rgba(196,98,45,0.09), transparent 30%), radial-gradient(circle at 86% 38%, rgba(123,158,107,0.055), transparent 31%), linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
    --section-coffee-mark: url("data:image/svg+xml,%3Csvg width='420' height='420' viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C4622D' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='.13'%3E%3Cpath d='M146 186h104v44c0 41-24 69-52 69s-52-28-52-69v-44Z'/%3E%3Cpath d='M250 205h25c20 0 34 14 34 32s-14 32-34 32h-22'/%3E%3Cpath d='M128 314h142'/%3E%3Cpath d='M168 144c-15-17 18-29 0-49'/%3E%3Cpath d='M205 144c-15-17 18-29 0-49'/%3E%3Cpath d='M242 144c-15-17 18-29 0-49'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    z-index: -1;
    pointer-events: none;
    background-color: #D4A574;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
img { max-width: 100%; height: auto; display: block; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--muted-warm); margin-bottom: 24px; font-weight: 400; }
@media (max-width: 768px) { .lead { font-size: 1.05rem; } }

a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-hover); }
ul { list-style: none; }

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text);
    font-weight: 700;
    line-height: 1.15;
}
h1 { font-size: 4rem; letter-spacing: -0.02em; }
h2 { font-size: 2.6rem; margin-bottom: 0.5em; }
h3 { font-size: 1.4rem; }
p { margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    padding: 10px 24px;
    font-size: 0.95rem;
    text-decoration: none;
    transform: translateY(0);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-sm { padding: 6px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 34px; font-size: 1.05rem; }
.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }

/* Site Header / Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-header.scrolled {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 14px rgba(28,28,26,0.07);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.logo {
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1;
    color: #fff;
}
.site-header.scrolled .logo { color: var(--text); }
.site-header.scrolled .logo-main { color: var(--text); }

.nav-cb { display: none; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    z-index: 10;
    position: relative;
}
.site-header.scrolled .nav-toggle { color: var(--text); }
.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-list a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 6px 8px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition);
}
.site-header.scrolled .nav-list a { color: var(--text); }
.nav-list a:hover {
    background: transparent;
    border-color: rgba(196,98,45,0.5);
}
.nav-list a.active {
    color: var(--brand);
    background: transparent;
    border-color: transparent;
}
.site-header.scrolled .nav-list a:hover {
    color: var(--brand);
    background: transparent;
    border-color: rgba(196,98,45,0.5);
}
.site-header.scrolled .nav-list a.active {
    color: var(--brand);
    background: transparent;
    border-color: transparent;
}
.nav-list a::after { display: none; }
.nav-cta-mobile { display: none; }
.nav-social-mobile { display: none; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-actions .btn { padding: 6px 16px; font-size: 0.8rem; }
.site-header:not(.scrolled) .nav-actions .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.site-header:not(.scrolled) .nav-actions .btn-secondary:hover {
    border-color: #fff;
    color: #fff;
}

.logo-img { display: block; height: 68px; width: auto; transition: opacity 0.2s, filter 0.3s; }
.logo:hover .logo-img { opacity: 0.8; }
.site-header:not(.scrolled) .logo-img { filter: drop-shadow(0 0 6px rgba(0,0,0,0.5)); }
.footer-logo-img { display: block; height: 80px; width: auto; }
.footer-logo-link { display: inline-block; margin-bottom: 16px; }

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--deep);
}
.hero-full { min-height: 100vh; padding-top: 80px; }
.hero-half { min-height: 55vh; padding-top: 80px; }
.hero-half.hero-compact-meta {
    min-height: 40vh;
    padding-top: 96px;
    align-items: flex-start;
}
.hero-half.hero-compact-meta .hero-content {
    padding-top: 40px;
    padding-bottom: 18px;
}
.hero-half.hero-compact-meta .breadcrumb { margin-bottom: 0.55rem; }
.hero-half.hero-compact-meta .hero-title {
    font-size: 3rem;
    margin-bottom: 0.2em;
}
.hero-half.hero-compact-meta .hero-sub {
    margin-bottom: 0;
    font-size: 1.02rem;
}
@media (max-width: 1200px) {
    .hero-half.hero-compact-meta .breadcrumb { display: none; }
    .hero-half.hero-compact-meta .hero-content { padding-top: 28px; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 740px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 0.3em;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }

/* Swiper Hero Slider */
.swiper-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.swiper-hero .swiper-slide {
    background-size: cover;
    background-position: center;
}

/* Sections */
.section { padding: 80px 0; position: relative; overflow: clip; }
.section > .container { position: relative; z-index: 1; }
.section:not(.section-dark)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    background-image: var(--section-coffee-wash);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-position: center, center, center;
}
.section:not(.section-dark)::after {
    content: '';
    position: absolute;
    right: max(24px, calc((100% - var(--max-width)) / 2));
    bottom: 18px;
    width: min(32vw, 320px);
    aspect-ratio: 1;
    z-index: 0;
    pointer-events: none;
    opacity: 0.62;
    background-image: var(--section-coffee-mark);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-6deg);
}
.section + .section { padding-top: 100px; }
.section-alt { 
    background: #F5EBDE;
    box-shadow: inset 0 1px 0 rgba(196,98,45,0.06), inset 0 -1px 0 rgba(196,98,45,0.06);
}
.section-dark {
    background: var(--deep);
    color: var(--footer-text);
}
.section-dark h2 { color: #fff; }
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title h2 {
    margin-bottom: 0.3em;
    position: relative;
    padding-bottom: 0.5em;
}
.section-title h2::after {
    content: '☕';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    background: none;
    width: auto;
    height: auto;
}
.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* USP Strip */
.usp-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px 0;
}
.usp-item {
    text-align: center;
    color: var(--footer-text);
    padding: 32px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition), transform var(--transition);
}
.usp-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.usp-item i {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 12px;
    display: block;
}
.usp-item h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.usp-item p { font-size: 0.9rem; color: rgba(200,191,176,0.8); margin: 0; }

/* Menu Tabs */
.menu-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.menu-tab {
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.menu-tab:hover { border-color: var(--brand); color: var(--brand); }
.menu-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Menu Items Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.menu-item {
    background: linear-gradient(135deg, #FFF 0%, #F9F3EC 100%);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--brand);
}
.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}
.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.menu-item-price { font-weight: 700; font-size: 1.1rem; color: var(--brand); }
.menu-item-allergens { font-size: 0.75rem; color: var(--text-muted); }

/* Dietary Badges */
.dietary-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-vegan { background: #D4EAD8; color: #2D6A3F; }
.badge-vegetarian { background: #E8F5D4; color: #3D6B1A; }
.badge-gf { background: #FFF3D4; color: #7A4F00; }
.badge-new { background: #FAD9D4; color: #8B2500; }
.badge-rec { background: #FDE8C8; color: #6B3A00; }

/* Gallery Grid */
.gallery-grid {
    columns: 3;
    column-gap: 12px;
}
.gallery-item {
    display: block;
    margin-bottom: 12px;
    break-inside: avoid;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}
.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(196,98,45,0.35);
}
.gallery-filter {
    margin-bottom: 24px;
}
.filter-pill {
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active { border-color: var(--brand); color: var(--brand); }
.filter-pill.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: linear-gradient(135deg, #FFF 0%, #F9F3EC 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.blog-card:hover .blog-card-image { transform: scale(1.03); }
.blog-card-image {
    height: 200px;
    background-color: #E8D5C4;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.blog-card-body h3 { margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--brand); }
.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }

/* Instagram Section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
    position: relative;
}
.instagram-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28,28,26,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}
.instagram-item:hover::after { opacity: 1; }
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.instagram-item:hover img { transform: scale(1.05); }
.instagram-item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4C4B0 50%, #C4B5A0 100%);
    aspect-ratio: 4/3;
    box-shadow: 0 4px 20px rgba(28,28,26,0.08);
}
.about-grid > div:last-child:not(.about-image) {
    background: linear-gradient(to bottom, transparent 97%, rgba(196,98,45,0.06) 97%);
    background-size: 100% 28px;
    padding: 16px 20px;
    border-radius: 8px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.value-card {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, #FFF 0%, #F9F3EC 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--brand);
}
.value-card i { font-size: 2.2rem; color: var(--brand); margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(196,98,45,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.hp-field { display: none; }

/* Contact Info */
.contact-info { margin-bottom: 32px; }
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
    padding: 12px 16px;
    background: var(--surface);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color var(--transition);
}
.contact-info-item:hover { border-color: var(--border); }
.contact-info-item i {
    font-size: 1.1rem;
    color: var(--brand);
    margin-top: 2px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,98,45,0.1);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-info-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 350px; border: 0; display: block; }

/* Hours Table */
.hours-table { margin-bottom: 24px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.hours-days { font-weight: 600; }
.hours-time { color: var(--text-muted); }

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    opacity: 0.06;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'%3E%3Cg fill='%23fff'%3E%3Cpath d='M180 220c-3-2 1-15 8-25 2-3 5-3 5 0 1 5-2 14-5 20-1 2-5 6-8 5z'/%3E%3Cpath d='M195 210c5-4 15-12 18-10 2 1-1 11-6 18-10 12-22 16-26 12-2-2 0-5 4-7 3-1 9-7 10-13z'/%3E%3Cpath d='M160 228c-5-6 5-12 18-14 3 0 5 2 4 5-2 6-12 10-19 9-1 0-3 0-3 0z'/%3E%3Cpath d='M210 200c3-8 12-18 18-16 2 1 1 7-4 14-8 9-17 10-16 7 0-1 2-5 2-5z'/%3E%3Cpath d='M150 210c-2-8 6-18 16-19 2 0 3 3 1 6-3 6-10 12-15 13-1 0-2 0-2 0z'/%3E%3Cpath d='M190 230c-2-3 2-12 8-18 2-1 4 0 3 3-2 7-7 13-9 15 0 0-1 0-2 0z'/%3E%3Ccircle cx='155' cy='215' r='5'/%3E%3Ccircle cx='195' cy='190' r='4'/%3E%3Ccircle cx='210' cy='215' r='3'/%3E%3C/g%3E%3C/svg%3E") top right/contain no-repeat;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}
.footer-tagline {
    font-size: 0.85rem;
    color: var(--muted-warm);
    margin-bottom: 20px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: var(--footer-text); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 1.2rem;
    background: rgba(255,255,255,0.06);
    transition: all var(--transition);
}
.footer-social a:hover { color: var(--brand); background: rgba(255,255,255,0.12); }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-col p i { color: var(--brand); margin-right: 8px; width: 16px; }
.footer-col a { color: var(--footer-text); }
.footer-col a:hover { color: var(--brand); }
.footer-hours .hours-row {
    border-bottom-color: rgba(200,191,176,0.15);
    padding: 4px 0;
    font-size: 0.85rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid rgba(200,191,176,0.15);
    font-size: 0.8rem;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: var(--brand); }
.footer-credit a { color: var(--muted-warm); }
.footer-credit a:hover { color: var(--brand); }

/* Privacy Policy */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px;
    overflow-wrap: anywhere;
}
.legal-page h2 { font-size: 1.8rem; margin-top: 2em; margin-bottom: 0.5em; }
.legal-page h3 { font-size: 1.2rem; margin-top: 1.5em; margin-bottom: 0.3em; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--text-muted); }
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 1rem; }
.legal-page a {
    color: var(--brand);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.legal-page blockquote,
.legal-page pre,
.legal-page code,
.legal-page span[style*="monospace"] {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* 404 */
.page-404 {
    text-align: center;
    padding: 120px 24px;
}
.page-404 h1 { font-size: 6rem; color: var(--brand); }
.page-404 p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 24px; }
.page-404-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2C1810 0%, #5C4033 55%, #8B6F47 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-404-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(196,98,45,0.18), transparent 34%),
        linear-gradient(90deg, rgba(28,28,26,0.82), rgba(28,28,26,0.56));
}
.page-404-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: #fff;
    text-align: left;
    padding: 88px 0;
}
.page-404-kicker {
    margin-bottom: 10px;
    color: var(--brand-light);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.page-404-content h1 {
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(4.4rem, 12vw, 9rem);
    line-height: 0.9;
}
.page-404-content p:not(.page-404-kicker) {
    max-width: 560px;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.86);
    font-size: 1.18rem;
}
.page-404-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.page-404-actions .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.page-404-actions .btn-secondary:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Page Header */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

/* Animations */
.fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content pages */
.content-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px;
}
.content-page h2 { font-size: 1.8rem; margin-top: 1.5em; }
.content-page p { color: var(--text-muted); }

/* Blog post content styling */
.content-page article {
    font-size: 1.08rem;
    line-height: 1.95;
    color: var(--text);
    max-width: 680px;
    margin: 0 auto;
}
.content-page article h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 2.2em 0 0.6em;
    color: var(--text);
    letter-spacing: -0.01em;
}
.content-page article h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin: 1.8em 0 0.5em;
    color: var(--text);
}
.content-page article p {
    margin-bottom: 1.4em;
    color: var(--text);
    text-align: justify;
    hyphens: auto;
}
.content-page article p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 4px;
    color: var(--brand);
}
.content-page article ul, .content-page article ol {
    padding-left: 1.5em;
    margin-bottom: 1.4em;
}
.content-page article li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.content-page article blockquote {
    border-left: 4px solid var(--brand);
    padding: 16px 24px;
    margin: 2em 0;
    background: var(--surface);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.content-page article img {
    border-radius: 10px;
    margin: 2em auto;
    box-shadow: var(--card-shadow);
}
.content-page article a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.content-page article strong { color: var(--text); }

/* Flash messages */
.flash {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
    border-left: 4px solid transparent;
}
.flash-success { background: #D4EAD8; color: #2D6A3F; border-left-color: #2D6A3F; }
.flash-error { background: #FAD9D4; color: #8B2500; border-left-color: #8B2500; }
.flash-warning { background: #FFF3CD; color: #856404; border-left-color: #856404; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 2px solid var(--border);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
    background: var(--bg);
}
.pagination a:hover { border-color: var(--brand); color: var(--brand); background: var(--surface); }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); font-weight: 700; }

/* Sticky category tabs */
.sticky-tabs {
    position: sticky;
    top: 60px;
    z-index: 50;
    background: var(--bg);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.sticky-tabs .menu-tab { flex-shrink: 0; }

/* Allergen legend */
.allergen-legend {
    margin-top: 40px;
    padding: 20px;
    background: var(--surface);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Social share */
.article-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.share-buttons > span:first-child {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--muted-warm);
    line-height: 1;
    white-space: nowrap;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    color: #5B4634;
    text-decoration: none;
    border: 1px solid #DCCBB5;
    background: linear-gradient(180deg, #FFF9F0 0%, #F6ECDF 100%);
    box-shadow: 0 1px 4px rgba(28,28,26,0.08);
}
.share-btn i { font-size: 0.66rem; color: var(--brand); }
.share-btn:hover {
    color: #4B3828;
    border-color: var(--brand);
    box-shadow: 0 4px 10px rgba(196,98,45,0.18);
}
@media (max-width: 560px) {
    .share-buttons { flex-wrap: wrap; white-space: normal; }
}

/* Counter strip */
.counter-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.counter-item {
    padding: 24px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.counter-item:hover { background: rgba(255,255,255,0.07); }
.counter-item i {
    font-size: 1.6rem;
    color: var(--brand);
    margin-bottom: 8px;
    display: block;
}
.counter-item .counter-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}
.counter-item .counter-label {
    font-size: 0.9rem;
    color: rgba(200,191,176,0.8);
    margin-top: 4px;
}

/* Instagram embed container */
.instagram-embed { max-width: 100%; overflow: hidden; }
.instagram-embed iframe { max-width: 100%; }

/* Tagline strip */
.tagline-strip {
    text-align: center;
    padding: 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

/* Shop */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.shop-card {
    background: linear-gradient(135deg, #FFF 0%, #F9F3EC 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); border-color: var(--brand); }
.shop-card-image {
    height: 200px;
    background-color: #E8D5C4;
    background-size: cover;
    background-position: center;
}
.shop-card-body { padding: 20px; }
.shop-card-body h3 { margin-bottom: 4px; }
.shop-card-price { font-weight: 700; font-size: 1.2rem; color: var(--brand); margin-bottom: 12px; }
.shop-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.shop-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.out-of-stock-label { display: flex; align-items: center; gap: 8px; width: 100%; justify-content: center; padding: 10px 12px; background: var(--surface); border-radius: var(--radius); color: var(--text-muted); font-size: 0.85rem; font-weight: 600; border: 1px dashed var(--border); }
.qty-input {
    width: 60px;
    padding: 6px 8px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: center;
}

/* Cart */
/* Cart items (flex-based, mobile-first) */
.cart-header { display: none; }
@media (min-width: 769px) {
    .cart-header {
        display: flex;
        align-items: center;
        padding: 10px 16px;
        border-bottom: 2px solid var(--border);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        font-weight: 600;
    }
}
.cart-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}
.cart-row:last-of-type { border-bottom: none; }
.cart-cell { font-size: 0.95rem; }
.cart-cell-name { flex: 2 1 100%; font-weight: 600; }
.cart-cell-price,
.cart-cell-subtotal { flex: 0 0 auto; white-space: nowrap; }
.cart-cell-qty { flex: 0 0 auto; margin-left: auto; }
.cart-cell-remove { flex: 0 0 auto; }
.qty-input { width: 56px; height: 38px; text-align: center; font-size: 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.cart-qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cart-qty-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 38px; border: none; background: transparent; cursor: pointer; font-size: 1.05rem; color: var(--text); transition: background 0.15s; user-select: none; }
.cart-qty-btn:hover { background: var(--surface); }
.cart-qty-btn:active { background: var(--border); }
.cart-qty-value { min-width: 36px; text-align: center; font-size: 1rem; font-weight: 600; color: var(--text); border-left: 1px solid var(--border); border-right: 1px solid var(--border); line-height: 38px; }
.cart-remove-btn { width: 38px; color: #c00; border-radius: var(--radius); }
@media (min-width: 769px) {
    .cart-row { flex-wrap: nowrap; padding: 12px 16px; gap: 0; }
    .cart-cell-name { flex: 3; font-weight: 400; }
    .cart-cell-price { flex: 1; }
    .cart-cell-qty { flex: 1; margin-left: 0; }
    .cart-cell-subtotal { flex: 1; }
    .cart-cell-remove { flex: 0 0 40px; text-align: center; }
    .cart-hd-product { flex: 3; }
    .cart-hd-price { flex: 1; }
    .cart-hd-qty { flex: 1; }
    .cart-hd-subtotal { flex: 1; }
    .cart-hd-remove { flex: 0 0 40px; }
}
.cart-total-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding: 16px;
    border-top: 2px solid var(--border);
    font-weight: 700;
    font-size: 1.1rem;
}
.cart-total-label { color: var(--text-muted); font-size: 0.9rem; }
.cart-total-value { color: var(--text); }
.cart-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.cart-actions-row .btn { flex: 1; text-align: center; }
@media (max-width: 480px) {
    .cart-actions-row { flex-direction: column; gap: 8px; }
    .cart-actions-row .btn { padding: 12px; font-size: 0.9rem; }
}

@keyframes coffee-steam {
    0% { opacity: 0; transform: translateY(6px) scale(0.9); }
    30% { opacity: 0.75; }
    100% { opacity: 0; transform: translateY(-8px) scale(1.05); }
}

/* Order summary (zamowienie page sidebar) */
.order-summary { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.order-summary-header,
.order-summary-total {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.order-summary-header span:first-child { flex: 2; }
.order-summary-header span:nth-child(2),
.order-summary-header span:nth-child(3) { flex: 0 0 60px; text-align: center; }
.order-summary-row {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.order-summary-row:last-of-type { border-bottom: none; }
.order-summary-row .os-name { flex: 2; }
.order-summary-row .os-qty,
.order-summary-row .os-price { flex: 0 0 60px; text-align: center; }
.order-summary-total {
    border-top: 2px solid var(--border);
    border-bottom: none;
    font-size: 1rem;
    color: var(--text);
}
.order-summary-total span:first-child { flex: 1; text-align: right; }
.order-summary-total span:last-child { flex: 0 0 60px; text-align: center; font-weight: 700; }
@media (max-width: 768px) {
    .order-summary-row { flex-wrap: wrap; }
    .order-summary-row .os-name { flex: 1 1 100%; font-weight: 600; }
    .order-summary-row .os-qty,
    .order-summary-row .os-price { flex: 0 0 auto; }
    .order-summary-row .os-price { margin-left: auto; font-weight: 600; }
    .order-summary-header { display: none; }
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    background: var(--surface);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}

.delivery-option { transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.delivery-option.delivery-active { border-color: var(--brand) !important; background: rgba(196,98,45,0.04) !important; }

/* Training grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.training-card {
    background: linear-gradient(135deg, #FFF 0%, #F9F3EC 100%);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.training-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.training-card-image {
    height: 200px;
    background-color: #E8D5C4;
    background-size: cover;
    background-position: center;
}
.training-card-body { padding: 20px; }
.training-card-body h3 { margin-bottom: 8px; }
.training-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.training-card-meta i { color: var(--brand); width: 16px; margin-right: 4px; }
.training-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }
.training-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.training-price { font-weight: 700; font-size: 1.2rem; color: var(--brand); }
.training-places { font-size: 0.85rem; color: var(--text-muted); }

/* Order page */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.training-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.training-form-card { position: sticky; top: 100px; }

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .hero-full { min-height: 90vh; }
    .hero-half { min-height: 50vh; }
    .hero-half.hero-compact-meta { min-height: 28vh !important; padding-top: 82px; }
    .hero-half.hero-compact-meta .hero-content { padding-top: 12px !important; padding-bottom: 8px; }
    .hero-half.hero-compact-meta .hero-title { font-size: 1.55rem !important; }
    .hero-half.hero-compact-meta .hero-sub { font-size: 0.9rem !important; }
    .hero-title { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }

    .nav-list {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    }
    .nav-cb:checked ~ .nav-list {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-toggle {
        display: block;
        z-index: 100;
        position: relative;
        margin-left: auto;
        margin-right: 10px;
        overflow: visible;
    }
    .nav-toggle::before,
    .nav-toggle::after {
        content: '';
        position: absolute;
        top: -8px;
        width: 7px;
        height: 12px;
        border: 2px solid rgba(196,98,45,0.55);
        border-color: rgba(196,98,45,0.55) transparent transparent transparent;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
    }
    .nav-toggle::before { left: 5px; transform: translateY(6px) rotate(-10deg); }
    .nav-toggle::after { right: 5px; transform: translateY(6px) rotate(10deg); }
    .nav-toggle i { transition: transform 0.25s ease; transform-origin: center; }
    .nav-cb:checked ~ .nav-toggle .fa-bars::before { content: '\f00d'; }
    .nav-cb:checked ~ .nav-toggle i { transform: rotate(90deg) scale(1.05); }
    .nav-cb:checked ~ .nav-toggle { color: var(--text) !important; }
    .nav-cb:checked ~ .nav-toggle::before,
    .nav-cb:checked ~ .nav-toggle::after {
        opacity: 1;
        animation: coffee-steam 0.9s ease-out forwards;
    }
    .nav-list a { font-size: 1.02rem; padding: 5px 14px; min-height: 38px; color: var(--text) !important; }
    .nav-list a:hover { background: rgba(28,28,26,0.06) !important; }
    .nav-list a.active { color: var(--brand) !important; }
    .nav-actions { display: flex; gap: 8px; }
    .nav-actions .btn-primary { display: none; }
    .nav-cta-mobile { display: block; margin-top: 4px; }
    .nav-cta-mobile .btn { font-size: 0.9rem; padding: 10px 28px; }
    .nav-social-mobile { display: flex; gap: 14px; margin-top: 4px; }
    .nav-social-mobile a { font-size: 1.4rem; color: var(--text); }
    .logo-main { font-size: 1.15rem; }

    .usp-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 40px 0; }
    .menu-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 50px 0; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .counter-strip { grid-template-columns: 1fr; gap: 20px; }
    .content-page { padding: 24px 16px; }
    .legal-page {
        width: 100%;
        max-width: 100%;
        padding: 24px 16px;
    }
    .legal-page h1 { font-size: 2rem; }
    .legal-page h2 { font-size: 1.35rem; }
    .legal-page blockquote { padding: 14px !important; }
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .training-grid { grid-template-columns: 1fr; }
    .order-grid { grid-template-columns: 1fr; }
    .training-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .usp-strip { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 1; }
    .shop-grid { grid-template-columns: 1fr; }
    .training-grid { grid-template-columns: 1fr; }
    .section:not(.section-dark)::before { opacity: 0.72; }
    .section:not(.section-dark)::after { width: 150px; right: 8px; bottom: 12px; opacity: 0.34; }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep);
    color: var(--bg);
    padding: 16px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.85rem; line-height: 1.5; margin: 0; color: #ddd; }
.cookie-banner p a { color: var(--brand); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}
.cookie-btn-accept { background: var(--brand); color: #fff; }
.cookie-btn-accept:hover { background: var(--brand-hover); }
.cookie-btn-reject { background: transparent; color: #ccc; border: 1px solid #555; }
.cookie-btn-reject:hover { background: #333; }
.cookie-btn-more { background: transparent; color: #ccc; border: 1px solid #555; }
.cookie-btn-more:hover { background: #333; }

/* GLightbox — brand colors */
.goverlay { background: rgba(28,28,26,0.9) !important; }
.gslide-image img {
    border-radius: 6px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
}
.gprev, .gnext {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #F9F6F0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.gprev svg, .gnext svg { width: 22px; height: 22px; }
.gprev svg path, .gnext svg path { fill: #C4622D !important; stroke: #C4622D !important; }
.gprev:hover, .gnext:hover { background: #C4622D !important; }
.gprev:hover svg path, .gnext:hover svg path { fill: #fff !important; stroke: #fff !important; }
.gclose {
    top: 16px !important;
    right: 16px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: #F9F6F0 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
}
.gclose svg { width: 18px; height: 18px; }
.gclose svg path { fill: #C4622D !important; stroke: #C4622D !important; }
.gclose:hover { background: #C4622D !important; }
.gclose:hover svg path { fill: #fff !important; stroke: #fff !important; }

/* Skip to content */
.skip-link {
    position: absolute;
    top: -1000px;
    left: 0;
    z-index: 10000;
    background: var(--brand);
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Cart toast */
#cart-toast { white-space: nowrap; max-width: 90vw; text-align: center; }

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 4px 16px rgba(196,98,45,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,98,45,0.4); }


/* Status dot (open/closed) near logo */
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    position: absolute;
    bottom: 2px; left: -4px;
    transition: box-shadow 0.5s;
}
.status-dot.open {
    background: #4CAF50;
    box-shadow: 0 0 10px 3px rgba(76,175,80,0.4);
}
.status-dot.closed {
    background: #E53935;
    box-shadow: 0 0 10px 3px rgba(229,57,53,0.3);
}
.logo { position: relative; }
@media (max-width: 768px) {
    .status-dot { bottom: 0; left: -6px; width: 7px; height: 7px; }
}

/* Cart count badge */
.cart-count-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--brand); color: #fff;
    font-size: 0.6rem; width: 17px; height: 17px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-weight: 700;
}
.cart-count-badge:empty { display: none; }

/* FAQ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-list details { background: var(--surface); border-radius: var(--radius); margin-bottom: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-list summary { padding: 16px 20px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-list summary::after { content: '+'; font-size: 1.2rem; color: var(--brand); transition: transform 0.2s; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-answer { padding: 0 20px 16px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Reading progress bar */
#progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand), #E8944A);
    z-index: 10000; width: 0; transition: width 0.1s linear;
}

/* Coffee puddle card shadow */
.shop-card, .blog-card, .training-card, .menu-item, .value-card {
    box-shadow: 0 2px 12px rgba(139,90,43,0.08);
}
.shop-card:hover, .blog-card:hover, .training-card:hover, .menu-item:hover, .value-card:hover {
    box-shadow: 0 6px 24px rgba(139,90,43,0.14);
}

/* Blog paper effect */
.content-page article {
    background: linear-gradient(to bottom, transparent 28px, rgba(196,98,45,0.03) 28px);
    background-size: 100% 29px;
    padding: 20px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(28,28,26,0.06);
}

/* Parallax hint on hero */
.hero { background-attachment: fixed; }
@media (max-width: 768px) { .hero { background-attachment: scroll; } }

/* ---------- UX IMPROVEMENTS ---------- */

/* Breadcrumb readability — dark overlay behind text */
.breadcrumb { text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.breadcrumb a { opacity: 0.9; }

/* Mobile hero shorter */
@media (max-width: 768px) {
    .hero-full { min-height: 70vh !important; }
    .hero-half { min-height: 40vh !important; }
    .hero-title { font-size: 2rem !important; }
    .hero-content { padding-top: 80px !important; }
}

/* object-fit fix for card images */
.training-card-image, .blog-card-image, .shop-card-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Footer: 2 columns on mobile */
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
    .footer-col:first-child { grid-column: 1 / -1; }
}

/* Back-to-top visible on mobile + better tap target */
#back-to-top {
    width: 44px; height: 44px;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) {
    #back-to-top { display: flex !important; bottom: 80px; right: 16px; }
}

/* Touch target minimum 44px */
.btn, .btn-sm, .nav-list a, .footer-col a, .share-btn, .cookie-btn, .cart-qty-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.qty-input { min-height: 44px; }

/* Quote block styling */
.quote-block {
    max-width: 600px; margin: 0 auto; text-align: center;
    padding: 40px 32px;
    background: var(--surface);
    border-radius: var(--radius);
    border-left: 4px solid var(--brand);
    position: relative;
}
.quote-block::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--brand);
    opacity: 0.2;
    position: absolute;
    top: 8px; left: 16px;
    line-height: 1;
}
.quote-block p:first-child { font-size: 1.2rem; font-style: italic; color: var(--text); line-height: 1.7; }
.quote-block .quote-author { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }

/* Menu category tabs — mobile accordion */
@media (max-width: 768px) {
    .menu-tabs { flex-direction: column; gap: 4px; border-bottom: none; }
    .menu-tab { width: 100%; justify-content: center; border-radius: var(--radius); }
}
/* Gallery filter pills — mobile select */
@media (max-width: 768px) {
    .gallery-filter { flex-direction: column; gap: 6px; }
    .gallery-filter .filter-pill { width: 100%; text-align: center; }
}

/* ---------- STICKY BOTTOM BAR ---------- */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9998;
    background: var(--bg);
    border-top: 2px solid var(--border);
    padding: 8px 16px;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 8px));
    box-shadow: 0 -4px 20px rgba(28,28,26,0.08);
}
.sticky-bar-inner {
    display: flex;
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.sticky-bar .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius);
    min-height: 44px;
}
.sticky-bar .btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(196,98,45,0.25);
}
.sticky-bar .btn-primary i { margin-right: 6px; }
.sticky-bar .btn-primary:hover { background: var(--brand-hover); }
.sticky-bar .btn-secondary-sticky {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}
.sticky-bar .btn-secondary-sticky i { margin-right: 6px; color: var(--brand); }
.sticky-bar .btn-secondary-sticky:hover { background: #E8E2D8; }
@media (max-width: 768px) {
    .sticky-bar { display: block; }
    body { padding-bottom: 68px; }
}

/* ---------- MINI-CART SLIDE-OUT ---------- */
.mini-cart-trigger {
    position: relative;
    cursor: pointer;
}
.mini-cart-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mini-cart-overlay.active { display: block; opacity: 1; }
.mini-cart-panel {
    position: fixed;
    top: 0; right: -380px;
    width: 360px; max-width: 90vw;
    height: 100%;
    background: var(--bg);
    z-index: 10002;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mini-cart-panel.active { right: 0; }
.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.mini-cart-header h3 { font-size: 1.2rem; margin: 0; }
.mini-cart-close {
    width: 36px; height: 36px;
    border: none; background: var(--surface);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text);
}
.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
.mini-cart-item-name { flex: 1; font-weight: 600; min-width: 0; }
.mini-cart-item-qty { font-weight: 600; min-width: 20px; text-align: center; }
.mini-cart-item-price { font-weight: 600; color: var(--brand); white-space: nowrap; }
.mini-cart-item-controls { display: inline-flex; align-items: center; gap: 4px; }
.mini-cart-qty-btn {
    width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--bg); cursor: pointer; font-size: 1rem; line-height: 1;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text); padding: 0;
}
.mini-cart-qty-btn:hover { background: var(--border); }
.mini-cart-item-remove {
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 1.1rem; padding: 0 2px; line-height: 1;
    flex-shrink: 0;
}
.mini-cart-item-remove:hover { color: #c00; }
.mini-cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}
.mini-cart-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
}
.mini-cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.mini-cart-footer .btn { width: 100%; justify-content: center; }

/* Sage accent: progress bar gradient, active filters, badges */
.gallery-filter .filter-pill.active { background: var(--brand) !important; border-color: var(--brand) !important; }
#progress-bar { background: var(--brand) !important; }
.btn-primary { background: var(--brand); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
