/* ────────────────────────────────────────────────────────────────
   Pree Designed Dining — shared styles
   Editorial Mediterranean / Tel Avivian brand site
   ──────────────────────────────────────────────────────────────── */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --bone:        #F1ECE2;  /* primary page bg */
  --paper:       #FAF6EC;  /* raised cards / inset bg */
  --ink:         #1B1612;  /* headlines + body */
  --ink-soft:    #3A2F25;
  --olive:       #5E6336;  /* primary accent */
  --olive-soft:  #7C8048;
  --terracotta:  #B5613E;  /* secondary accent */
  --sage:        #9B9C7A;
  --rule:        rgba(27, 22, 18, 0.18);
  --rule-soft:   rgba(27, 22, 18, 0.10);

  --serif: "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --sans:  "Manrope", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  --pad-x-desktop: 64px;
  --pad-x-mobile:  22px;
}

/* ── Reset / base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }

/* ── Wordmark logo (PNG) ───────────────────────────────────────── */
.wordmark {
  display: block;
  height: 27px;       /* desktop header default = ~size 18 × 1.5 */
  width: auto;
}
.wordmark--small { height: 21px; }   /* mobile */
.wordmark--dark { filter: invert(1); }

/* ── Header ────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--rule-soft);
  padding: 26px var(--pad-x-desktop);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.site-nav {
  display: flex;
  gap: 44px;
  justify-content: center;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: opacity 120ms ease, border-color 120ms ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a.is-active {
  opacity: 1;
  border-bottom-color: var(--ink);
}
.header-cta { justify-self: end; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
}
.menu-toggle span:nth-child(1) { width: 20px; }
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle span:nth-child(3) { width: 12px; align-self: flex-end; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 64px var(--pad-x-desktop) 36px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(241, 236, 226, 0.7);
  line-height: 1.4;
  margin-top: 20px;
  max-width: 320px;
}
.footer-col-heading {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13px;
  color: rgba(241, 236, 226, 0.82);
  margin-bottom: 6px;
}
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 236, 226, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 236, 226, 0.5);
}

/* ── Eyebrow (roman-numeral · hairline · uppercase label) ──────── */
.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: var(--olive);
}
.eyebrow.is-centered { display: flex; justify-content: center; }
.eyebrow__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
}
.eyebrow__rule {
  flex: 0 0 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background 120ms ease, color 120ms ease;
}
.btn:hover { background: var(--olive); color: var(--bone); }
.btn--small { padding: 11px 22px; font-size: 11px; }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: var(--olive); color: var(--bone); }
.btn--full { width: 100%; justify-content: space-between; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 120ms ease;
}
.btn-link:hover { border-bottom-color: var(--ink); }
.btn-link--dark { color: var(--bone); border-bottom-color: rgba(241, 236, 226, 0.4); }

.btn .arrow, .btn-link .arrow {
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 96px var(--pad-x-desktop);
}
.section--paper {
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.section--centered { text-align: center; }
.section--has-decor { overflow: hidden; }
.section > .content { position: relative; }

/* ── Decorative produce illustrations (absolute, very subtle) ─── */
.decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.decor img {
  position: absolute;
  width: var(--decor-size, 200px);
  height: auto;
  opacity: var(--decor-opacity, 0.3);
  transform: rotate(var(--decor-rotate, 0deg));
  filter: sepia(0.1) saturate(0.9);
  mix-blend-mode: multiply;
}

/* ── Stars row (terracotta) ───────────────────────────────────── */
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 13px; height: 13px; fill: var(--terracotta); }

/* ── Tiny leaf ornament ───────────────────────────────────────── */
.ornament {
  display: inline-block;
  color: var(--olive);
}

/* ╭─────────────────────────────────────────────────────────────╮
   │  HOME PAGE                                                  │
   ╰─────────────────────────────────────────────────────────────╯ */

