/* B Town Steakhouse — static site styles */

:root {
  --forest: #1e3a2f;
  --forest-dark: #152921;
  --olive: #4a5c3a;
  --olive-light: #6d7a4a;
  --parchment: #f4eede;
  --cream: #faf8f3;
  --tan: #e8dcc8;
  --text: #2a2a2a;
  --text-muted: #6b6560;
  --gold: #8a6a2b;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(30, 58, 47, 0.12);
  --font-display: "Oswald", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --container: min(1140px, 100% - 48px);
  --section-pad: clamp(72px, 9vw, 112px);
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--forest);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
}

.skip-link:focus { top: 16px; }

/* ── Top bar ── */
.top-bar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a { color: inherit; }
.top-bar a:hover { color: var(--white); }

.top-bar__divider { opacity: 0.35; }

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar__social {
  opacity: 0.85;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
}

.top-bar__social:hover { opacity: 1; }

/* ── Header ── */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30, 58, 47, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 28px rgba(21, 41, 33, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  display: block;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
}

.logo-mark--header {
  width: 56px;
  height: 56px;
}

.logo-mark--footer {
  width: 48px;
  height: 48px;
}

.brand__logo,
.footer-brand__logo {
  width: 118%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  margin: -4% 0 0 -9%;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__name {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.2;
}

.brand__tagline {
  font-family: var(--font-script);
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--olive);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 44px);
}

.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover { color: var(--olive); }
.site-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn--hero {
  background: var(--parchment);
  color: var(--forest);
  border: 1px solid transparent;
}

.btn--hero:hover {
  background: var(--cream);
}

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
  width: 100%;
}

.btn--forest:hover { background: var(--forest-dark); }

.btn--light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
}

.btn--light:hover { background: rgba(255, 255, 255, 0.1); }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(30, 58, 47, 0.35);
}

.btn--outline:hover {
  background: rgba(30, 58, 47, 0.06);
  border-color: var(--forest);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  min-height: clamp(560px, 86vh, 800px);
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
}

.hero__panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background:
    linear-gradient(165deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--parchment);
  padding:
    clamp(48px, 7vw, 88px)
    clamp(36px, 4.5vw, 64px)
    clamp(48px, 7vw, 88px)
    clamp(28px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.hero__panel::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: 0;
  width: 1px;
  background: rgba(244, 238, 222, 0.18);
  pointer-events: none;
}

.hero__content {
  width: 100%;
  max-width: 26rem;
  margin-right: 0;
  text-align: left;
  animation: hero-rise 0.85s ease-out both;
}

.hero__brand {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
  line-height: 1.05;
  color: var(--parchment);
  text-wrap: balance;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0 0 18px;
  color: rgba(250, 248, 243, 0.92);
}

.hero__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  font-weight: 300;
  margin: 0 0 30px;
  max-width: 34ch;
  color: rgba(244, 238, 222, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.hero__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  /* Keep Bolton tower + brick facade in frame; crop empty pavement */
  object-position: 38% 36%;
  animation: hero-zoom 16s ease-out forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__media,
  .hero__content {
    animation: none;
  }
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  text-align: center;
  margin: 0;
  line-height: 1.15;
}

.section-title--left {
  text-align: left;
  margin-bottom: 20px;
}

.section-lead {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Catering banner ── */
.catering-banner {
  background: var(--parchment);
  color: var(--forest);
  padding: clamp(48px, 6.5vw, 72px) 0;
  border-top: 3px solid var(--olive);
  border-bottom: 1px solid var(--tan);
}

.catering-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.catering-banner__copy {
  flex: 1 1 18rem;
  max-width: 44rem;
}

.catering-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--forest);
}

.catering-banner__lead {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--olive);
}

.catering-banner__copy > p:last-child {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 40ch;
}

.catering-banner .btn--light {
  flex-shrink: 0;
  width: auto;
  background: var(--forest);
  color: var(--parchment);
  border-color: var(--forest);
}

