/* ===========================================================================
   Nana Tam — public site
   Palette taken from the restaurant itself: lantern amber, teak, garden green
   and the cream of a linen napkin.
   ======================================================================== */

:root {
  --green-900: #0e2016;
  --green-800: #12261b;
  --green-700: #1c3b28;
  --green-400: #6f9276;

  --amber-600: #b3541f;
  --amber-500: #c8622f;
  --amber-400: #e0913f;
  --amber-200: #f2dfb6;

  --teak-800: #3b2a1d;
  --teak-600: #6b5340;

  --cream-50: #fffdf8;
  --cream-100: #faf5ea;
  --cream-200: #f2ead9;
  --cream-300: #e6dbc4;

  --ink: #241f1a;
  --ink-muted: #6b6257;

  --danger: #a5301f;
  --ok: #2f6b46;

  --font-display: ui-serif, Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue',
    'Noto Sans Thai', 'Leelawadee UI', sans-serif;

  --shell: 74rem;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgb(36 31 26 / 8%), 0 2px 8px rgb(36 31 26 / 6%);
  --shadow-md: 0 8px 30px rgb(36 31 26 / 12%);

  --step: clamp(3rem, 6vw, 5.5rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.125rem; }
p  { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--amber-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-500); }

:focus-visible {
  outline: 2.5px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute; left: .5rem; top: -4rem; z-index: 100;
  background: var(--green-800); color: var(--amber-200);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none; transition: top .15s ease;
}
.skip-link:focus { top: 0; }

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
.shell.narrow { max-width: 46rem; }
.center { text-align: center; }

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

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(18 38 27 / 96%);
  backdrop-filter: saturate(140%) blur(8px);
  color: var(--cream-100);
  border-bottom: 1px solid rgb(242 223 182 / 14%);
}

.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.4rem;
}

.brand { display: flex; align-items: center; gap: .7rem; color: inherit; text-decoration: none; margin-right: auto; }
.brand__mark { color: var(--amber-400); display: grid; place-items: center; }
.brand__text { display: grid; }
.brand__name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .06em; text-transform: uppercase; }
.brand__tag { font-size: .72rem; color: var(--green-400); letter-spacing: .04em; white-space: nowrap; }

@media (max-width: 26rem) { .brand__tag { display: none; } }

.nav-toggle {
  display: none; background: none; border: 0; color: inherit;
  padding: .55rem; cursor: pointer; border-radius: 10px;
}
.nav-toggle__bars { display: grid; gap: 4px; width: 22px; }
.nav-toggle__bars span { height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav__list { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
  color: var(--cream-200); text-decoration: none; font-size: .95rem;
  padding: .3rem 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.site-nav__list a:hover { color: #fff; border-color: var(--amber-400); }
.site-nav__list a[aria-current="page"] { color: var(--amber-400); border-color: var(--amber-400); }
.site-nav__actions { display: flex; align-items: center; gap: .8rem; }

.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: .35rem;
  font-size: .85rem; color: var(--cream-200); padding: .4rem .6rem;
  border: 1px solid rgb(242 223 182 / 25%); border-radius: 999px;
}
.lang summary::-webkit-details-marker { display: none; }
.lang__list {
  position: absolute; right: 0; top: calc(100% + .5rem); z-index: 60;
  min-width: 10rem; margin: 0; padding: .35rem; list-style: none;
  background: var(--cream-50); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--cream-300);
}
.lang__list a {
  display: block; padding: .5rem .7rem; border-radius: 9px;
  color: var(--ink); text-decoration: none; font-size: .92rem;
}
.lang__list a:hover { background: var(--cream-200); }
.lang__list a[aria-current="true"] { color: var(--amber-600); font-weight: 600; }

/*
 * The bar needs about 1200px for brand, six links, the language control and the
 * booking button to sit on one line. Below that they wrapped to two rows and the
 * sticky header's height no longer matched what the menu page positions against,
 * so the switch to the panel happens here rather than at 62rem.
 */
@media (max-width: 75rem) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 4.4rem 0 auto; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--green-800); padding: 1rem 1.25rem 1.75rem;
    border-bottom: 1px solid rgb(242 223 182 / 14%);
    max-height: calc(100dvh - 4.4rem); overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; gap: 0; }
  .site-nav__list a { display: block; padding: .85rem 0; border-bottom: 1px solid rgb(242 223 182 / 12%); }

  .site-nav__actions { margin-top: 1.1rem; flex-direction: column; align-items: stretch; gap: .9rem; }

  /*
   * In the panel the language list flows inline instead of being absolutely
   * positioned. The panel scrolls (overflow-y: auto), and a scroll container
   * clips absolutely positioned descendants — which is exactly how the options
   * ended up unreachable in a window that was not full screen.
   */
  .lang { width: 100%; }
  .lang summary { width: 100%; justify-content: space-between; padding: .6rem .9rem; }
  .lang__list {
    position: static; min-width: 0; margin: .6rem 0 0; padding: 0;
    background: transparent; border: 0; box-shadow: none;
    display: flex; flex-wrap: wrap; gap: .45rem;
  }
  .lang__list a {
    background: rgb(242 223 182 / 12%); color: var(--cream-200);
    border-radius: 999px; padding: .5rem .95rem;
  }
  .lang__list a:hover { background: rgb(242 223 182 / 22%); }
  .lang__list a[aria-current="true"] { background: var(--amber-500); color: #fff; font-weight: 600; }
}

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

