/* Bistro Marie — Direction A ("Luigi Cannes" editorial-photographic)
   Palette:
   --ink       #1A1310  measured 18.35:1 on white, 15.97:1 on cream — body/headline text
   --muted     #6B5F54  measured 6.19:1 on white, 5.39:1 on cream — secondary text
   --cream     #F1EFEA  sampled from lit linen tablecloth pleats in
                         assets/source/photos/bistromarie-about-3.jpg (crop 230,560–720,700,
                         mean of pixels between the 90th and 97th luminance percentile)
   --orange    #FF6709  client's confirmed brand orange (computed CSS on bistromarie.se)
                         measures 2.92:1 on white / 2.54:1 on cream as TEXT — fails AA,
                         so it is used only as: button fill behind --ink text (6.29:1, passes),
                         thin rules, icons and small accents — never as text on a light ground.
*/

:root {
  --ink: #1a1310;
  --muted: #6b5f54;
  --cream: #f1efea;
  --white: #ffffff;
  --orange: #ff6709;
  --orange-deep: #c94f05;
  --line: rgba(26, 19, 16, 0.12);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --measure: 34rem;
  --radius: 2px;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* This site commits to one light, editorial look regardless of system theme. */
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  z-index: 200;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p {
  margin: 0;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.lede {
  max-width: var(--measure);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

section > .lede,
.section-head + .lede {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-deep);
  color: var(--white);
  border-color: var(--orange-deep);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-on-dark {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}
.btn-on-dark:hover,
.btn-on-dark:focus-visible {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-arrow {
  gap: 0.5rem;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(26, 19, 16, 0.05);
}

.site-header__logo {
  display: block;
}
.site-header__logo img {
  height: 26px;
  width: auto;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.site-header__nav a {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-block: 0.2rem;
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--orange-deep);
  border-bottom-color: var(--orange-deep);
}
.site-header__nav a.is-active {
  color: var(--orange-deep);
  border-bottom-color: var(--orange-deep);
}

@media (min-width: 860px) {
  .site-header__nav {
    display: flex;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__book {
  display: none;
}
@media (min-width: 640px) {
  .site-header__book {
    display: inline-flex;
  }
}

/* ---------- Mobile nav toggle + panel ---------- */

.site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (prefers-reduced-motion: reduce) {
  .site-header__toggle span {
    transition: none;
  }
}

@media (min-width: 860px) {
  .site-header__toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 6.5rem var(--gutter) 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(26, 19, 16, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-nav[hidden] {
  display: none !important;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav {
    transition: none;
  }
}
.mobile-nav a:not(.btn) {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:not(.btn):last-of-type {
  border-bottom: none;
}
.mobile-nav a.is-active {
  color: var(--orange-deep);
}
.mobile-nav__book {
  margin-top: 1.25rem;
  justify-content: center;
}

@media (min-width: 860px) {
  .mobile-nav {
    display: none !important;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  inset: -6% 0 -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 68%;
  will-change: transform;
}

.hero__scrim {
  /* Dennis 2026-08-27: the old flat 0.88 wash read as too heavy over the photo.
     This is a lighter two-part treatment, re-measured worst-pixel-under-text
     (hide text, screenshot, sample lightest pixel in each text's own rect)
     at both 1440x900 and 375x812: eyebrow 7.28:1 / 5.47:1, h1 8.50:1 / 8.05:1,
     sub 16.0:1 / 15.7:1 — all clear AA. An earlier pass at 0.72/0.5/0.42 left
     the mobile eyebrow at 4.25:1 (below the 4.5 floor), hence the bump to
     0.78/0.58/0.48. Re-measure with this method before lowering these further —
     the eyebrow's thin, small-caps weight is the one that fails first. */
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 7, 5, 0.78) 0%, rgba(10, 7, 5, 0.78) 32%, rgba(10, 7, 5, 0) 64%),
    linear-gradient(to top, rgba(10, 7, 5, 0.58) 0%, rgba(10, 7, 5, 0.48) 55%, rgba(10, 7, 5, 0) 92%);
}

.hero__mark {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(24rem, 55vw);
  pointer-events: none;
}

.hero__mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 6px 26px rgba(0, 0, 0, 0.6));
}

/* More text stacks under the mark on narrow screens (3-line h1 + 3-line sub),
   pushing .hero__content up — the 40%/55vw desktop values then crowd the
   eyebrow line. Move the mark up and shrink it so there's real air between
   the two, measured on a 375px viewport. */
@media (max-width: 640px) {
  .hero__mark {
    top: 26%;
    width: 44vw;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 7rem var(--gutter) 4.5rem;
  max-width: 46rem;
}

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 7vw, 5rem);
  margin-block: 0.9rem 1.1rem;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  font-size: 1.1rem;
  margin-bottom: 2.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Same flex/gap as .hero__actions, but for button rows on regular light
   sections — .hero__actions also forces .btn-outline to white text/border,
   which is only correct on a dark photo hero and would be invisible here. */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.hero__actions .btn-outline:hover,
.hero__actions .btn-outline:focus-visible {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ---------- Generic section rhythm ---------- */

.section {
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
}

.section--cream {
  background: var(--cream);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin-top: 0.6rem;
}

/* ---------- Intro ---------- */

.intro {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .intro {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5vw;
  }
}

.intro__text .section-head {
  margin-bottom: 1.5rem;
}

.intro__body {
  max-width: var(--measure);
  color: var(--muted);
  font-size: 1.08rem;
}

.intro__aside {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 24rem;
  margin-inline: auto;
  width: 100%;
}
.intro__aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.intro__caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  max-width: 24rem;
  margin-inline: auto;
  text-align: center;
}

.intro__note {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  max-width: var(--measure);
}
.intro__note strong {
  color: var(--ink);
}

/* ---------- Journey / rooms ---------- */

.journey {
  background: var(--white);
}

.room {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: 2.75rem;
  border-top: 1px solid var(--line);
}
.room:last-of-type {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 860px) {
  .room {
    grid-template-columns: 1fr 1fr;
    gap: 4.5vw;
    padding-block: 4rem;
  }
  .room--reverse .room__media {
    order: 2;
  }
}

.room__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.room__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.room__index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--orange-deep);
  margin-bottom: 0.75rem;
  display: block;
}

.room__text h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.9rem;
}

.room__text p {
  color: var(--muted);
  max-width: 30rem;
  font-size: 1.03rem;
}

/* ---------- Menu preview ---------- */

.menu-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.menu-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-item__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}

.menu-item__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-left: 0.6rem;
  vertical-align: middle;
}

.menu-item__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  white-space: nowrap;
}