.catering-banner .btn--light:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--parchment);
}

/* ── Menu section ── */
.menu-section {
  background:
    linear-gradient(rgba(30, 58, 47, 0.97), rgba(21, 41, 33, 0.98)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  padding: var(--section-pad) 0;
  color: var(--parchment);
}

.menu-section .section-title {
  color: var(--parchment);
}

.menu-section .section-lead {
  color: rgba(244, 238, 222, 0.72);
}

.menu-sheet {
  min-width: 0;
  background: rgba(21, 41, 33, 0.35);
  border: 1px solid rgba(244, 238, 222, 0.14);
  padding: clamp(22px, 2.8vw, 36px);
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

.menu-category {
  margin-bottom: 36px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
  margin: 0 0 4px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(244, 238, 222, 0.35);
}

.menu-category__note {
  font-size: 13px;
  color: rgba(244, 238, 222, 0.62);
  font-style: italic;
  margin: 10px 0 16px;
}

.menu-item {
  margin-bottom: 14px;
}

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.menu-item__name {
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
  white-space: nowrap;
}

.menu-item__meta {
  font-size: 13px;
  color: rgba(244, 238, 222, 0.58);
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(244, 238, 222, 0.35);
  min-width: 12px;
  margin-bottom: 3px;
}

.menu-item__price {
  font-weight: 500;
  font-size: 16px;
  color: var(--parchment);
  white-space: nowrap;
}

.menu-item__desc {
  font-size: 13px;
  color: rgba(244, 238, 222, 0.58);
  margin: 3px 0 0;
  line-height: 1.5;
  font-style: italic;
}

/* ── Challenge ── */
.challenge {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.challenge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.challenge__media {
  margin: 0;
}

.challenge__photo {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.challenge__copy > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 40ch;
}

.challenge-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  max-width: 36rem;
}

.challenge-steps li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.challenge-steps li:last-child {
  margin-bottom: 0;
}

.challenge-steps span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}

.challenge__cta {
  width: auto;
  display: inline-block;
}

/* ── Reviews ── */
.reviews {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(180deg, rgba(244, 238, 222, 0.55) 0%, rgba(250, 248, 243, 0.95) 48%, var(--cream) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(30, 58, 47, 0.015) 11px,
      rgba(30, 58, 47, 0.015) 12px
    );
  border-top: 1px solid rgba(30, 58, 47, 0.08);
}

.reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(28px, 4vw, 40px) clamp(32px, 5vw, 56px);
  max-width: 980px;
  margin-inline: auto;
}

.review {
  padding: 0;
  border: none;
  background: transparent;
}

.review__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 12px;
}

.review__quote {
  margin: 0;
}

.review__quote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

.review__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 58, 47, 0.12);
}

.review__name {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.review__source {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.reviews__note {
  max-width: 52ch;
  margin: clamp(28px, 4vw, 40px) auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
}

.reviews__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  margin-top: 22px;
}

.reviews__actions .btn {
  width: auto;
  min-width: 200px;
  text-align: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(56px, 7vw, 80px) 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.15fr 0.75fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
}

.footer-brand__tag {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--olive-light);
  line-height: 1;
}

.footer-col h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 16px;
  font-size: 14px;
  line-height: 1.4;
  padding: 7px 0;
}

.footer-hours li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours__days {
  min-width: 0;
}

.footer-hours__time {
  white-space: nowrap;
  text-align: right;
}

.footer-phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.footer-col a:not(.footer-phone) {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-light);
}

.footer-col a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  opacity: 0.9;
  color: var(--white) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.footer-map {
  margin-top: clamp(36px, 4.5vw, 48px);
  width: 100%;
  aspect-ratio: 21 / 7;
  min-height: 180px;
  max-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.02);
}

.footer-links li {
  margin: 0 0 12px;
}

.footer-links li:last-child { margin-bottom: 0; }

