/* ===================================================================
   Slastičarnica Jakšić — styles (ported from the Figma design)
   =================================================================== */

:root {
    --choc:   #7C4D32;
    --blush:  #EEC9C4;
    --gold:   #F2A541;
    --vanilla:#F9E6CF;
    --serif:  'Playfair Display', Georgia, serif;
    --accent: 'Cormorant Garamond', Georgia, serif;
    --sans:   'Lato', system-ui, sans-serif;
    --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: #3a2a20;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p { margin: 0; }

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

a { color: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--vanilla); }
::-webkit-scrollbar-thumb { background: #c4a080; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--choc); }

/* ── Layout helpers ─────────────────────────────────────────────── */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow{ max-width: 900px;  margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.mt-48 { margin-top: 48px; }

.section { padding: 100px 24px; }
.section-white { background: #fff; }
.section-cream { background: #faf9f7; }
.section-choc  { background: var(--choc); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--sans); font-size: .85rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    padding: 14px 32px; border-radius: 3px; border: 2px solid transparent;
    cursor: pointer; transition: all .3s ease;
}
.btn .arrow { transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-blush { background: var(--blush); border-color: var(--blush); color: var(--choc); }
.btn-blush:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-choc { background: var(--choc); border-color: var(--choc); color: var(--vanilla); align-self: flex-start; }
.btn-choc:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--blush); color: var(--choc); }

.link-underline {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--choc); font-family: var(--sans); font-size: .85rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
    border-bottom: 2px solid var(--blush); padding-bottom: 4px; transition: border-color .2s ease;
}
.link-underline:hover { border-color: var(--gold); }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(124,77,50,.1);
    transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(124,77,50,.12); backdrop-filter: blur(10px); }
