:root {
  color-scheme: light;
  --background: #fffaf0;
  --surface: #fff6e6;
  --surface-raised: #fffdf8;
  --surface-tinted: #f3e2c5;
  --text-primary: #172018;
  --text-secondary: #554a3f;
  --text-muted: #7a6c5c;
  --border: #e5d2ad;
  --brand: #073f23;
  --brand-hover: #052d1c;
  --brand-soft: #e7f2df;
  --accent: #c84f19;
  --accent-hover: #a73f12;
  --gold: #efb33f;
  --error: #c73224;
  --white: #ffffff;
  --black: #070504;
  --shadow: 0 22px 60px rgba(56, 24, 10, 0.14);
  --soft-shadow: 0 12px 28px rgba(56, 24, 10, 0.08);
  --radius: 8px;
  --radius-pill: 999px;
  --max: 1280px;
  --gutter: clamp(1rem, 5vw, 5rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --font-size-hero: 3rem;      /* 48px - big homepage headline only */
  --font-size-h2: 2rem;        /* 32px - section headings */
  --font-size-h3: 1.5rem;      /* 24px - subheadings */
  --font-size-menu-item: 1.125rem; /* 18px - menu item names */
  --font-size-body: 1rem;      /* 16px - paragraphs, descriptions */
  --font-size-small: 0.875rem; /* 14px - hours, addresses, footer, fine print */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 246, 230, 0.98)),
    var(--background);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page-shell {
  min-height: 100vh;
  overflow: clip;
  background: var(--background);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(100%, var(--max));
  height: 76px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(229, 210, 173, 0.72);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #4d1714;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 64px;
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 0.15rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  background: var(--black);
  object-fit: contain;
  object-position: center;
  box-shadow: var(--soft-shadow);
}

.brand strong,
.brand em {
  display: block;
  font-family: var(--font-heading);
  line-height: var(--line-height-tight);
  letter-spacing: 0;
  font-style: normal;
}

.brand strong {
  font-size: var(--font-size-h3);
  font-weight: 700;
}

.brand em {
  color: var(--accent);
  font-size: var(--font-size-small);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #4d1714;
  font-size: var(--font-size-small);
  font-weight: 800;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 0.85rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(200, 79, 25, 0.22);
  background: rgba(200, 79, 25, 0.1);
  color: var(--accent);
}

.site-nav .nav-cta {
  margin-left: 0.45rem;
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  border-color: var(--brand-hover);
  background: var(--brand-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: #4d1714;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--brand-hover);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: var(--font-size-h2);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  width: min(100%, var(--max));
  min-height: min(620px, calc(100svh - 112px));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  background: #120c08;
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
}

.hero-location,
.section-heading p,
.menu-board-heading p,
.menu-order-strip p,
.menu-preview-list span,
.home-link-card span,
.story-copy > p {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: var(--font-size-small);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  font-size: var(--font-size-hero);
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

.hero-text {
  max-width: 560px;
  margin: 1.15rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #1d120c;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.92), rgba(8, 5, 3, 0.58) 44%, rgba(8, 5, 3, 0.16)),
    linear-gradient(0deg, rgba(5, 45, 28, 0.48), rgba(8, 5, 3, 0.08) 54%);
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-corner-photo {
  display: none;
}

.hero-info {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.2rem, 4vw, 3rem);
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  max-width: min(320px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  color: #4d1714;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-info strong {
  font-size: var(--font-size-body);
}

.hero-info span {
  color: var(--text-muted);
  font-size: var(--font-size-small);
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 240, 0.14);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
}

.status-dot.open {
  background: #48cf6a;
}

.status-dot.closed {
  background: var(--error);
}

.hero-actions,
.location-actions,
.contact-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-body);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 45, 28, 0.16);
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--accent-hover);
}

.btn.secondary,
.btn.ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 250, 240, 0.9);
  color: #4d1714;
}

