/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--type-h1-size);
  font-weight: var(--type-h1-weight);
  line-height: var(--type-h1-line);
  letter-spacing: var(--type-h1-tracking);
  color: var(--ink);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
  letter-spacing: var(--type-h2-tracking);
  color: var(--ink);
  margin-bottom: var(--s4);
}

h3 {
  font-family: var(--font-body);
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
  letter-spacing: var(--type-h3-tracking);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── Eyebrow ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--type-eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s2);
}

/* ─── Rule ───────────────────────────────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--type-button-size);
  font-weight: 600;
  letter-spacing: var(--type-button-tracking);
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  padding: var(--s3) var(--s5);
  cursor: pointer;
  transition: background var(--ease) 0.18s, color var(--ease) 0.18s;
}

.btn:hover {
  background: var(--muted);
  border-color: var(--muted);
  color: var(--bg);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ─── Site Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--s3) 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}

.site-nav__logo {
  font-family: var(--font-display);
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  letter-spacing: var(--type-h3-tracking);
  color: var(--ink);
  margin-right: auto;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: var(--type-nav-size);
  font-weight: 600;
  letter-spacing: var(--type-nav-tracking);
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease) 0.18s;
}

.site-nav__link:hover {
  color: var(--ink);
}

/* ─── Hero text block ────────────────────────────────────────────────────── */
.hero-text {
  background: var(--bg);
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--line);
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--type-eyebrow-size);
  font-weight: 600;
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s2);
}

.hero__headline {
  margin-bottom: var(--s3);
}

.hero__subline {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  margin-bottom: var(--s4);
}

/* ─── Hero image band ────────────────────────────────────────────────────── */
.hero-image-band {
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Section ────────────────────────────────────────────────────────────── */
.section {
  padding: var(--s6) 0 0;
}

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

.section__header {
  margin-bottom: var(--s4);
}

/* ─── Menu ───────────────────────────────────────────────────────────────── */
.menu-section h3 {
  font-family: var(--font-body);
  font-size: var(--type-eyebrow-size);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s5);
  margin-bottom: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--line);
}

.menu-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: baseline;
  gap: 0 var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
}

.menu-item .name {
  font-size: var(--type-body-size);
  font-weight: 600;
  color: var(--ink);
  grid-column: 1;
  grid-row: 1;
}

.menu-item .desc {
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  color: var(--muted);
  grid-column: 1;
  grid-row: 2;
  margin-top: var(--s1);
}

.menu-item .price {
  font-size: var(--type-body-size);
  font-weight: 600;
  color: var(--ink);
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.menu-note {
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  color: var(--muted);
  margin-top: var(--s4);
  font-style: italic;
}

/* ─── Reviews ────────────────────────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s4);
}

.review-card__stars {
  display: flex;
  gap: var(--s1);
  margin-bottom: var(--s3);
  color: var(--accent-1);
  font-size: var(--type-small-size);
}

.review-card__text {
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  color: var(--ink);
  margin-bottom: var(--s3);
}

.review-card__source {
  font-size: var(--type-eyebrow-size);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Info List ──────────────────────────────────────────────────────────── */
.info-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.info-row {
  display: flex;
  gap: var(--s4);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.info-row .label {
  font-weight: 600;
  color: var(--muted);
  min-width: 100px;
  flex-shrink: 0;
  font-size: var(--type-small-size);
  letter-spacing: var(--type-eyebrow-tracking);
  text-transform: uppercase;
}

/* ─── Panel ──────────────────────────────────────────────────────────────── */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s5);
}

/* ─── Form Fields ────────────────────────────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.field label {
  font-size: var(--type-small-size);
  font-weight: 600;
  letter-spacing: var(--type-button-tracking);
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: var(--s3);
  width: 100%;
  transition: border-color var(--ease) 0.18s;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

/* ─── Honeypot ───────────────────────────────────────────────────────────── */
/* Must use off-screen positioning, not display:none — bots detect display:none */
.honeypot-wrap {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ─── Hero actions ───────────────────────────────────────────────────────── */
.hero__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* ─── Quick-info strip ───────────────────────────────────────────────────── */
.quick-info-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s3) var(--s4);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--type-eyebrow-size);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.quick-info-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--s2) var(--s3);
}

.quick-info-dot {
  color: var(--line);
  line-height: 1;
}

/* ─── Supplier strip ─────────────────────────────────────────────────────── */
.supplier-strip {
  text-align: center;
  padding: 0 0 var(--s3);
  margin: 0 0 var(--s3);
  border-bottom: 1px solid var(--line);
}

.supplier-strip .menu-note {
  margin: 0;
}

/* ─── Gallery band ───────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  border: 1px solid var(--line);
  padding: var(--s4);
  background: var(--surface);
}

.gallery__figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.gallery__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ─── About section with image ───────────────────────────────────────────── */
.about-section--has-image .about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: start;
  text-align: left;
}

.about-section--has-image .about-section__image {
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-section--has-image .about-section__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-section--has-image .about-section__copy > *:last-child {
  margin-bottom: 0;
}

/* ─── Mobile action bar ──────────────────────────────────────────────────── */
.mobile-bar {
  display: none;
}

/* ─── Site Footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s5) 0;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.site-footer__line {
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  color: var(--bg);
  opacity: 0.75;
}

.site-footer__line:first-child {
  opacity: 1;
  font-weight: 600;
}