/* Transparent on home hero until scrolled */
.site-header.header-transparent {
    background: rgba(0,0,0,0); border-bottom-color: transparent;
}
.header-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px; height: var(--header-h);
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; gap: 1px; text-decoration: none; }
.logo-name {
    font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
    color: var(--choc); line-height: 1.1; transition: color .4s ease;
}
.logo-sub {
    font-family: var(--sans); font-size: .68rem; font-weight: 300;
    color: #a07050; letter-spacing: .18em; text-transform: uppercase; transition: color .4s ease;
}
.header-transparent .logo-name { color: #fff; }
.header-transparent .logo-sub  { color: var(--blush); }

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-family: var(--sans); font-size: .82rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: var(--choc);
    text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent;
    transition: color .3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.header-transparent .nav-link { color: #fff; }
.header-transparent .nav-link:hover, .header-transparent .nav-link.active { color: var(--gold); }

.lang-toggle {
    background: none; border: 1px solid var(--blush); border-radius: 20px;
    padding: 4px 12px; cursor: pointer; font-family: var(--sans); font-size: .75rem;
    font-weight: 700; letter-spacing: .1em; color: var(--choc); text-decoration: none;
    transition: all .3s ease; line-height: 1.5;
}
.lang-toggle:hover { background: var(--blush); color: var(--choc); }
.header-transparent .lang-toggle { color: #fff; border-color: rgba(255,255,255,.5); }

.nav-mobile-controls { display: none; align-items: center; gap: 16px; }
.burger { background: none; border: none; cursor: pointer; color: var(--choc); padding: 4px; display: flex; }
.header-transparent .burger { color: #fff; }

/* Drawer */
.drawer-overlay {
    position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.4);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: 280px; z-index: 1001;
    background: #fff; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    display: flex; flex-direction: column; padding: 80px 32px 32px; gap: 8px;
}
.drawer.open { transform: translateX(0); }
.drawer-title {
    font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--choc);
    margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--blush);
}
.drawer-link {
    font-family: var(--sans); font-size: .95rem; font-weight: 400; letter-spacing: .08em;
    text-transform: uppercase; color: var(--choc); text-decoration: none;
    padding: 10px 0; border-bottom: 1px solid rgba(124,77,50,.08);
}
.drawer-link.active { font-weight: 700; color: var(--gold); }

/* ── Hero (home) ────────────────────────────────────────────────── */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.55) 0%, rgba(50,20,5,.7) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; padding: 0 24px; max-width: 760px; }
.hero-since {
    font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .28em;
    text-transform: uppercase; color: var(--blush); margin-bottom: 20px;
}
.hero-title {
    font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 5.2rem); font-weight: 700;
    color: #fff; line-height: 1.05; margin-bottom: 20px; letter-spacing: -.01em;
}
.hero-tagline {
    font-family: var(--accent); font-size: clamp(1.15rem, 3vw, 1.7rem); font-style: italic;
    color: var(--vanilla); margin-bottom: 16px;
}
.hero-sub {
    font-family: var(--sans); font-size: 1rem; color: rgba(255,255,255,.75);
    line-height: 1.7; max-width: 540px; margin: 0 auto 40px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: rgba(255,255,255,.5);
}
.scroll-hint span:first-child {
    font-family: var(--sans); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-hint .chevron { font-size: 1.3rem; line-height: 1; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Section headings ───────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 64px; }
.badge {
    display: inline-block; font-family: var(--sans); font-size: .7rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
    background: rgba(242,165,65,.1); border: 1px solid rgba(242,165,65,.3);
    border-radius: 20px; padding: 5px 16px; margin-bottom: 16px;
}
.badge-on-dark { background: rgba(242,165,65,.15); border-color: rgba(242,165,65,.4); }
.section-title {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    color: var(--choc); margin-bottom: 12px; line-height: 1.2;
}
.section-title.left { text-align: left; }
.section-title.on-dark { color: #fff; }
.section-sub {
    font-family: var(--sans); font-size: 1.05rem; color: #888;
    max-width: 540px; margin: 16px auto 0; line-height: 1.7;
}
.section-sub.on-dark { color: rgba(255,255,255,.65); max-width: 480px; }
.section-sub.center-block { margin-bottom: 32px; }

.ornament { display: flex; align-items: center; gap: 12px; margin: 8px auto; max-width: 180px; }
.ornament .line { flex: 1; height: 1px; background: var(--blush); }
.ornament .leaf { color: var(--gold); font-size: 1.2rem; }
.center-ornament { margin: 0 auto 48px; }

/* ── Grids ──────────────────────────────────────────────────────── */
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ── Bestseller cards ───────────────────────────────────────────── */
.card-best {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(124,77,50,.07); border: 1px solid rgba(238,201,196,.5);
    transition: transform .3s ease, box-shadow .3s ease;
}
.card-best:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(124,77,50,.14); }
.card-best-img { height: 260px; background-size: cover; background-position: center; position: relative; }
.card-best-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(124,77,50,.5) 0%, transparent 60%);
}
.card-best-top {
    position: absolute; bottom: 16px; left: 20px; right: 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.card-best-top h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; }