.section,
.quick-info,
.menu-page-hero,
.menu-category-nav,
.menu-board-section,
.menu-order-strip,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) var(--gutter);
  scroll-margin-top: 96px;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.quick-info article {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 78px;
  padding: 1rem var(--gutter);
  color: #4d1714;
  font-weight: 800;
}

.quick-info article + article {
  border-left: 1px solid var(--border);
}

.quick-info svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading span,
.story-copy span {
  display: block;
  max-width: 660px;
  margin-top: 0.8rem;
  color: var(--text-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--surface-raised);
}

.story-copy {
  max-width: 560px;
}

.story-actions {
  margin-top: 1.5rem;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 0.25rem;
}

.story-photo,
.menu-hero-photo,
.photo-card,
.map-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.story-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo figcaption,
.menu-hero-photo figcaption,
.photo-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  color: var(--brand-hover);
  font-size: var(--font-size-small);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.menu-preview {
  background: #f6ead3;
}

.menu-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.menu-preview-layout > img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-preview-list {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.menu-preview-list article {
  padding-block: 1rem;
  border-bottom: 1px solid rgba(85, 74, 63, 0.2);
}

.menu-preview-list strong {
  display: block;
  color: var(--brand-hover);
  font-size: var(--font-size-menu-item);
  line-height: var(--line-height-normal);
}

.home-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-link-card {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-link-card:hover,
.home-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 79, 25, 0.35);
  box-shadow: var(--soft-shadow);
}

.home-link-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

.home-link-card p,
.menu-item p,
.modern-menu-row p,
.location-copy p,
.visit-panel p,
.after-kakum p {
  margin: 0;
  color: var(--text-secondary);
}

.home-link-card h3,
.menu-item h3,
.modern-menu-row h3 {
  font-size: var(--font-size-menu-item);
}

.menu-page {
  background: var(--background);
}

.menu-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 5fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  background:
    linear-gradient(135deg, rgba(5, 45, 28, 0.97), rgba(77, 23, 20, 0.88)),
    url("assets/tourispot-garden.webp") center / cover;
  color: var(--white);
}

.menu-page-hero h1,
.menu-page-hero h2,
.menu-order-strip h2,
.visit-panel h2,
.after-kakum h2 {
  color: var(--white);
}

.menu-page-hero .hero-text {
  color: rgba(255, 255, 255, 0.86);
}

.menu-hero-photo {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.menu-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-category-nav {
  position: sticky;
  top: 76px;
  z-index: 12;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.85rem var(--gutter);
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.menu-category-nav::-webkit-scrollbar {
  display: none;
}

.menu-category-nav a {
  flex: 0 0 auto;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.76);
  color: #4d1714;
  font-size: var(--font-size-small);
  font-weight: 800;
  text-decoration: none;
}

.menu-shop-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.5rem) var(--gutter);
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
}

.menu-order-active .menu-shop-tools {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
}

.menu-finder,
.order-builder {
  display: grid;
  gap: 1rem;
}

.menu-search-field {
  display: grid;
  gap: 0.45rem;
}

.menu-search-field label,
.order-builder-heading p {
  margin: 0;
  color: var(--accent);
  font-size: var(--font-size-small);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font: inherit;
}

.menu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-filter {
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #4d1714;
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  cursor: pointer;
}

.menu-filter.active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.menu-result-count {
  margin: 0;
  color: var(--text-secondary);
}

.order-toggle {
  width: fit-content;
}

.order-builder {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff8e9;
}

.order-builder-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.order-builder-heading h2 {
  margin-top: 0.2rem;
  font-size: var(--font-size-h3);
}

.order-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.order-details label {
  display: grid;
  gap: 0.35rem;
}

.order-details span {
  color: var(--text-secondary);
  font-size: var(--font-size-small);
  font-weight: 800;
}

.order-details input,
.order-details select,
.order-details textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
}

.order-details textarea {
  min-height: 86px;
  resize: vertical;
}

.order-notes-field {
  grid-column: 1 / -1;
}