.footer-links a {
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: clamp(40px, 5vw, 56px);
  padding: 18px 0 22px;
  background: rgba(0, 0, 0, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.65;
}

/* ── Modals ── */
.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 41, 33, 0.6);
}

.modal__panel {
  position: relative;
  background: var(--white);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
  max-height: min(90vh, 720px);
  overflow-y: auto;
}

.modal__panel--wide {
  max-width: 520px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.modal__panel h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 12px;
}

.modal__panel > p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.modal-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--forest);
}

.modal-form .form-field {
  margin-bottom: 4px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4cfc4;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 8px;
  background: var(--white);
  color: var(--text);
}

.modal-form input[aria-invalid="true"],
.modal-form textarea[aria-invalid="true"] {
  border-color: #8b2e2e;
}

.modal-form textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: 2px solid var(--olive);
  outline-offset: 1px;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-form .form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 16px;
  line-height: 1.45;
}

.modal-form .form-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.modal-form .form-required {
  color: var(--gold);
}

.modal-form .field-error {
  color: #8b2e2e;
  font-size: 12px;
  margin: -2px 0 12px;
  line-height: 1.35;
}

.modal-form .form-error {
  color: #8b2e2e;
  font-size: 13px;
  margin: 0 0 12px;
}

.modal-form .form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.modal-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.modal-success {
  color: var(--olive);
  font-weight: 500;
  text-align: center;
  padding: 12px 0 4px;
}

.modal-success__title {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}

.modal-success__body {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.modal-success__body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Catering page ── */
.page-hero {
  position: relative;
  min-height: clamp(380px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  animation: hero-zoom 18s ease-out forwards;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(12, 24, 18, 0.82) 0%,
      rgba(12, 24, 18, 0.55) 35%,
      rgba(12, 24, 18, 0.22) 65%,
      rgba(12, 24, 18, 0.12) 100%
    ),
    linear-gradient(
      to top,
      rgba(12, 24, 18, 0.55) 0%,
      rgba(12, 24, 18, 0.18) 40%,
      transparent 70%
    );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: min(560px, 100%);
  padding: clamp(48px, 7vw, 80px) 0 clamp(40px, 5vw, 56px);
  color: var(--white);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
  animation: hero-rise 0.9s ease-out both;
}

.page-hero__brand {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.1;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 12px;
}

.page-hero__badge {
  display: inline-block;
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 4px;
}

.page-hero__lead {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.92;
  margin: 0 0 24px;
  max-width: 42ch;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}

/* ── Catering event menu ── */
.catering-menu {
  background:
    linear-gradient(rgba(250, 248, 243, 0.97), rgba(250, 248, 243, 0.97)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  padding: var(--section-pad) 0;
  border-bottom: 1px solid rgba(30, 58, 47, 0.08);
}

.catering-menu__toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.catering-menu__toc a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 8px 14px;
  border: 1px solid rgba(30, 58, 47, 0.18);
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s, border-color 0.2s;
}

.catering-menu__toc a:hover {
  background: var(--white);
  border-color: rgba(30, 58, 47, 0.4);
}

.catering-menu__sheet {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(30, 58, 47, 0.07);
  padding: clamp(22px, 3vw, 40px);
}

.catering-menu__section {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.catering-menu__section:last-of-type {
  margin-bottom: 28px;
}

.catering-menu__section-title {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--olive);
}

.catering-menu__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
}

.catering-group__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.catering-group__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--forest);
  margin: 0;
  letter-spacing: 0.02em;
}

.catering-group__badge,
.catering-item__badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(74, 92, 58, 0.35);
  padding: 2px 8px;
}

.catering-group__note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 14px;
  line-height: 1.5;
}

.catering-group__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catering-item__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 4px;
}

.catering-item__name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0;
}

.catering-item__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 8px;
  line-height: 1.55;
  font-style: italic;
}

.catering-item__served {
  font-size: 12px;
  color: var(--text-muted);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

.catering-item__details {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.catering-item__details li {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 3px 0 3px 12px;
  position: relative;
}

.catering-item__details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--olive-light);
  transform: translateY(-50%);
}

