/* archetype: tiles — modern and colour first. Full-bleed alternating colour blocks
   carry the page, the nav is a row of pills, and the menu is banded by section, so
   a shop with no usable photographs still looks deliberate — exactly the case for
   the two text-only highlight cards below. Tuned warm rather than techy for a 1979
   home bakery: a warm brown hero wash instead of flat black, calmer 14px corners
   instead of 22px bubble corners, looser display tracking (a serif, not a geometric
   sans, doesn't want -0.015em), and the highlights band uses the shop's own gold
   and brown rather than a generic SaaS primary block. */

h1 { font-size: clamp(2.6rem, 9vw, 5rem); line-height: 1.05; letter-spacing: -0.005em; }
h2 { font-size: clamp(2rem, 5.5vw, 3rem); }

.site-header { background: var(--color-primary); border-bottom: 0; backdrop-filter: none; }
.site-header .brand, .site-header .brand-name { color: var(--color-on-primary); }
.nav-toggle { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); color: var(--color-on-primary); }
.nav { background: var(--color-primary); }
.nav-list a { color: var(--color-on-primary); border-radius: 999px; }
.nav-list a:hover, .nav-list a[aria-current="page"] { background: rgba(255,255,255,0.16); color: #fff; }

/* Rounded, but bakery-rounded rather than app-icon rounded. */
.btn, .nav-toggle { border-radius: 999px; }
.card, .menu-note, .book-panel, .map-embed, .gallery img, .menu-section { border-radius: 14px; }
.btn { font-weight: 600; padding: 0.9rem 1.6rem; }
.card { border: 0; background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface)); box-shadow: none; }

/* Alternating full-bleed colour blocks; the highlights band (a text-only pair, no
   photos) is the one that lands solid, so it carries the colour instead of a photo. */
main .section:nth-of-type(even) { background: color-mix(in srgb, var(--color-primary) 10%, var(--color-bg)); }
main .section:nth-of-type(4n+3) { background: var(--color-primary); color: var(--color-on-primary); }
main .section:nth-of-type(4n+3) h2, main .section:nth-of-type(4n+3) h3, main .section:nth-of-type(4n+3) .eyebrow, main .section:nth-of-type(4n+3) .lead, main .section:nth-of-type(4n+3) p, main .section:nth-of-type(4n+3) .card-body p { color: inherit; }
main .section:nth-of-type(4n+3) .card { background: rgba(255,255,255,0.14); color: inherit; border: 1px solid rgba(255,255,255,0.2); }
main .section:nth-of-type(4n+3) .btn-ghost { color: var(--color-on-primary); }
.section + .section { border-top: 0; }
/* Two cards, not three: fill the row evenly instead of leaving a gap where a third
   card would go, so the pair reads as a deliberate layout, not a short shelf. */
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); max-width: 44rem; margin-inline: auto; }

/* Hero: a warm wash instead of flat black, works with or without a photograph. */
.hero { min-height: min(76vh, 44rem); background: var(--color-primary); }
.hero::after { background: linear-gradient(180deg, rgba(35, 18, 4, 0.3), rgba(35, 18, 4, 0.68)); }
.hero .eyebrow { display: inline-block; background: var(--color-accent); color: var(--color-on-accent); border-radius: 999px; padding: 0.25rem 0.85rem; }

/* Menu: each section gets a coloured header band. */
@media (min-width: 760px) { .menu-sections { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.menu-section { background: var(--color-surface); padding: 0 1.35rem 1.1rem; overflow: hidden; }
.menu-section h3 { background: var(--color-primary); color: var(--color-on-primary); margin: 0 -1.35rem 0.75rem; padding: 0.8rem 1.35rem; border: 0; font-size: 1.2rem; }
.menu-item-price { color: var(--color-accent); }
.menu-item-price:empty { display: none; }