.order-clear,
.menu-add-button,
.order-stepper button {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--brand);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  cursor: pointer;
}

.order-clear {
  min-height: 38px;
  padding: 0.45rem 0.75rem;
}

.order-list {
  display: grid;
  gap: 0.55rem;
}

.order-empty {
  margin: 0;
  color: var(--text-muted);
}

.order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(229, 210, 173, 0.72);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.order-line span,
.order-line strong,
.order-line em {
  display: block;
}

.order-line strong {
  color: var(--brand-hover);
  font-size: var(--font-size-body);
}

.order-line em {
  color: var(--text-muted);
  font-size: var(--font-size-small);
  font-style: normal;
}

.order-stepper {
  display: inline-flex;
  gap: 0.35rem;
}

.order-stepper button {
  width: 34px;
  height: 34px;
}

.order-total {
  padding: 0.75rem;
  border: 1px solid rgba(200, 79, 25, 0.24);
  border-radius: var(--radius);
  background: rgba(200, 79, 25, 0.08);
  color: var(--brand-hover);
  font-size: var(--font-size-body);
  font-weight: 900;
}

.menu-add-button {
  display: none;
}

.menu-order-active .menu-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.order-send.disabled {
  opacity: 0.52;
  pointer-events: none;
}

.menu-board-section {
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  scroll-margin-top: 150px;
}

.menu-board-section + .menu-board-section {
  border-top: 1px solid var(--border);
}

.menu-board-section.accent {
  background: var(--surface);
}

.weekend-panel {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 246, 230, 0.97)),
    url("assets/tourispot-entrance-sign.webp") center / cover;
}

.menu-board-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.menu-board-note {
  display: block;
  max-width: 680px;
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
}

.modern-menu-list {
  display: grid;
  gap: 0.75rem;
}

.modern-menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  min-height: 94px;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.modern-menu-row strong,
.staple-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0.62rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--white);
  font-size: var(--font-size-body);
  font-weight: 800;
  white-space: nowrap;
}

.staple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.staple-grid article {
  display: grid;
  gap: 1rem;
  min-height: 140px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.staple-grid span {
  color: var(--brand-hover);
  font-family: var(--font-heading);
  font-size: var(--font-size-menu-item);
  font-weight: 700;
}

.drinks-section {
  background:
    linear-gradient(180deg, rgba(246, 234, 211, 0.94), rgba(255, 250, 240, 0.98)),
    var(--surface);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.drink-group {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
}

.drink-group summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 0.4rem 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.drink-group summary::-webkit-details-marker {
  display: none;
}

.drink-group summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.drink-group[open] summary {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(229, 210, 173, 0.72);
}

.drink-group[open] summary::after {
  content: "-";
  background: var(--brand);
  color: var(--white);
}

.drink-title {
  color: var(--brand-hover);
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.drink-description {
  grid-column: 1 / 2;
  color: var(--text-secondary);
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
}

.drink-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(229, 210, 173, 0.72);
  border-radius: var(--radius);
  background: var(--border);
}

.drink-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  background: var(--surface-raised);
}

.drink-row span {
  color: var(--brand-hover);
  font-weight: 700;
}

.drink-row strong {
  color: var(--accent);
  font-size: var(--font-size-body);
  white-space: nowrap;
}

.menu-add-button {
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  background: var(--brand-soft);
}

.menu-order-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
  background: #4d1714;
  color: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

.photo-card {
  position: relative;
  border: 1px solid rgba(255, 250, 240, 0.2);
  box-shadow: var(--soft-shadow);
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card.tall {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section,
.location-section,
.contact-section {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.split-section {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
}

.location-section {
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
}

.contact-section {
  grid-template-columns: minmax(0, 6fr) minmax(300px, 5fr);
}

.hours-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.hours-list div + div {
  border-top: 1px solid var(--border);
}

.hours-list strong {
  color: var(--brand);
}

.hours-list .closed {
  color: var(--error);
}

.visit-panel,
.after-kakum {
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--brand), #2d120f);
  color: var(--white);
  padding: clamp(1.5rem, 4vw, 2rem);
}

.map-card {
  position: relative;
  display: block;
  min-height: 440px;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.map-card:hover,
.map-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 62px rgba(5, 45, 28, 0.18);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 45, 28, 0.04), rgba(5, 45, 28, 0.64));
}

.map-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.road-line {
  display: none;
}

.map-pin {
  position: absolute;
  left: 48%;
  top: 34%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--white);
  color: var(--error);
  box-shadow: var(--shadow);
}