.catering-item__detail-label {
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.03em;
}

.catering-item__pick {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.catering-menu__footer {
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 58, 47, 0.12);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  max-width: 62ch;
}

.catering-page {
  background: var(--parchment);
  padding: var(--section-pad) 0;
}

.catering-page__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.section-header--left {
  text-align: left;
  max-width: none;
  margin: 0 0 28px;
}

.section-lead--left {
  margin-inline: 0;
}

.catering-page__points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.catering-page__points li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
  border-bottom: 1px solid rgba(30, 58, 47, 0.1);
}

.catering-page__points li:last-child {
  border-bottom: none;
}

.catering-page__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive);
  transform: translateY(-50%);
}

.catering-page__contact h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 10px;
}

.catering-page__phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 8px;
}

.catering-page__phone:hover {
  color: var(--olive);
}

.catering-page__contact p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.catering-page__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.catering-page__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color 0.2s;
}

.catering-page__links a:hover {
  border-bottom-color: rgba(30, 58, 47, 0.35);
}

.catering-panel {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 58, 47, 0.06);
}

.catering-panel__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 8px;
}

.catering-panel__lead {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.55;
}

.catering-form {
  position: relative;
}

.catering-success {
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__media,
  .page-hero__content {
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero__visual {
    order: -1;
    min-height: clamp(280px, 46vw, 420px);
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .hero__media {
    object-position: 42% 34%;
  }

  .hero__panel {
    justify-content: flex-start;
    padding: clamp(40px, 7vw, 56px) clamp(28px, 5vw, 48px) clamp(48px, 8vw, 64px);
  }

  .hero__panel::after {
    display: none;
  }

  .hero__content {
    max-width: 36rem;
    margin-inline: auto;
  }

  .hero__brand {
    font-size: clamp(30px, 6.5vw, 42px);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(24px, 4.5vw, 32px);
  }

  .hero__lead {
    max-width: 40ch;
    margin-bottom: 26px;
  }

  .catering-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .catering-banner__title {
    font-size: clamp(1.6rem, 7.2vw, 2.35rem);
    letter-spacing: 0.04em;
    max-width: 14ch;
  }

  .catering-banner__lead {
    font-size: clamp(1.05rem, 3.8vw, 1.3rem);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map {
    aspect-ratio: 16 / 7;
    max-height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(1140px, 100% - 32px);
    --section-pad: clamp(56px, 11vw, 80px);
  }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 8px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(30, 58, 47, 0.06);
  }

  .site-nav a::after { display: none; }

  .site-nav a:last-child {
    border-bottom: none;
  }

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

  .site-header { position: relative; }

  .site-header__inner { position: relative; }

  .logo-mark--header {
    width: 48px;
    height: 48px;
  }

  .hero__panel {
    padding: clamp(36px, 8vw, 48px) clamp(24px, 6vw, 36px) clamp(44px, 9vw, 56px);
  }

  .hero__brand {
    font-size: clamp(28px, 8vw, 36px);
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .challenge__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title--left {
    text-align: left;
  }

  .challenge__copy > p {
    max-width: none;
  }

  .challenge__photo {
    aspect-ratio: 3 / 2;
  }

  .reviews__actions .btn {
    min-width: 0;
    flex: 1 1 160px;
  }

  .page-hero {
    min-height: clamp(340px, 58vh, 460px);
  }

  .page-hero__content {
    max-width: 100%;
    padding: 36px 0 44px;
  }

  .catering-page__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .catering-menu__groups {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-map {
    aspect-ratio: 16 / 9;
    max-height: none;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-map {
    margin-top: 28px;
    aspect-ratio: 16 / 11;
  }

  .site-footer__bottom {
    padding: 18px 0 22px;
  }

  .top-bar__divider { display: none; }

  .brand__tagline {
    display: none;
  }

  .modal-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero__title br {
    display: none;
  }

  .hero__visual {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

}