.btn {
  --btn-bg: var(--amber-500);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border: 1px solid transparent; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); color: var(--btn-fg); }
.btn:active { transform: none; }
.btn--primary:hover { background: var(--amber-600); }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: rgb(200 98 47 / 10%); }
.btn--danger { --btn-bg: var(--danger); }
.btn--sm { padding: .55rem 1.05rem; font-size: .85rem; }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.02rem; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.button-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.button-row.center { justify-content: center; }

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

.hero { position: relative; isolation: isolate; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__image, .hero__media .photo { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgb(14 32 22 / 55%) 0%, rgb(14 32 22 / 30%) 35%, rgb(14 32 22 / 88%) 100%);
}
.hero__content { padding: clamp(5rem, 16vw, 10rem) 0 clamp(3rem, 8vw, 5rem); max-width: 44rem; }
.hero__title { color: #fff; margin-bottom: .35em; }
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgb(255 255 255 / 88%); max-width: 38rem; }

/* Tripadvisor Travellers' Choice and anything like it. Deliberately typographic
   rather than a reproduced logo: the award is a fact about the restaurant, and
   the badge artwork belongs to whoever issued it. */
.award {
  display: inline-flex; align-items: center; gap: .4rem;
  margin: 0 0 1rem; padding: .3rem .75rem .3rem .6rem;
  border: 1px solid rgb(255 255 255 / 35%); border-radius: 999px;
  background: rgb(255 255 255 / 10%); color: #fff;
  font-size: .82rem; line-height: 1.3;
}
.award__leaf { flex: 0 0 auto; opacity: .85; }
.award strong { font-weight: 600; }
.award__issuer { opacity: .78; }
.award__issuer::before { content: '·'; margin-right: .4rem; opacity: .6; }
.award__link { display: inline-flex; align-items: center; gap: .4rem; color: inherit; text-decoration: none; }
.award__link:hover { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* The official Tripadvisor badge once it has been uploaded: no pill around it,
   the artwork carries its own shape. Sized by height so a future badge with
   different proportions still lands in the same place. */
.award--badge { border: 0; background: none; padding: 0; margin-bottom: 1.1rem; }
.award--badge img { height: 5rem; width: auto; display: block; }
@media (min-width: 48rem) { .award--badge img { height: 6rem; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hero__actions .btn--ghost { color: #fff; border-color: rgb(255 255 255 / 55%); }
.hero__meta { display: flex; align-items: center; gap: .55rem; font-size: .9rem; color: rgb(255 255 255 / 80%); margin: 0; }
.hero__meta a { color: var(--amber-200); }

.kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .74rem;
  font-weight: 700; color: var(--amber-400); margin: 0 0 .8rem;
}

.dot { width: .55rem; height: .55rem; border-radius: 50%; display: inline-block; }
.dot--open { background: #79c48f; box-shadow: 0 0 0 3px rgb(121 196 143 / 25%); }
.dot--closed { background: #d8a15c; }

/* --- Sections ----------------------------------------------------------- */

.section { padding-block: var(--step); }
.section--intro { background: var(--cream-50); }
.section--signature { background: var(--cream-200); }
.section--values { background: var(--cream-50); }
.section__head { max-width: 44rem; margin-bottom: 2.2rem; }
.section__title { color: var(--teak-800); }
.section__lead, .lead { font-size: 1.06rem; color: var(--ink-muted); }
.lead { max-width: 42rem; }
.section__cta { margin-top: 2rem; }

.page-head {
  background: linear-gradient(180deg, var(--green-800), var(--green-700));
  color: var(--cream-100); padding-block: clamp(3rem, 8vw, 5rem) clamp(2rem, 5vw, 3.2rem);
}
.page-head h1 { color: #fff; }
.page-head .lead { color: rgb(255 255 255 / 82%); }
.page-head .note { color: rgb(255 255 255 / 62%); }

/* Grid and flex items default to min-width:auto, which lets a child's
   intrinsic size (here an aspect-ratio box) push the whole row wider than the
   viewport on a phone. Zeroing it is what keeps every column shrinkable. */
.grid-2 { display: grid; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.grid-2 > * { min-width: 0; }
@media (min-width: 56rem) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2--media { align-items: center; }
  .grid-2--reverse > *:first-child { order: 2; }
}

.highlights { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.highlights--row { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.highlight {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.highlight h3 { color: var(--teak-800); margin-bottom: .35em; }
.highlight p { margin: 0; color: var(--ink-muted); font-size: .95rem; }

.feature-chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 1.4rem 0 0; padding: 0; }
.feature-chips li {
  font-size: .82rem; padding: .35rem .8rem; border-radius: 999px;
  background: var(--cream-200); color: var(--teak-600); border: 1px solid var(--cream-300);
}

.band {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
  color: var(--cream-100); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.band .section__title { color: #fff; margin-bottom: .3em; }
.band .lead { color: rgb(255 255 255 / 82%); margin: 0; max-width: 34rem; }

.prose p { color: var(--ink-muted); }
.prose h2 { margin-top: 1.8em; color: var(--teak-800); }
.prose h2:first-child { margin-top: 0; }

.note { font-size: .88rem; color: var(--ink-muted); }
.note--small { font-size: .82rem; }

/* --- Photos ------------------------------------------------------------- */

.photo { border-radius: var(--radius); width: 100%; min-width: 0; }
.rounded { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.photo--placeholder {
  display: grid; place-content: center; justify-items: center; gap: .5rem;
  background:
    repeating-linear-gradient(45deg, var(--cream-100) 0 16px, var(--cream-200) 16px 32px);
  color: var(--cream-300); font-size: .72rem; letter-spacing: .03em;
  border: 1px solid var(--cream-300);
  padding: 1rem; text-align: center; word-break: break-all;
  min-width: 0; overflow: hidden;
}
/* In the hero the placeholder is pure backdrop — the filename hint would
   collide with the headline, so only the texture is kept. */
.hero .photo--placeholder { background: linear-gradient(150deg, var(--green-700), var(--teak-800)); border: 0; color: transparent; }
.hero .photo--placeholder > * { display: none; }

.garden-collage { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; min-width: 0; }
.garden-collage > * { min-width: 0; }
/* height:auto so the aspect ratio is resolved from the (flexible) width rather
   than the other way round — otherwise the box dictates its own width. */
.garden-collage .photo {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover;
}
.garden-collage__a { margin-top: 1.8rem; }

.gallery-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.gallery-item--wide { grid-column: span 2; }
@media (max-width: 42rem) { .gallery-item--wide { grid-column: span 1; } }
.gallery-item figure { margin: 0; }
.gallery-item .photo { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; box-shadow: var(--shadow-sm); }
.gallery-item--wide .photo { aspect-ratio: 16 / 9; }
.gallery-item figcaption { font-size: .85rem; color: var(--ink-muted); padding: .6rem .2rem 0; }

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

.menu-jump {
  position: sticky; top: 4.4rem; z-index: 40;
  background: var(--cream-50); border-bottom: 1px solid var(--cream-300);
}
.menu-jump__inner { display: flex; gap: .4rem; overflow-x: auto; padding-block: .7rem; scrollbar-width: thin; }
.menu-jump a {
  flex: 0 0 auto; font-size: .85rem; padding: .35rem .85rem; border-radius: 999px;
  background: var(--cream-200); color: var(--teak-600); text-decoration: none; white-space: nowrap;
}
.menu-jump a:hover { background: var(--amber-400); color: #fff; }
.menu-jump__divider { flex: 0 0 auto; width: 1px; background: var(--cream-300); margin-inline: .5rem; }

.menu-layout { display: grid; gap: 2.5rem; }
@media (min-width: 62rem) { .menu-layout { grid-template-columns: minmax(0, 1fr) 18rem; } }

.menu-section + .menu-section { margin-top: 3rem; }
.menu-section__title {
  color: var(--teak-800); border-bottom: 2px solid var(--amber-400);
  padding-bottom: .35rem; display: inline-block;
}
.menu-section__price {
  font-family: var(--font-body); font-size: .85rem; font-weight: 600;
  color: var(--ink-muted); margin-left: .5rem; white-space: nowrap;
}
.menu-section__intro { color: var(--ink-muted); font-size: .95rem; max-width: 40rem; }

.menu-items { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.menu-item {
  display: flex; gap: 1.2rem; align-items: baseline; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px dashed var(--cream-300);
}
/* A row with a photo aligns to the top instead: the thumbnail is taller than
   the first line of text, and baseline alignment would hang it off the row. */
.menu-item--photo { align-items: flex-start; gap: .75rem; }
.menu-item__photo {
  flex: 0 0 auto; width: 3.5rem; height: 3.5rem; border-radius: 8px;
  object-fit: cover; background: var(--cream-200); order: -1;
  /* The thumbnails are 480px square. If the width above ever fails to apply —
     a stale cached stylesheet after a deploy, say — that intrinsic size lands
     on a phone screen and takes the whole page with it. This is the floor. */
  max-width: 22vw; max-height: 22vw;
}
.menu-item__main { min-width: 0; flex: 1 1 auto; }
.menu-item__name { font-size: 1.05rem; margin-bottom: .2em; color: var(--ink); }
.menu-item__thai { font-family: var(--font-body); font-size: .85rem; color: var(--ink-muted); font-weight: 400; margin-left: .4rem; }
/* The second line on a wine — producer above, wine below, as on the card. */
.menu-item__sub { font-family: var(--font-body); font-size: .85rem; color: var(--ink-muted); font-weight: 400; margin-left: .4rem; }
.menu-item__desc { margin: 0 0 .45em; font-size: .93rem; color: var(--ink-muted); }
.menu-item__price { font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; margin: 0; color: var(--teak-800); }
.menu-item__price--variants { display: grid; gap: .15rem; justify-items: end; font-size: .95rem; }
.menu-item__variant { font-weight: 400; font-size: .8rem; color: var(--ink-muted); margin-right: .35rem; }
.menu-item__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; }
.menu-item__tags:empty { display: none; }

/* A drink is one line of text, so a full-size thumbnail leaves the row mostly
   empty. Smaller keeps the drinks list reading like a list. */
.menu-section--drinks .menu-item__photo { width: 2.9rem; height: 2.9rem; }

@media (min-width: 30rem) {
  .menu-item__photo { width: 4.25rem; height: 4.25rem; }
  .menu-section--drinks .menu-item__photo { width: 3.4rem; height: 3.4rem; }
}

@media (min-width: 48rem) {
  .menu-item--photo { gap: 1.2rem; }
  .menu-item__photo { width: 6rem; height: 6rem; max-width: none; max-height: none; }
  .menu-section--drinks .menu-item__photo { width: 3.75rem; height: 3.75rem; }
}

.tag {
  font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700;
  padding: .18rem .5rem; border-radius: 5px;
  background: var(--cream-200); color: var(--teak-600);
}
.tag--diet { background: #e2efe3; color: #2f6b46; }
.tag--signature { background: var(--amber-400); color: #4a2a10; }
.tag--spice {
  background: transparent; padding-inline: 0; font-size: .85rem; letter-spacing: -.06em;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.menu-aside .card { position: static; }
@media (min-width: 62rem) { .card--sticky { position: sticky; top: 9rem; } }
.legend { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .45rem; font-size: .88rem; color: var(--ink-muted); }

.dish-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); }
.dish {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 1.15rem 1.25rem;
  display: flex; flex-direction: column;
}
.dish__head { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; }
.dish__name { font-size: 1.02rem; margin: 0 0 .3em; }
.dish__thai { font-family: var(--font-body); font-size: .8rem; color: var(--ink-muted); font-weight: 400; }
.dish__price { font-weight: 600; font-variant-numeric: tabular-nums; color: var(--teak-800); flex: 0 0 auto; white-space: nowrap; }
.dish__desc {
  font-size: .92rem; color: var(--ink-muted); margin-bottom: .6em;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  line-clamp: 2; overflow: hidden;
}
.dish__tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: auto 0 0; }

/* --- Cards & forms ------------------------------------------------------ */

.card {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg); padding: clamp(1.2rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.card + .card { margin-top: 1.2rem; }
.card h2 { font-size: 1.15rem; color: var(--teak-800); }
.card--muted { background: var(--cream-200); box-shadow: none; }

.contact-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.contact-list { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .4rem; }
.address { font-style: normal; color: var(--ink-muted); margin-bottom: 1rem; }

.hours-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; font-size: .9rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; }
.hours-list--full li { padding: .3rem 0; border-bottom: 1px dashed var(--cream-300); }
.hours-list span:last-child { font-variant-numeric: tabular-nums; }

/* The footer column is wider than this list needs, and space-between pushed
   "Every day" and "12:00–23:00" to opposite edges — a 110px hole on desktop and
   190px on a phone. The label column is a fixed width instead, so the times
   still line up under each other when the week is not uniform. */
/* The label column sizes itself to the longest label actually present, rather
   than to a guessed minimum — "Every day" is narrower than any figure that
   would cover a German weekday, so a fixed width just moved the hole instead of
   closing it. Two columns of max-content keep the times aligned under each
   other when the week is not uniform, and touching when it is. */
.site-footer .hours-list {
  display: grid; grid-template-columns: max-content max-content;
  column-gap: .9rem; row-gap: .3rem;
}
.site-footer .hours-list li { display: contents; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--cream-300); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: clamp(18rem, 45vw, 26rem); border: 0; }

.map-frame--consent {
  display: grid; place-items: center; text-align: center;
  min-height: clamp(14rem, 34vw, 20rem); padding: 2rem 1.25rem;
  background:
    radial-gradient(circle at 30% 30%, rgb(224 145 63 / 12%), transparent 60%),
    repeating-linear-gradient(45deg, var(--cream-200) 0 18px, var(--cream-300) 18px 36px);
}
.map-consent { max-width: 26rem; }
.map-consent p { margin: 0 0 .7rem; }
.map-consent p:last-child { margin-bottom: 0; }
.map-consent__address { font-size: 1.02rem; color: var(--teak-800); }

.faq-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.faq-list details {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: .3rem 1.2rem;
}
.faq-list summary { cursor: pointer; padding: .9rem 0; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.35rem; color: var(--amber-500); line-height: 1; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list summary h2 { font-size: 1.02rem; margin: 0; }
.faq-answer { padding-bottom: .8rem; color: var(--ink-muted); }
.faq-answer p { margin: 0; }

.tick-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .9rem; color: var(--ink-muted); }
.tick-list li { padding-left: 1.5rem; position: relative; }
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: .8rem; height: .45rem; border-left: 2px solid var(--amber-500);
  border-bottom: 2px solid var(--amber-500); transform: rotate(-45deg);
}

/* --- Booking ------------------------------------------------------------ */

.booking-layout { display: grid; gap: 1.6rem; }
@media (min-width: 62rem) { .booking-layout { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); align-items: start; } }

.fieldset { border: 0; padding: 0; margin: 0 0 1.8rem; }
.fieldset legend {
  font-family: var(--font-display); font-size: 1.1rem; color: var(--teak-800);
  padding: 0; margin-bottom: .9rem;
}

.field { display: grid; gap: .35rem; margin: 0 0 1rem; }
.field-row { display: grid; gap: 1rem; align-items: start; }
@media (min-width: 34rem) { .field-row { grid-template-columns: 1fr 1fr; } }

.field label { font-size: .88rem; font-weight: 600; color: var(--teak-800); }
.field__optional { font-weight: 400; color: var(--ink-muted); }
.field__hint { font-size: .8rem; color: var(--ink-muted); }
.field__error { font-size: .82rem; color: var(--danger); font-weight: 600; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="time"], input[type="number"], input[type="password"], input[type="search"],
select, textarea {
  width: 100%; padding: .7rem .85rem;
  font: inherit; font-size: .98rem; color: var(--ink);
  background: #fff; border: 1px solid var(--cream-300); border-radius: 10px;
}
input:focus, select:focus, textarea:focus { border-color: var(--amber-400); }

/* Safari on iOS sizes a date input from its own content and leaves the box it
   sits in only partly filled, which reads as a misaligned field. Pinning the
   width and neutralising the inner container makes it fill its box like every
   other control. */
input[type="date"], input[type="time"] {
  min-width: 0; max-width: 100%;
  -webkit-appearance: none; appearance: none;
  display: block; text-align: left;
}
input[type="date"]::-webkit-date-and-time-value { text-align: left; width: 100%; }
input[type="date"]::-webkit-calendar-picker-indicator { margin-inline-start: auto; }
textarea { resize: vertical; min-height: 5rem; }

.field--check label { display: flex; gap: .6rem; align-items: flex-start; font-weight: 400; font-size: .9rem; color: var(--ink-muted); }
.field--check input { margin-top: .25rem; flex: 0 0 auto; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.slots { margin: 1.2rem 0 0; }
.slots__label { font-size: .88rem; font-weight: 600; color: var(--teak-800); margin-bottom: .6rem; }
.slots__grid { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr)); }
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.slot span {
  display: block; text-align: center; padding: .6rem .3rem;
  border: 1px solid var(--cream-300); border-radius: 10px; background: #fff;
  font-variant-numeric: tabular-nums; font-size: .95rem; cursor: pointer;
  transition: border-color .12s, background-color .12s, color .12s;
}
.slot input:checked + span { background: var(--amber-500); border-color: var(--amber-500); color: #fff; font-weight: 600; }
.slot input:focus-visible + span { outline: 2.5px solid var(--amber-500); outline-offset: 2px; }
.slot:hover span { border-color: var(--amber-400); }
.slot--disabled span { opacity: .4; text-decoration: line-through; cursor: not-allowed; background: var(--cream-200); }
.slot--disabled:hover span { border-color: var(--cream-300); }

.banner { border-radius: 10px; padding: .8rem 1rem; font-size: .92rem; margin: 0 0 1.1rem; }
.banner--info { background: #e8f0e9; color: #1f4c31; }
.banner--error { background: #fbe9e6; color: var(--danger); }
.banner--muted { background: var(--cream-200); color: var(--teak-600); }
.banner--ok { background: #e2efe3; color: var(--ok); }

.form-actions { margin: 1.5rem 0 .8rem; }

.confirmation { text-align: center; margin-bottom: 2rem; }
.confirmation__mark { color: var(--ok); margin: 0 0 .5rem; }
.confirmation--cancelled .confirmation__mark { color: var(--ink-muted); }

.summary { display: grid; gap: .1rem; margin: 0; }
.summary > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--cream-300); }
.summary dt { color: var(--ink-muted); font-size: .9rem; }
.summary dd { margin: 0; text-align: right; font-weight: 500; }
.reference { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; font-size: 1.05rem; }

.booking-summary .button-row { margin-top: 1.2rem; }

.status { font-size: .78rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.status--pending { background: #fdf0d8; color: #8a5b12; }
.status--confirmed { background: #e2efe3; color: var(--ok); }
.status--seated { background: #e5eefb; color: #26548c; }
.status--completed { background: var(--cream-200); color: var(--teak-600); }
.status--cancelled { background: #fbe9e6; color: var(--danger); }
.status--no_show { background: #f1e6f6; color: #6b3c85; }

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

.site-footer { background: var(--green-900); color: var(--cream-200); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; margin-top: var(--step); }
.site-footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.site-footer h2 { font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; color: var(--amber-400); font-family: var(--font-body); font-weight: 700; }
.site-footer a { color: var(--cream-200); }
.site-footer a:hover { color: var(--amber-400); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .9rem; }
.site-footer address { font-style: normal; font-size: .9rem; margin-bottom: .8rem; }
.site-footer__name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .5rem; }
.site-footer__about { font-size: .9rem; color: rgb(242 234 217 / 72%); max-width: 22rem; }
.site-footer__status { font-size: .85rem; margin-top: .8rem; }
.site-footer__status.is-open { color: #79c48f; }
.site-footer__status.is-closed { color: #d8a15c; }
.site-footer__bar {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgb(242 223 182 / 15%);
  font-size: .82rem; color: rgb(242 234 217 / 60%);
}
.site-footer__bar p { margin: 0; }

.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  display: grid; place-items: center; width: 2.3rem; height: 2.3rem;
  border-radius: 50%; border: 1px solid rgb(242 223 182 / 25%); color: var(--cream-200);
}
.social a:hover { background: var(--amber-500); border-color: var(--amber-500); color: #fff; }

.section--error { padding-block: clamp(4rem, 12vw, 7rem); }