/* hero — sized to fit above the fold on a typical 800–1000px viewport */
.home-hero {
  min-height: calc(100vh - 96px); /* sticky header height + small buffer */
  padding: 48px var(--pad-x-desktop) 56px;
  display: flex;
  align-items: center;
}
.home-hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.home-hero__title {
  font-family: var(--serif);
  font-size: clamp(64px, 7.6vw, 116px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-top: 24px;
}
.italic-olive {
  font-style: italic;
  color: var(--olive);
}
.home-hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 28px 0 28px;
  text-wrap: pretty;
}
.home-hero__cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.home-hero__img-wrap {
  position: relative;
  height: clamp(440px, calc(100vh - 240px), 600px);
}
.home-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__caption {
  position: absolute;
  left: -32px;
  bottom: 64px;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  max-width: 230px;
}
.home-hero__caption-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--olive);
  margin-bottom: 6px;
}
.home-hero__caption-text {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.15;
}

/* about excerpt */
.about-excerpt {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: center;
}
.about-excerpt__text {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.about-excerpt__cta { margin-top: 32px; }

/* teasers */
.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.teaser__img { width: 100%; height: 380px; object-fit: cover; margin-bottom: 24px; }
.teaser__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
}
.teaser__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
}
.teaser__title {
  font-family: var(--serif);
  font-size: 28px;
}
.teaser__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* gallery */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ╭─────────────────────────────────────────────────────────────╮
   │  ABOUT PAGE                                                 │
   ╰─────────────────────────────────────────────────────────────╯ */

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 7.8vw, 112px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-top: 32px;
}
.about-hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin-top: 40px;
  text-wrap: pretty;
}
.about-portrait-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-portrait {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.about-portrait svg {
  position: absolute;
  inset: -30px;
  pointer-events: none;
}

/* pillars (culinary / aesthetic) */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.pillar__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 32px;
}
.pillar__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 20px 0 24px;
}
.pillar__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* etymology */
.etym {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.etym__big {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(140px, 17vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--olive);
  margin: 36px 0 8px;
}
.etym__phonetic {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.etym__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
}
.etym__rule-line {
  width: 100px;
  height: 1px;
  background: var(--rule);
}
.etym__body {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
  text-wrap: balance;
}

/* founders */
.founders-head {
  text-align: center;
  margin-bottom: 72px;
}
.founders-head__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: 24px;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.founder__img { width: 100%; height: 520px; object-fit: cover; }
.founder__first {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--olive);
  margin-top: 28px;
}
.founder__role {
  font-family: var(--serif);
  font-size: 34px;
  margin: 4px 0 18px;
}
.founder__bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* shared CTA */
.cta-block { text-align: center; }
.cta-block__title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.cta-block__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 24px auto 36px;
}
.cta-block__row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ╭─────────────────────────────────────────────────────────────╮
   │  EVENTS PAGE                                                │
   ╰─────────────────────────────────────────────────────────────╯ */

.events-hero {
  padding: 96px var(--pad-x-desktop) 72px;
}
.events-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.events-hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 7.8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.022em;
  margin-top: 28px;
}
.events-hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
  text-wrap: pretty;
}

.event {
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}
.event-list { padding: 0 var(--pad-x-desktop) 32px; }
.event__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.event__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  padding-top: 16px;
}
.event__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.event__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.event__place {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
}
.event__dot {
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--rule);
}
.event__type {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.event__hero {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.event__hero--2 { grid-template-columns: 1fr 1fr; }
.event__hero--3 { grid-template-columns: 1fr 1fr 1fr; }
.event__hero img { width: 100%; height: 540px; object-fit: cover; }
.event__grid { display: grid; gap: 16px; }
.event__grid img { width: 100%; height: 200px; object-fit: cover; }
.event__grid--3 { grid-template-columns: repeat(3, 1fr); }
.event__grid--5 { grid-template-columns: repeat(5, 1fr); }
.event__grid--6 { grid-template-columns: repeat(6, 1fr); }

/* ╭─────────────────────────────────────────────────────────────╮
   │  MENU PAGE                                                  │
   ╰─────────────────────────────────────────────────────────────╯ */

.menu-hero {
  padding: 88px var(--pad-x-desktop) 56px;
}
.menu-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 96px;
  align-items: end;
}
.menu-hero__title {
  font-family: var(--serif);
  font-size: clamp(60px, 8.6vw, 124px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.022em;
  margin-top: 32px;
}
.menu-hero__lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 420px;
  text-wrap: pretty;
}

/* Mobile-only single hero image + adi note (hidden on desktop) */
.menu-mobile-hero { display: none; }

/* ── Alternating editorial rows (one per course) ─────────── */
.menu-row {
  display: grid;
  gap: 72px;
  align-items: start;
  padding: 80px var(--pad-x-desktop);
}
.menu-row--image-left  { grid-template-columns: 0.85fr 1.15fr; }
.menu-row--image-right { grid-template-columns: 1.15fr 0.85fr; }
.menu-row--paper {
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.menu-row__image {
  position: relative;
}
.menu-row__image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}
.menu-row__note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px 22px;
  background: var(--bone);
  border-left: 2px solid var(--olive);
}
.menu-row__note-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--olive);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.menu-row__note-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  text-wrap: pretty;
}

