/* archetype: gallery — quiet and considered, the way a small espresso counter
   inside a shared office building would look: no cards, no borders, no shadows,
   mostly air. Tuned for Mellow Mood Cafe: the one decoration is the counter's
   own turquoise under-lighting, used sparingly as a hairline and an eyebrow
   colour rather than anywhere near a photograph of the room. */

h1 { font-size: clamp(2.8rem, 10vw, 6rem); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.01em; }
.lead { font-size: 1.3rem; line-height: 1.55; }

/* The header sits over the hero, so it does not stick: a transparent bar with white
   text scrolled onto a cream page is unreadable, and every page under it opens with
   a dark band (.hero or .page-hero) for it to sit on.
   `relative`, not `static`: base.css positions the open mobile nav with
   `position: absolute; top: 100%` against the header, so a static header hands the
   dropdown to the initial containing block and it opens one full viewport down the
   page, invisible until you scroll. `relative` keeps the header out of the sticky
   flow exactly as `static` did while restoring that positioning context. */
.site-header { position: relative; background: transparent; backdrop-filter: none; border-bottom: 0; }
.site-header .brand, .site-header .brand-name { color: #fff; }
.nav-toggle { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); color: #fff; }
.nav { background: var(--color-bg); }
.hero { margin-top: -4.25rem; padding-top: 4.25rem; min-height: min(88vh, 52rem); }
.page-hero { margin-top: -4.25rem; padding-top: calc(4.25rem + clamp(2.5rem, 7vw, 4.5rem)); }
/* Darker and steadier than the archetype default, tuned to this photo: the
   hero crop is bright wood ceiling right where the headline sits, so the
   usual light "window" in the middle third left the white h1 unreadable. */
.hero::after { background: linear-gradient(180deg, rgba(9,22,22,0.48) 0%, rgba(9,22,22,0.4) 45%, rgba(9,22,22,0.68) 100%); }
.hero-content { padding-block: clamp(6rem, 18vw, 11rem) clamp(3rem, 8vw, 5rem); }
.hero h1 { max-width: 18ch; font-weight: 400; }

/* Nothing is in a box. */
.card, .menu-note, .book-panel { background: transparent; border: 0; box-shadow: none; padding-inline: 0; }
.card-body { padding: 1rem 0 0; }
.section { padding-block: clamp(4rem, 11vw, 8rem); }
.section + .section { border-top: 0; }
.container { width: min(100% - 2.5rem, 62rem); }

/* Buttons are text with a line under them. */
.btn { background: transparent; border: 0; border-bottom: 2px solid currentColor; border-radius: 0; padding: 0.35rem 0.1rem; color: var(--color-primary); font-weight: 500; letter-spacing: 0.01em; }
.btn-primary { color: var(--color-accent); }
.btn:hover { transform: none; opacity: 0.7; }
.hero .btn, .hero .btn-primary { color: #fff; }

/* Menu: an airy stack, hairlines only. */
.menu-sections { gap: 3.5rem; }
.menu-section h3 { font-weight: 400; font-size: 1.6rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.6rem; }
.menu-item { padding: 0.9rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.menu-item-name { font-weight: 500; }
.menu-item-price { font-weight: 400; color: var(--color-muted); }
.menu-item-price:empty { display: none; }

.gallery { gap: 1.5rem; }
.gallery img { border-radius: 0; }
.quote { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 300; max-width: 24ch; }

/* The one decoration: the counter's own turquoise, as a hairline under the
   eyebrow labels and section eyebrows — nowhere near a photo of the room. */
.eyebrow { position: relative; padding-bottom: 0.6rem; }
.eyebrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 2.75rem; height: 2px; background: var(--color-accent); }
.hero .eyebrow::after { background: #fff; opacity: 0.7; }