.map-pin svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.map-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.map-label strong,
.map-label span,
.map-label em {
  display: block;
}

.map-label strong {
  color: var(--brand-hover);
}

.map-label span {
  color: var(--text-muted);
}

.map-label em {
  margin-top: 0.4rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.location-copy p {
  margin: 0 0 1.35rem;
  max-width: 620px;
}

.contact-copy {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-raised);
}

.contact-copy .section-heading {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.phone-number {
  display: inline-block;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  color: var(--accent);
  font-size: var(--font-size-h2);
  font-weight: 800;
  line-height: var(--line-height-tight);
  text-decoration: none;
}

.after-kakum {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(5, 45, 28, 0.02), rgba(5, 45, 28, 0.92)),
    url("assets/tourispot-guest-eating.webp") center / cover;
}

.after-kakum h2 {
  max-width: 520px;
  font-size: var(--font-size-h3);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem var(--gutter);
  background: #26231f;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--font-size-menu-item);
}

.site-footer span,
.site-footer a {
  font-size: var(--font-size-small);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.25rem);
    right: var(--gutter);
    display: none;
    width: min(340px, calc(100vw - 2rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-raised);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
    padding-inline: 1rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-left: 0;
  }

  .hero,
  .story-feature,
  .menu-preview-layout,
  .menu-page-hero,
  .menu-shop-tools,
  .menu-order-active .menu-shop-tools,
  .split-section,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(4rem, 14vw, 7rem);
    padding-bottom: clamp(6rem, 16vw, 9rem);
  }

  .hero-info {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 1rem;
  }

  .quick-info,
  .home-link-grid,
  .staple-grid,
  .drink-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .quick-info article + article {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .story-photo,
  .menu-preview-layout > img,
  .menu-hero-photo,
  .map-card {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .menu-board-heading,
  .menu-order-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-grid {
    grid-auto-rows: 280px;
  }

  .photo-card.wide,
  .photo-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --section-y: clamp(3.25rem, 14vw, 5rem);
  }

  .site-header {
    height: 72px;
    min-height: 72px;
  }

  .brand-logo {
    flex-basis: 56px;
    min-width: 56px;
    max-width: 56px;
    width: 56px;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
  }

  .brand strong {
    font-size: var(--font-size-body);
  }

  .brand em {
    font-size: var(--font-size-small);
  }

  .hero h1 {
    font-size: var(--font-size-hero);
  }

  .hero-actions,
  .contact-actions,
  .location-actions,
  .story-actions {
    width: 100%;
  }

  .btn,
  .hero-actions .primary,
  .contact-actions .primary,
  .location-actions .primary {
    width: 100%;
  }

  .hero-actions .secondary,
  .hero-actions .ghost {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
  }

  .status-card {
    width: 100%;
  }

  .modern-menu-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .drink-row {
    grid-template-columns: 1fr auto;
    gap: 0.25rem;
  }

  .modern-menu-row strong,
  .staple-grid strong {
    width: fit-content;
  }

  .modern-menu-row .menu-add-button,
  .drink-row .menu-add-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .staple-grid .menu-add-button {
    width: 100%;
  }

  .order-details {
    grid-template-columns: 1fr;
  }

  .order-line {
    grid-template-columns: 1fr;
  }

  .phone-number {
    overflow-wrap: anywhere;
  }
}

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