/* Course header */
.course-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.course-head__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
}
.course-head__title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.course-head__rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin-left: 8px;
}
.course-head__sub {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* 2-col dish grid within an editorial row */
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.course-dish {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.course-dish__name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 4px;
}
.course-dish__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.course-footnote {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--olive);
  line-height: 1.4;
}

/* Disclaimer — 3-part horizontal split */
.menu-disclaimer {
  padding: 0 var(--pad-x-desktop) 80px;
}
.menu-disclaimer__inner {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.menu-how__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.menu-how__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-top: 24px;
}
.menu-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.menu-how__col {
  padding: 0 32px;
  border-right: 1px solid var(--rule);
}
.menu-how__col:first-child { border-left: 1px solid var(--rule); }
.menu-how__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.menu-how__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.menu-how__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ╭─────────────────────────────────────────────────────────────╮
   │  INQUIRE PAGE                                               │
   ╰─────────────────────────────────────────────────────────────╯ */

.inquire-page {
  position: relative;
  overflow: hidden;
  padding: 80px var(--pad-x-desktop) 120px;
}
.inquire-page__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas:
    "copy    form"
    "contact form";
  gap: 56px 80px;
  align-items: start;
}
.inquire-page__copy    { grid-area: copy; }
.inquire-page__contact { grid-area: contact; align-self: end; }
.inquire-form          { grid-area: form; }

.inquire-page__title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 32px 0 32px;
  text-wrap: balance;
}
.inquire-page__intro {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}

.inquire-page__contact {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: block;
}
.inquire-side__heading {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.inquire-side__phone {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 6px;
}
.inquire-side__email {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--olive);
  margin-bottom: 24px;
}
.inquire-side__rating {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

.inquire-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 48px;
}
.inquire-form__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.inquire-form__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--olive);
}
.inquire-form__fig {
  height: 32px;
  width: auto;
  opacity: 0.85;
}
.inquire-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.field { display: block; margin-bottom: 24px; }
.field__label, .form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field__input, .field__textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  outline: none;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.field__textarea {
  font-size: 19px;
  line-height: 1.4;
  resize: vertical;
  min-height: 60px;
}
.field__input::placeholder, .field__textarea::placeholder {
  color: var(--ink);
  opacity: 0.4;
}

.chips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  cursor: pointer;
  transition: all 120ms ease;
}
.chip:hover { border-color: var(--olive); color: var(--olive); }
.chip.is-selected {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--bone);
  font-style: italic;
}

.guests-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.guests-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--olive);
}
.slider {
  position: relative;
  height: 22px;
  margin-top: 14px;
  display: flex;
  align-items: center;
}
.slider__track {
  position: absolute;
  inset: 10px 0 auto 0;
  height: 2px;
  background: var(--rule);
}
.slider__fill {
  position: absolute;
  left: 0;
  top: 10px;
  width: 35%;
  height: 2px;
  background: var(--olive);
}
.slider__thumb {
  position: absolute;
  left: 35%;
  top: 0;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--bone);
  border: 1.5px solid var(--olive);
}

.inquire-form__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.inquire-form__reply {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-soft);
}

/* ╭─────────────────────────────────────────────────────────────╮
   │  MOBILE — single breakpoint                                 │
   ╰─────────────────────────────────────────────────────────────╯ */