.price-pill {
    background: var(--gold); color: #fff; font-family: var(--serif);
    font-size: .95rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
}
.card-best-body { padding: 24px 24px 28px; }
.card-best-body p { font-family: var(--sans); font-size: .92rem; color: #7a6050; line-height: 1.7; }

/* ── About strip (home) ─────────────────────────────────────────── */
.about-strip { background: var(--vanilla); }
.about-strip-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0; padding-left: 0; padding-right: 0;
}
.about-strip-img { background-size: cover; background-position: center; min-height: 440px; }
.about-strip-text { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-strip-text .prose { color: #6b5040; line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-strip-text .btn-choc { margin-top: 16px; }

/* ── Seasonal cards ─────────────────────────────────────────────── */
.section-choc .section-head { margin-bottom: 56px; }
.card-seasonal {
    background: rgba(255,255,255,.05); border: 1px solid rgba(238,201,196,.15);
    border-radius: 8px; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
}
.card-seasonal:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.card-seasonal-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.season-pill {
    position: absolute; top: 12px; right: 12px; background: var(--gold); color: #fff;
    font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.card-seasonal-body { padding: 24px 28px; }
.card-seasonal-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.card-seasonal-row h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--vanilla); }
.price-gold { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--gold); }
.card-seasonal-body p { font-family: var(--sans); font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Testimonials ───────────────────────────────────────────────── */
.card-testi {
    background: #fff; border-radius: 8px; padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(124,77,50,.06); border: 1px solid rgba(238,201,196,.4);
    position: relative;
}
.quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--blush); line-height: .6; margin-bottom: 16px; opacity: .7; }
.testi-text { font-family: var(--sans); font-size: .93rem; color: #5a4a40; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { color: var(--gold); font-size: .8rem; }
.testi-name { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--choc); }
.testi-city { font-family: var(--sans); font-size: .8rem; color: #aaa; margin-left: 8px; }

/* ── Page hero (inner pages) ────────────────────────────────────── */
.page-hero {
    position: relative; height: 400px; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.page-hero-short { height: 340px; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(20,8,2,.74) 0%, rgba(124,77,50,.68) 100%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 24px; }
.page-hero-kicker {
    font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .3em;
    text-transform: uppercase; color: var(--blush); margin-bottom: 12px;
}
.page-hero-title {
    font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700;
    color: #fff; margin-bottom: 16px; line-height: 1.05;
}
.page-hero-sub {
    font-family: var(--accent); font-size: 1.2rem; font-style: italic; color: var(--vanilla);
    max-width: 580px; margin: 0 auto;
}

/* ── Menu page ──────────────────────────────────────────────────── */
.menu-tabs {
    position: sticky; top: var(--header-h); z-index: 100;
    background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(238,201,196,.5); box-shadow: 0 2px 12px rgba(124,77,50,.06);
}
.menu-tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; flex-wrap: wrap; }
.menu-tab {
    font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; padding: 18px 28px; border: none; background: none; cursor: pointer;
    color: #a08070; border-bottom: 3px solid transparent; transition: all .25s ease;
}
.menu-tab:hover { color: var(--choc); }
.menu-tab.active { color: var(--choc); border-bottom-color: var(--gold); }

.menu-body { background: #fdfcfb; }
.menu-section { padding: 72px 24px; }
.menu-section.bg-a { background: #fdfcfb; }
.menu-section.bg-b { background: #fff; }
.menu-section.hidden { display: none; }
.menu-section-inner { max-width: 1100px; margin: 0 auto; }
.menu-section-head {
    display: grid; grid-template-columns: clamp(100px, 18vw, 220px) 1fr;
    margin-bottom: 48px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(124,77,50,.1);
}
.menu-section-img { background-size: cover; background-position: center; }
.menu-section-info { background: var(--choc); padding: clamp(24px,4vw,40px) clamp(24px,4vw,48px); display: flex; flex-direction: column; justify-content: center; }
.menu-section-kicker { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.menu-section-info h2 { font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.menu-section-info p { font-family: var(--accent); font-size: 1.05rem; font-style: italic; color: var(--blush); line-height: 1.5; }

.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2px 32px; }
.menu-row { display: flex; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(238,201,196,.35); gap: 8px; border-radius: 2px; transition: background .2s ease; }
.menu-row:hover { background: rgba(249,230,207,.4); }
.menu-row-name { font-family: var(--serif); font-size: 1rem; color: #4a3428; flex: 1; line-height: 1.3; }
.menu-row-dots { flex: 0 1 40px; border-bottom: 1.5px dotted rgba(124,77,50,.2); margin: 0 6px 4px; min-width: 16px; }
.menu-row-price { font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.order-icon { color: var(--choc); margin-bottom: 20px; display: flex; justify-content: center; }

/* ── About page ─────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 80px; align-items: center; }
.about-story-text .prose { color: #6b5040; line-height: 1.85; margin-bottom: 20px; font-size: 1rem; }
.about-quote { margin: 32px 0 0; padding: 20px 28px; background: var(--vanilla); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; }
.about-quote p { font-family: var(--accent); font-size: 1.2rem; font-style: italic; color: var(--choc); line-height: 1.6; }
.about-quote footer { font-family: var(--sans); font-size: .8rem; color: #a07050; margin-top: 12px; letter-spacing: .08em; }

.about-images { position: relative; }
.about-img-main { border-radius: 8px; height: 380px; background-size: cover; background-position: center; box-shadow: 0 20px 60px rgba(124,77,50,.2); }
.about-img-small { position: absolute; bottom: -24px; left: -24px; width: 160px; height: 160px; border-radius: 8px; background-size: cover; background-position: center; border: 4px solid #fff; box-shadow: 0 8px 30px rgba(124,77,50,.2); }
.about-year-badge { position: absolute; top: 24px; right: -16px; background: var(--gold); color: #fff; border-radius: 50%; width: 90px; height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(242,165,65,.4); font-family: var(--serif); }
.about-year-small { font-size: .7rem; letter-spacing: .1em; }
.about-year-big { font-size: 1.4rem; font-weight: 700; line-height: 1; }

.value-card { background: #fff; border-radius: 8px; padding: 40px 36px; text-align: center; box-shadow: 0 4px 24px rgba(124,77,50,.06); border: 1px solid rgba(238,201,196,.4); }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--choc); }
.value-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--choc); margin-bottom: 12px; }
.value-card p { font-family: var(--sans); font-size: .92rem; color: #8a7060; line-height: 1.7; }

/* Timeline */
.timeline { position: relative; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(to bottom, var(--blush), var(--gold), var(--blush)); }
.timeline-item { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-bottom: 48px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-card { background: var(--vanilla); border: 1px solid var(--blush); border-radius: 8px; padding: 20px 24px; max-width: 320px; }
.timeline-card p { font-family: var(--sans); font-size: .92rem; color: #6b5040; line-height: 1.7; }
.timeline-item.left  .timeline-card { justify-self: end; }
.timeline-item.left  { grid-template-areas: "card dot ."; }
.timeline-item.right { grid-template-areas: ". dot card"; }
.timeline-item.left  .timeline-card { grid-area: card; }
.timeline-item.right .timeline-card { grid-area: card; }
.timeline-dot { grid-area: dot; width: 52px; height: 52px; border-radius: 50%; background: var(--choc); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(124,77,50,.3); }
.timeline-dot.last { background: var(--gold); }
.timeline-dot span { font-family: var(--serif); font-size: .75rem; font-weight: 700; color: #fff; }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-tabs { display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; margin-bottom: 16px; }
.gallery-tab {
    font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: 9px 22px; border: none; border-radius: 3px; cursor: pointer;
    background: var(--vanilla); color: var(--choc); transition: all .3s ease;
}
.gallery-tab.active { background: var(--choc); color: #fff; }

.masonry { columns: 4; column-gap: 16px; }
.masonry-item {
    margin: 0 0 16px; position: relative; cursor: pointer; border-radius: 6px; overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.1); break-inside: avoid; transition: transform .3s ease;
}
.masonry-item:hover { transform: scale(1.02); }
.masonry-item img { width: 100%; border-radius: 6px; }
.masonry-item.hide { display: none; }
.masonry-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(124,77,50,0); transition: background .3s ease;
}
.masonry-item:hover .masonry-overlay { background: rgba(124,77,50,.5); }
.zoom-icon { color: #fff; font-size: 1.8rem; opacity: 0; transition: opacity .3s ease; }
.masonry-item:hover .zoom-icon { opacity: 1; }
.masonry-item figcaption {
    position: absolute; bottom: 10px; left: 12px; background: rgba(0,0,0,.5); color: #fff;
    font-family: var(--sans); font-size: .72rem; font-weight: 700; padding: 3px 10px;
    border-radius: 20px; backdrop-filter: blur(4px);
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92);
    display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lb-btn {
    position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.2rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); text-align: center; }
.lb-alt { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(255,255,255,.7); }
.lb-count { font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ── Contact ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 64px; align-items: start; }
.contact-form-box { background: #fdfcfb; border: 1px solid rgba(238,201,196,.5); border-radius: 8px; padding: 40px; box-shadow: 0 4px 32px rgba(124,77,50,.06); }
.contact-form-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--choc); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--choc); }
.field .req { color: var(--gold); }
.field input, .field textarea {
    width: 100%; padding: 13px 16px; border-radius: 4px; border: 1.5px solid rgba(124,77,50,.2);
    background: #fdfcfb; font-family: var(--sans); font-size: .95rem; color: #3a2a20;
    outline: none; transition: all .25s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn-submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--choc); color: #fff; border: none; border-radius: 4px; padding: 15px 32px;
    font-family: var(--sans); font-size: .85rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; cursor: pointer; transition: background .3s ease; margin-top: 8px;
}
.btn-submit:hover { background: var(--gold); }
.btn-submit:disabled { background: #c0a090; cursor: not-allowed; }
.btn-submit-label { display: inline-flex; align-items: center; gap: 8px; }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { text-align: center; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.form-success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--vanilla); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.form-success h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--choc); }
.form-success p { font-family: var(--sans); font-size: .9rem; color: #8a7060; }
.btn-outline-sm { background: none; border: 1px solid var(--blush); border-radius: 4px; padding: 10px 24px; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--choc); cursor: pointer; text-decoration: none; }
.form-error { background: #fde8ec; border: 1px solid #f5c2cd; color: #b3253e; border-radius: 6px; padding: 12px 16px; font-size: .88rem; margin-bottom: 20px; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.info-card { display: flex; gap: 20px; padding: 24px 28px; background: #fff; border: 1px solid rgba(238,201,196,.5); border-radius: 8px; }
.info-card.cream { background: var(--vanilla); }
.info-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--choc); }
.info-card h4 { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--choc); margin-bottom: 6px; }
.info-card p { font-family: var(--sans); font-size: .9rem; color: #7a6050; line-height: 1.6; }
.map-card {
    border-radius: 8px; overflow: hidden; height: 220px; border: 1px solid rgba(238,201,196,.5);
    position: relative; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; text-decoration: none;
}
.map-card::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.05); }
.map-pill {
    position: relative; z-index: 1; background: var(--gold); color: #fff; border-radius: 4px;
    padding: 10px 20px; display: flex; align-items: center; gap: 8px; font-family: var(--sans);
    font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* 404 */
.notfound { padding-top: 160px; padding-bottom: 160px; }
.nf-code { font-family: var(--serif); font-size: 5rem; color: var(--choc); }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer { background: var(--choc); color: #fff; }
.footer-stripe { height: 4px; background: linear-gradient(90deg, var(--blush), var(--gold), var(--blush)); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 60px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; margin-bottom: 48px; }
.footer-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--vanilla); margin-bottom: 8px; line-height: 1.2; }
.footer-tagline { font-family: var(--accent); font-size: 1rem; font-style: italic; color: var(--blush); margin-bottom: 20px; }
.footer-blurb { font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(238,201,196,.3); display: flex; align-items: center; justify-content: center; color: var(--blush); transition: all .3s ease; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-head { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--sans); font-size: .88rem; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--blush); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { color: var(--blush); flex-shrink: 0; margin-top: 2px; }
.footer-contact span { font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(238,201,196,.15); padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px; }
.footer-rights { font-family: var(--sans); font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-made { font-family: var(--accent); font-size: .9rem; font-style: italic; color: var(--blush); opacity: .7; }

/* ── Reveal-on-scroll ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .scroll-hint .chevron { animation: none; }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 860px) {
    .nav-desktop { display: none; }
    .nav-mobile-controls { display: flex; }
    .about-strip-text { padding: 48px 28px; }
    .masonry { columns: 2; }
    .timeline-line { left: 26px; }
    .timeline-item { grid-template-columns: auto 1fr; gap: 16px; }
    .timeline-item.left, .timeline-item.right { grid-template-areas: "dot card"; }
    .timeline-item .timeline-card { justify-self: start !important; max-width: none; }
    .contact-grid { gap: 40px; }
}
@media (max-width: 520px) {
    .section { padding: 64px 20px; }
    .masonry { columns: 1; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .menu-section-head { grid-template-columns: 1fr; }
    .menu-section-img { height: 140px; }
}