.menu-item__desc {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 42rem;
}

.menu-link {
  margin-top: 2.5rem;
}

/* ---------- Julbord ---------- */

.julbord {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.julbord__media {
  position: absolute;
  inset: 0;
}
.julbord__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.julbord__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 10, 8, 0.94) 0%,
    rgba(15, 10, 8, 0.86) 55%,
    rgba(56, 24, 4, 0.78) 100%
  );
}

.julbord__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.julbord__eyebrow {
  color: var(--orange);
}

.julbord h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-block: 0.8rem 1.2rem;
}

.julbord p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  max-width: 36rem;
  margin-bottom: 2.2rem;
}

.julbord__rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1.6rem;
}

/* ---------- Chambre ---------- */

.chambre {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .chambre {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }
}

.chambre__gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.9rem;
}

.chambre__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.chambre__gallery figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}
.chambre__gallery figure:last-child {
  aspect-ratio: 3 / 4;
}

.chambre__text p {
  color: var(--muted);
  max-width: var(--measure);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.chambre__text p:last-of-type {
  margin-bottom: 1.9rem;
}

/* ---------- Small facts row (dog / business friendly) ---------- */

.facts-row {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .facts-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.facts-row__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--muted);
}

.facts-row__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--orange-deep);
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: start;
  }
}

.contact__block {
  margin-bottom: 2rem;
}
.contact__block:last-child {
  margin-bottom: 0;
}

.contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.6rem;
}

.contact__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.contact__value a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.contact__value a:hover,
.contact__value a:focus-visible {
  color: var(--orange-deep);
  border-bottom-color: var(--orange-deep);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}
.hours-table td:first-child {
  color: var(--muted);
}
.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hours-note strong {
  color: var(--ink);
  font-weight: 700;
}

.contact__map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact__cta {
  margin-top: 2.25rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem var(--gutter) 2rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__logo img {
  height: 22px;
  width: auto;
  filter: invert(1) brightness(1.6);
}

.site-footer__address {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 20rem;
}
.site-footer__address a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.site-footer__address a:hover,
.site-footer__address a:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.site-footer__social {
  display: flex;
  gap: 1.25rem;
}
.site-footer__social a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.site-footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--orange);
}

/* ---------- Page hero (shorter hero for sub-pages) ---------- */

.page-hero {
  position: relative;
  min-height: 46svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

@media (min-width: 700px) {
  .page-hero {
    min-height: 52svh;
  }
}

.page-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero__media img {
  position: absolute;
  inset: -6% 0 -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 55%;
  will-change: transform;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 7, 5, 0.86) 0%,
    rgba(10, 7, 5, 0.86) 60%,
    rgba(10, 7, 5, 0) 100%
  );
}

.page-hero__scrim--julbord {
  background: linear-gradient(
    120deg,
    rgba(15, 10, 8, 0.92) 0%,
    rgba(15, 10, 8, 0.84) 55%,
    rgba(56, 24, 4, 0.76) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 8.5rem var(--gutter) 3.5rem;
  max-width: 42rem;
}

.page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-block: 0.75rem 1rem;
}

.page-hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 34rem;
}

.page-hero .hero__actions {
  margin-top: 1.75rem;
}

/* ---------- Menu page: jump nav, sub-headings, dense price lists ---------- */

.menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.menu-jump a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.menu-jump a:hover,
.menu-jump a:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.menu-section {
  scroll-margin-top: 5.5rem;
}

.menu-subhead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.5rem;
}

.menu-section .menu-list:first-of-type,
.menu-section > .menu-list {
  margin-top: 0;
}

.menu-list--tight .menu-item {
  padding: 0.9rem 0;
}

/* ---------- Notice card (open question / coming soon placeholder) ---------- */

.notice-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 34rem;
}

.notice-card__eyebrow {
  margin-bottom: 0.6rem;
}

.notice-card h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-bottom: 0.9rem;
}

.notice-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.notice-card .btn-row {
  margin-top: 0;
}