@media (max-width: 900px) {

  /* header — hide desktop nav, show hamburger, condense paddings */
  .site-header {
    padding: 14px var(--pad-x-mobile);
    grid-template-columns: auto 1fr;
    gap: 0;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    padding: 20px 0 8px;
    border-top: 1px solid var(--rule-soft);
    margin-top: 14px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
    text-align: left;
  }
  .site-nav a.is-active { border-bottom-color: var(--rule-soft); }
  .header-cta {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .header-cta .btn {
    padding: 7px 14px;
    font-size: 10px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .header-cta .btn:hover { background: var(--ink); color: var(--bone); }
  .header-cta .btn .arrow { display: none; }
  .menu-toggle { display: flex; }

  .wordmark { height: 21px; }

  /* sections — squeeze paddings */
  .section { padding: 56px var(--pad-x-mobile); }

  /* footer */
  .site-footer { padding: 48px var(--pad-x-mobile) 32px; }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .footer-col-heading { font-size: 10px; letter-spacing: 0.24em; }
  .footer-col span, .footer-col a { font-size: 12px; }
  .footer-tagline { font-size: 16px; margin-bottom: 4px; }
  .footer-bottom { font-size: 9.5px; }

  /* HOME */
  .home-hero {
    min-height: 0;                      /* reset desktop viewport sizing */
    padding: 40px var(--pad-x-mobile) 48px;
    display: block;                     /* reset desktop flex */
  }
  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .home-hero__title { font-size: 60px; margin-top: 20px; }
  .home-hero__lede { font-size: 15px; margin: 0 0 28px; }
  .home-hero__cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .home-hero__cta-row .btn,
  .home-hero__cta-row .btn-link { justify-content: space-between; }
  .home-hero__cta-row .btn-link { justify-content: center; }
  /* Image grabs first on mobile, then text — reset the desktop clamp height */
  .home-hero__img-wrap { height: 420px; order: -1; }
  .home-hero__caption { display: none; }

  .about-excerpt {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-excerpt__text { font-size: 26px; line-height: 1.28; }

  .teasers { grid-template-columns: 1fr; gap: 32px; }
  .teaser__img { height: 220px; margin-bottom: 16px; }
  .teaser__title { font-size: 24px; }
  .teaser__body { font-size: 13px; }

  .gallery-head { margin-bottom: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-grid img { aspect-ratio: 1 / 1; }

  /* ABOUT */
  .about-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .about-hero__title { font-size: 52px; }
  .about-portrait { width: 260px; height: 260px; }
  .about-portrait svg { display: none; }
  .about-hero__lede { font-size: 15px; margin-top: 0; }

  .pillars-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillar__img { height: 240px; margin-bottom: 24px; }

  .etym__phonetic { font-size: 15px; }
  .etym__rule-line { width: 40px; }
  .etym__body { font-size: 20px; }

  .founders-head { margin-bottom: 36px; }
  .founders-head__title { font-size: 38px; }
  .founders-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder__img { height: 380px; }
  .founder__first { font-size: 20px; margin-top: 16px; }
  .founder__role { font-size: 24px; margin: 2px 0 10px; }
  .founder__bio { font-size: 13px; line-height: 1.65; }

  .cta-block__title { font-size: 48px; }

  /* EVENTS */
  .events-hero { padding: 40px var(--pad-x-mobile) 32px; }
  .events-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .events-hero__title { font-size: 52px; margin-top: 20px; }
  .events-hero__lede { font-size: 14px; }

  .event-list { padding: 0 var(--pad-x-mobile); }
  .event { padding: 40px 0; }
  .event__head {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }
  .event__num { padding-top: 0; margin-bottom: 10px; font-size: 14px; }
  .event__title { font-size: 32px; margin-bottom: 10px; }
  .event__meta { gap: 8px; flex-direction: column; align-items: flex-start; }
  .event__place { font-size: 17px; }
  .event__dot { display: none; }
  .event__type { font-size: 10px; }
  .event__hero { gap: 8px; }
  .event__hero--2, .event__hero--3 { grid-template-columns: 1fr; }
  .event__hero img { height: 280px; }
  .event__hero img:not(:first-child) { display: none; }
  .event__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .event__grid--3, .event__grid--5, .event__grid--6 { grid-template-columns: 1fr 1fr; }
  .event__grid img { height: 130px; }

  /* MENU */
  .menu-hero { padding: 40px var(--pad-x-mobile) 24px; }
  .menu-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .menu-hero__title { font-size: 58px; margin-top: 20px; }
  .menu-hero__lede { font-size: 14px; }

  /* Show mobile-only hero image + note */
  .menu-mobile-hero { display: block; padding: 8px var(--pad-x-mobile) 32px; }
  .menu-mobile-hero img { width: 100%; height: 360px; object-fit: cover; }
  .menu-mobile-hero__note {
    margin-top: 20px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--rule);
  }
  .menu-mobile-hero__note-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: var(--olive);
    margin-bottom: 6px;
  }
  .menu-mobile-hero__note-text {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
  }

  /* Collapse alternating rows: drop per-row image, single col, sequential courses */
  .menu-row,
  .menu-row--image-left,
  .menu-row--image-right {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px var(--pad-x-mobile);
    background: transparent;
    border: 0;
  }
  .menu-row__image { display: none; }

  /* Tighter course header & dish styling */
  .course-head {
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 14px;
  }
  .course-head__num { font-size: 15px; }
  .course-head__title { font-size: 26px; line-height: 1; }
  .course-head__sub { font-size: 8.5px; letter-spacing: 0.18em; }
  .course-grid { grid-template-columns: 1fr; gap: 0; }
  .course-dish { padding: 10px 0; }
  .course-dish__name { font-size: 18px; line-height: 1.2; }
  .course-dish__desc { font-size: 12px; line-height: 1.5; }
  .course-footnote { margin-top: 12px; font-size: 13px; }

  /* Disclaimer stacks centered on mobile */
  .menu-disclaimer { padding: 16px var(--pad-x-mobile) 24px; }
  .menu-disclaimer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding-top: 18px;
    font-size: 12px;
    line-height: 1.5;
  }

  .menu-how__head { margin-bottom: 28px; }
  .menu-how__title { font-size: 38px; }
  .menu-how__grid { grid-template-columns: 1fr; }
  .menu-how__col {
    border-left: 0 !important;
    border-right: 0;
    border-top: 1px solid var(--rule);
    padding: 18px 0;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }
  .menu-how__num { margin-bottom: 0; font-size: 15px; }
  .menu-how__name { font-size: 22px; margin-bottom: 6px; line-height: 1.1; }
  /* desc is the 3rd child in a 2-col grid (num | name) — push it under name in col 2 */
  .menu-how__desc { font-size: 13px; line-height: 1.6; grid-column: 2; }

  /* INQUIRE */
  .inquire-page { padding: 40px var(--pad-x-mobile) 56px; }
  .inquire-page__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "contact";
    gap: 32px;
  }
  .inquire-page__title { font-size: 56px; margin: 20px 0 24px; }
  .inquire-page__intro { font-size: 19px; }

  .inquire-page__contact {
    align-self: stretch;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .inquire-side__heading { font-size: 10px; margin-bottom: 10px; }
  .inquire-side__phone { font-size: 22px; margin-bottom: 4px; }
  .inquire-side__email { font-size: 16px; margin-bottom: 0; }
  /* hide the stars block on mobile to match prototype */
  .inquire-side__stars { display: none; }

  .inquire-form { padding: 24px; }
  .inquire-form__head { margin-bottom: 24px; padding-bottom: 14px; }
  .inquire-form__no { font-size: 17px; }
  .inquire-form__fig { height: 28px; }
  .inquire-form__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .field { margin-bottom: 18px; }
  .field__label, .form-label { font-size: 9.5px; }
  .field__input { font-size: 18px; margin-top: 6px; }
  .field__textarea { font-size: 17px; margin-top: 6px; }
  .chip { padding: 7px 13px; font-size: 13px; }
  .guests-count { font-size: 17px; }
  .inquire-form__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .inquire-form__foot .btn { justify-content: space-between; }
  .inquire-form__reply { text-align: center; }
}
