:root {
    --cream: #F7F1E4;
    --cream-2: #FBF6EC;
    --cream-3: #EFE4D2;
    --paper: #FAF4E9;
    --gold: #C08A48;
    --gold-dark: #A87335;
    --gold-soft: #D4A76A;
    --ink: #2B3528;
    --ink-soft: #4A5344;
    --green: #3B4A34;
    --green-dark: #2C3828;
    --white: #FFFcf6;
    --shadow: 0 10px 28px rgba(70, 50, 20, 0.08);
    --shadow-hover: 0 16px 36px rgba(70, 50, 20, 0.14);
    --radius: 22px;
    --radius-sm: 14px;
    --serif: "Cormorant Garamond", "Times New Roman", serif;
    --sans: "Outfit", "Segoe UI", sans-serif;
    --script: "Great Vibes", cursive;
    --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans);
    background:
        radial-gradient(1200px 500px at 50% -80px, rgba(192,138,72,.12), transparent 60%),
        repeating-linear-gradient(0deg, rgba(120,90,40,.015) 0 1px, transparent 1px 3px),
        var(--cream);
    line-height: 1.55;
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; color: var(--ink); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.site-main { padding-bottom: 40px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header { position: relative; z-index: 20; padding: 8px 0 28px; }
.nav-bar {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    position: relative;
}
.nav-drawer { display: contents; }
.nav-cluster { display: flex; align-items: center; gap: 6px 16px; flex-wrap: wrap; }
.nav-left { grid-column: 1; justify-content: flex-end; padding-right: 18px; }
.nav-right { grid-column: 3; justify-content: flex-start; padding-left: 18px; }
.nav-link {
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    padding: 6px 2px 8px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { border-bottom-color: var(--gold); color: var(--green-dark); }
.nav-home-icon { font-size: 13px; margin-right: 2px; color: var(--gold); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--ink);
    border: 0;
    border-radius: 10px;
    padding: 10px 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 6;
}
.nav-toggle span:nth-child(-n+3) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-bar.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-bar.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-bar.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.brand-seal {
    width: 156px;
    height: 156px;
    margin-top: 8px;
    position: relative;
    display: grid;
    place-items: center;
    z-index: 3;
    grid-column: 2;
}
.brand-ring { display: none; }
.brand-seal img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    z-index: 1;
    filter: drop-shadow(0 10px 18px rgba(90,60,20,.28));
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 12px;
    padding: 12px 22px;
    transition: .2s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.nav-order { padding: 10px 18px; position: relative; }
.cart-badge {
    min-width: 18px; height: 18px; border-radius: 50%;
    background: var(--green); color: #fff; font-size: 10px;
    display: inline-grid; place-items: center; margin-left: 4px;
}

/* Cards & media */
.card {
    background: var(--cream-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.media { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media img, .card img { width: 100%; height: 100%; object-fit: cover; }
.script { font-family: var(--script); color: var(--gold); font-weight: 400; letter-spacing: .02em; }
.gold { color: var(--gold); }
.divider { width: 70px; height: 2px; background: var(--gold); margin: 14px 0 18px; border: 0; }
.divider.center { margin-inline: auto; }
.section-head {
    text-align: center;
    margin: 48px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 0; }
.section-head::before, .section-head::after {
    content: "";
    width: 72px; height: 1px; background: var(--gold);
}

/* Home grid */
.home-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 1.05fr;
    grid-template-areas:
        "menu cakes specials"
        "contact wafels takeaway";
    gap: 22px;
    width: min(1180px, calc(100% - 36px));
    margin: 8px auto 28px;
}
.home-card { display: flex; flex-direction: column; min-height: 100%; padding: 22px 22px 0; }
.home-card h2 { font-size: 34px; }
.home-card p { color: var(--ink-soft); font-size: 14.5px; }
.home-card .btn { align-self: flex-start; margin: 6px 0 16px; }
.home-card .media { height: 190px; margin-top: auto; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.area-menu { grid-area: menu; }
.area-cakes { grid-area: cakes; }
.area-specials { grid-area: specials; }
.area-contact { grid-area: contact; }
.area-wafels { grid-area: wafels; }
.area-takeaway { grid-area: takeaway; position: relative; }
.contact-card {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160' fill='none' stroke='%23C08A48' stroke-opacity='.18' stroke-width='1.2'%3E%3Cpath d='M20 140c20-40 40-70 90-90'/%3E%3Cpath d='M40 150c30-50 70-80 140-70'/%3E%3C/svg%3E") no-repeat bottom right,
        var(--cream-2);
    padding-bottom: 22px;
}
.contact-card .contact-rows { display: grid; gap: 10px; margin: 12px 0 18px; font-size: 14px; }
.contact-row { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: start; }
.contact-row .ico { color: var(--gold); width: 22px; }
.contact-row .ico svg { width: 22px; height: 22px; }
.socials { display: flex; gap: 8px; margin: 8px 0 16px; }
.socials a {
    width: 32px; height: 32px; border: 1px solid var(--gold); color: var(--gold);
    border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 600;
}
.contact-card .btn { width: 100%; }
.badge-round {
    position: absolute; right: 12px; top: 12px;
    width: 92px; height: 92px; border-radius: 50%;
    background: var(--gold); color: #fff; display: grid; place-items: center;
    text-align: center; font-size: 10px; letter-spacing: .08em; line-height: 1.25;
    box-shadow: var(--shadow); z-index: 2; padding: 10px;
    text-transform: uppercase;
}

/* Trust bar */
.trust-bar {
    width: min(1180px, calc(100% - 36px));
    margin: 10px auto 20px;
    background: #F3E7D4;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 18px 10px;
}
.trust-item { text-align: center; padding: 6px 10px; color: var(--gold); }
.trust-item .ico svg { width: 34px; height: 34px; margin: 0 auto 8px; }
.trust-item span { display: block; font-size: 11px; letter-spacing: .04em; line-height: 1.3; color: var(--gold-dark); text-transform: uppercase; }

/* Footer */
.site-footer { padding: 20px 0 36px; }
.footer-values {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.1fr;
    gap: 18px;
    align-items: start;
    padding: 10px 0 24px;
}
.footer-values h3 { font-family: var(--sans); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-values p { font-size: 13px; color: var(--ink-soft); margin: 0; }
.value-icon { color: var(--gold); }
.value-icon .ico svg { width: 28px; height: 28px; }
.footer-script { font-family: var(--script); font-size: 28px; color: var(--gold); line-height: 1.25; }
.footer-meta { text-align: center; font-size: 13px; color: var(--ink-soft); }
.footer-meta .tiny { font-size: 11px; opacity: .8; }

/* Page heroes */
.page-hero, .split-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 8px auto 28px;
    display: grid;
    gap: 28px;
    align-items: center;
}
.split-hero { grid-template-columns: .9fr 1.2fr; }
.page-kicker { font-family: var(--script); font-size: 32px; color: var(--gold); margin-bottom: 8px; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-grid img, .photo-grid .media { height: 150px; border-radius: 14px; }
.icon-row {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 32px;
    display: grid;
    background: transparent;
    gap: 0;
}
.icon-row.cols-6 { grid-template-columns: repeat(6, 1fr); }
.icon-row.cols-5 { grid-template-columns: repeat(5, 1fr); }
.icon-cell {
    text-align: center; color: var(--gold); padding: 12px 8px;
    border-left: 1px solid rgba(192,138,72,.35);
}
.icon-cell:first-child { border-left: 0; }
.icon-cell .ico svg { width: 32px; height: 32px; margin: 0 auto 8px; }
.icon-cell b { display: block; font-size: 11px; letter-spacing: .08em; font-weight: 600; text-transform: uppercase; }

.panel {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 32px;
    background: var(--cream-2);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 32px;
    position: relative;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.dot-list { list-style: none; padding: 0; margin: 0; }
.dot-list li { position: relative; padding: 6px 0 6px 18px; }
.dot-list li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.soft-note {
    background: var(--paper);
    border-radius: 18px;
    padding: 16px 18px;
    text-align: center;
    font-family: var(--script);
    font-size: 28px;
    color: var(--gold);
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 24px;
}

/* Menu */
.menu-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 4px auto 18px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 230px;
    box-shadow: var(--shadow);
}
.menu-hero img { width: 100%; height: 230px; object-fit: cover; }
.hours-box {
    position: absolute; right: 18px; top: 18px;
    background: rgba(247,241,228,.94);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 14px 16px;
    max-width: 230px;
    text-align: center;
    font-size: 13px;
}
.hours-box .ico { color: var(--gold); }
.cat-jump {
    width: min(1180px, calc(100% - 36px));
    margin: 8px auto 24px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
}
.cat-jump a { text-align: center; color: var(--gold); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.cat-jump .ico svg { width: 28px; height: 28px; margin: 0 auto 6px; }
.menu-grid { width: min(1180px, calc(100% - 36px)); margin: 0 auto 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.menu-card { background: var(--cream-2); border-radius: 20px; box-shadow: var(--shadow); padding: 20px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: start; }
.menu-card.wide { grid-column: 1 / -1; grid-template-columns: 1.3fr .7fr; }
.menu-card h2 { font-size: 28px; }
.menu-card .media { min-height: 150px; }
.price { float: right; color: var(--gold-dark); font-weight: 600; }

/* Specials */
.specials-grid { width: min(1180px, calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.special-card { background: var(--cream-2); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.special-card .media { height: 220px; border-radius: 0; }
.special-card .body { padding: 20px; }
.special-card .price-lg { font-family: var(--serif); font-size: 32px; color: var(--gold); }
.chip { display: inline-block; background: var(--ink); color: #fff; border-radius: 999px; padding: 6px 12px; font-size: 11px; letter-spacing: .08em; }

/* Shop */
.shop-grid { width: min(1180px, calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--cream-2); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card .media { height: 210px; }
.product-card .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.status { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); }
.status.uitverkocht, .status.tijdelijk_niet { color: #8a3b2a; }
.qty { width: 64px; padding: 8px; border-radius: 8px; border: 1px solid var(--cream-3); font-family: var(--sans); }

/* Forms */
.form { display: grid; gap: 12px; }
.form label { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.form input, .form textarea, .form select {
    width: 100%; padding: 11px 12px; border: 1px solid #e2d3bc; border-radius: 10px;
    font-family: var(--sans); background: #fff; color: var(--ink);
}
.alert { padding: 12px 14px; border-radius: 12px; margin: 0 auto 16px; width: min(1180px, calc(100% - 36px)); }
.alert-ok { background: #e7f0df; }
.alert-err { background: #f6e2da; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 8px; border-bottom: 1px solid #eadcc8; text-align: left; }

/* Mosaic / about */
.mosaic { width: min(1180px, calc(100% - 36px)); margin: 0 auto 28px; display: grid; gap: 16px; }
.mosaic.about { grid-template-columns: 1.1fr 1.4fr; }
.mosaic.light { grid-template-columns: .7fr 1.1fr 1fr .7fr; }
.news-grid { width: min(1180px, calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.prose { font-size: 15.5px; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.callout { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.gold-underline { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.has-leaf {
    position: relative;
    overflow: hidden;
}
.has-leaf::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 6px;
    width: 90px;
    height: 70px;
    pointer-events: none;
    opacity: .28;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 70' fill='none' stroke='%23C08A48' stroke-width='1.2'%3E%3Cpath d='M8 62c18-28 34-46 72-54'/%3E%3Cpath d='M22 58c10-8 18-6 22 2M38 42c8-10 16-8 20 2M54 28c8-8 14-6 18 4'/%3E%3C/svg%3E") no-repeat bottom right;
}
.has-leaf-left::before {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 8px;
    width: 80px;
    height: 60px;
    pointer-events: none;
    opacity: .22;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 60' fill='none' stroke='%23C08A48' stroke-width='1.2'%3E%3Cpath d='M6 50c16-22 28-36 58-42'/%3E%3Cpath d='M18 46c8-8 16-6 20 2'/%3E%3C/svg%3E") no-repeat;
}
.divider-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 18px;
    color: var(--gold);
}
.divider-ornament::before,
.divider-ornament::after {
    content: "";
    width: 48px;
    height: 1px;
    background: var(--gold);
}
.divider-ornament span {
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--gold);
}

/* Over ons */
.about-hero { grid-template-columns: 1fr 1.25fr; }
.about-copy { padding: 32px 34px 40px; }
.about-copy h1 { font-size: clamp(32px, 4vw, 46px); }
.about-source {
    display: grid;
    grid-template-columns: .9fr 1.15fr .9fr .9fr 1.15fr;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
}
.about-source .media { min-height: 240px; }
.about-source .card { padding: 22px 20px 36px; }
.about-source h2 { font-size: 26px; }
.values-bar {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
    background: #F3E7D4;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 180px repeat(6, 1fr);
    gap: 8px;
    padding: 18px 16px;
    align-items: center;
}
.values-title h2 { font-size: 26px; margin: 0; }
.values-title p { margin: 0; font-size: 12px; color: var(--ink-soft); }
.values-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-dark);
}
.values-item .ico {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
}
.values-item .ico svg { width: 22px; height: 22px; }
.values-item span {
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.25;
    font-weight: 600;
    color: var(--gold-dark);
}
.about-feel {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr 1fr;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
}
.about-feel .card { padding: 24px 22px 28px; }
.overlay-media { position: relative; min-height: 240px; }
.play-banner {
    position: absolute;
    left: 16px;
    bottom: 18px;
    background: #3d6ea8;
    color: #fff;
    border-radius: 18px;
    padding: 10px 14px;
    max-width: 78%;
    font-size: 13px;
    line-height: 1.25;
    margin: 0;
    box-shadow: var(--shadow);
}
.play-banner span { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* Wafels */
.waffle-hero { grid-template-columns: .85fr 1.15fr; align-items: stretch; }
.waffle-copy { padding: 32px 30px 48px; }
.waffle-copy h1 { font-size: clamp(34px, 4.4vw, 48px); }
.waffle-photos { grid-template-columns: 1fr 1fr; gap: 12px; }
.waffle-photos .media { height: 148px; }
.menu-choices { position: relative; }
.menu-choices h3 { font-family: var(--serif); font-size: 26px; }
.script-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 24px;
    padding: 14px 18px;
    border: 1px solid rgba(192,138,72,.45);
    border-radius: 12px;
    font-family: var(--script);
    font-size: 28px;
    color: var(--gold);
    text-align: center;
}

/* Ijstaarten */
.cake-hero { grid-template-columns: 1fr 1.05fr; align-items: stretch; }
.cake-copy { padding: 28px 30px 44px; }
.cake-copy h1 { font-size: clamp(36px, 4.6vw, 52px); }
.cake-hero .media { min-height: 420px; }
.cake-secondary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
}
.cake-secondary .media { min-height: 220px; }
.cake-more {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
}
.cake-more .media { min-height: 180px; }
.cake-more .span-2 { grid-column: span 2; }
.cake-icons {
    background: var(--cream-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 8px;
    padding: 18px 14px;
    align-content: center;
}
.cake-icons .icon-cell { border: 0; padding: 8px 4px; }
.info-cols .card { padding: 24px 24px 40px; }
.pill-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill-btns .btn { padding: 8px 12px; font-size: 10px; }

/* Lichte gelato */
.light-title { text-align: center; padding: 8px 0 10px; }
.light-title h1 { font-size: clamp(28px, 4vw, 44px); letter-spacing: .06em; text-transform: uppercase; }
.light-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 12px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 28px;
    padding: 12px;
    border: 1px solid rgba(192,138,72,.35);
    border-radius: 24px;
}
.light-intro .card { padding: 26px 26px 40px; box-shadow: none; background: transparent; }
.light-intro .media { min-height: 320px; }
.feature-desc {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.35;
}
.light-mosaic {
    display: grid;
    grid-template-columns: .8fr 1.05fr 1fr .9fr;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto 18px;
}
.light-mosaic .stack { display: grid; gap: 14px; }
.light-mosaic .media { min-height: 160px; }
.light-mosaic .tall { min-height: 340px; }
.light-slot { padding: 24px 20px 40px; text-align: center; }
.light-slot .dots { letter-spacing: .4em; color: var(--gold); margin: 16px 0; }
.page-address {
    text-align: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 18px;
    margin: 8px auto 28px;
    padding-top: 14px;
    border-top: 1px solid rgba(192,138,72,.45);
    width: min(720px, calc(100% - 36px));
}

/* Take away */
.takeaway-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 4px auto 22px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 280px;
    box-shadow: var(--shadow);
}
.takeaway-hero img { width: 100%; height: 280px; object-fit: cover; }
.takeaway-hero-copy {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
}
.take-title {
    font-family: var(--script);
    font-size: clamp(48px, 7vw, 72px);
    color: #3E2B1F;
    line-height: .9;
    margin: 0 0 8px;
    text-shadow: 0 2px 10px rgba(255,255,255,.4);
}
.take-title .heart { font-size: 22px; color: var(--gold); vertical-align: 12px; margin-left: 4px; }
.take-sub { font-family: var(--serif); font-size: 26px; color: #3E2B1F; margin: 0; }
.take-sub .script { font-size: 30px; }
.takeaway-panel { padding: 36px 32px 20px; }
.takeaway-lead { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.takeaway-lead h2 { font-size: clamp(28px, 3.4vw, 40px); }
.takeaway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 18px;
}
.takeaway-box h3 {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}
.hours-line { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0; font-size: 14px; }
.hours-line .ico { color: var(--gold); flex: 0 0 28px; }
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
}
.order-item { display: grid; grid-template-columns: 36px 1fr; gap: 8px; align-items: start; }
.order-item .ico { color: var(--gold); }
.order-item b { display: block; color: var(--gold); font-size: 12px; letter-spacing: .08em; }
.order-item span { font-size: 13px; color: var(--ink-soft); }
.partner-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}
.partner-uber { background: #000; }
.partner-uber span { color: #06C167; margin-left: 4px; }
.partner-takeaway { background: #FF8000; font-family: var(--sans); }

/* Menu hours + cards */
.hours-box.scallop {
    background: var(--white);
    border: 2px solid rgba(192,138,72,.35);
    border-radius: 42px 48px 50px 40px / 36px 40px 46px 38px;
    padding: 16px 18px 12px;
    max-width: 210px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.45;
}
.hours-box.scallop strong { display: block; font-weight: 700; }
.hours-box.scallop p { margin: 0; }
.menu-grid.menu-board {
    grid-template-columns: repeat(12, 1fr);
}
.menu-board .menu-card { grid-column: span 3; grid-template-columns: 1fr; }
.menu-board .menu-card.has-side {
    grid-template-columns: 1.1fr .9fr;
}
.menu-board .span-6 { grid-column: span 6; }
.menu-board .span-4 { grid-column: span 4; }
.menu-board .span-3 { grid-column: span 3; }
.menu-board .coupe-photos {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.menu-board .coupe-photos .media { min-height: 110px; }
.two-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.menu-card.stack .media { min-height: 110px; margin-bottom: 10px; }

.ico svg { width: 24px; height: 24px; display: block; }

/* Motion */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background: var(--cream);
    transition: opacity .55s ease, visibility .55s ease;
}
.page-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader-inner {
    position: relative;
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
}
.page-loader-inner img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    animation: loader-seal .9s ease both;
}
.loader-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(192,138,72,.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-seal {
    from { opacity: 0; transform: scale(.86); }
    to { opacity: 1; transform: scale(1); }
}

body.is-loading .site-header,
body.is-loading .site-main,
body.is-loading .site-footer {
    opacity: 0;
}
body.is-ready .site-header,
body.is-ready .site-main,
body.is-ready .site-footer {
    opacity: 1;
    transition: opacity .7s ease;
}
body.page-leave .site-header,
body.page-leave .site-main,
body.page-leave .site-footer {
    opacity: 0;
    transition: opacity .28s ease;
}

.nav-link {
    transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.nav-link:hover { transform: translateY(-1px); }
.brand-seal {
    transition: transform .4s ease;
}
.brand-seal:hover { transform: scale(1.04) rotate(-2deg); }
.btn {
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.btn:hover { box-shadow: 0 8px 18px rgba(90,60,20,.14); }
.btn-green:hover { transform: translateY(-1px); }
.socials a {
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.socials a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.card, .menu-card, .special-card, .panel, .hours-box {
    transition: transform .4s ease, box-shadow .4s ease;
}
.home-card:hover, .menu-card:hover, .special-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.product-card { transition: transform .35s ease, box-shadow .35s ease; }
.media img, .card img, .menu-hero img {
    transition: transform .7s ease, opacity .5s ease, filter .5s ease;
}
.home-card:hover .media img,
.special-card:hover .media img,
.product-card:hover .media img,
.menu-card:hover .media img {
    transform: scale(1.05);
}
img.is-loading-img {
    opacity: 0;
    filter: blur(8px);
}
img.is-loaded {
    opacity: 1;
    filter: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.home-card:nth-child(1) { transition-delay: .04s; }
.home-card:nth-child(2) { transition-delay: .1s; }
.home-card:nth-child(3) { transition-delay: .16s; }
.home-card:nth-child(4) { transition-delay: .08s; }
.home-card:nth-child(5) { transition-delay: .14s; }
.home-card:nth-child(6) { transition-delay: .2s; }
.reveal.is-in { transition-delay: 0s; }

.cart-badge { animation: badge-pop .35s ease; }
.js-added { animation: fade-up .4s ease; display: inline-block; margin-top: 8px; }
@keyframes badge-pop {
    0% { transform: scale(.4); }
    70% { transform: scale(1.18); }
    100% { transform: scale(1); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .page-loader { display: none; }
    body.is-loading .site-header,
    body.is-loading .site-main,
    body.is-loading .site-footer,
    .reveal {
        opacity: 1;
        transform: none;
    }
    img.is-loading-img { opacity: 1; filter: none; }
}

@media (max-width: 1100px) {
    .about-source, .about-feel, .values-bar, .light-mosaic, .cake-more {
        grid-template-columns: 1fr 1fr;
    }
    .values-bar { grid-template-columns: 1fr 1fr 1fr; }
    .values-title { grid-column: 1 / -1; }
    .cake-more .span-2 { grid-column: span 1; }
    .menu-board .menu-card,
    .menu-board .span-6,
    .menu-board .span-4,
    .menu-board .span-3 { grid-column: span 6; }
}

@media (max-width: 980px) {
    .nav-bar {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 108px;
        padding-bottom: 4px;
    }
    .nav-toggle {
        display: inline-flex;
        position: absolute;
        left: 4px;
        top: 32px;
    }
    .brand-seal {
        width: 96px;
        height: 96px;
        margin: 0 auto;
        justify-self: center;
        grid-column: 1;
    }
    .nav-drawer {
        display: none;
        grid-column: 1;
        width: 100%;
        background: var(--cream-2);
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 12px 16px 18px;
        margin-top: 8px;
        flex-direction: column;
        gap: 4px;
        z-index: 30;
    }
    .nav-bar.is-open .nav-drawer { display: flex; }
    .nav-cluster {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 0;
        grid-column: auto;
    }
    .nav-cluster .nav-link,
    .nav-cluster .btn {
        width: 100%;
        justify-content: flex-start;
        white-space: normal;
        padding: 12px 6px;
        border-bottom: 1px solid rgba(192,138,72,.18);
    }
    .nav-cluster .btn { margin-top: 8px; justify-content: center; border-bottom: 0; }
    .home-grid, .menu-grid, .shop-grid, .news-grid, .two-col, .split-hero, .mosaic.about, .mosaic.light, .footer-values, .trust-bar, .icon-row, .cat-jump,
    .about-source, .about-feel, .values-bar, .waffle-hero, .cake-hero, .cake-secondary, .cake-more, .light-intro, .light-mosaic, .takeaway-grid, .two-list, .order-grid, .cake-icons {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }
    .home-grid { display: flex; flex-direction: column; }
    .menu-card, .menu-card.wide, .menu-board .menu-card.has-side { grid-template-columns: 1fr; }
    .menu-board .menu-card,
    .menu-board .span-6,
    .menu-board .span-4,
    .menu-board .span-3 { grid-column: span 1; }
    .menu-grid.menu-board { grid-template-columns: 1fr; }
    .cat-jump { grid-template-columns: repeat(3, 1fr); }
    .icon-row.cols-6, .icon-row.cols-5 { grid-template-columns: repeat(2, 1fr); }
    .icon-cell { border-left: 0; }
    .hours-box { position: static; max-width: none; margin: 12px; }
    .badge-round { display: none; }
    .nav-link-long { white-space: normal; }
    .takeaway-hero-copy { left: 18px; right: 18px; }
    .values-title { grid-column: auto; }
    .cake-hero .media, .about-source .media, .waffle-photos .media { min-height: 180px; height: auto; }
}
