:root {
  --cream: #f4efe7;
  --cream-2: #eee6da;
  --ink: #12110f;
  --muted: #6d665d;
  --line: rgba(18, 17, 15, 0.28);
  --wine: #5b1f1a;
  --brass: #a36d35;
  --paper-shadow: 0 22px 80px rgba(24, 20, 16, 0.18);
  --serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.42), transparent 28rem),
    repeating-linear-gradient(90deg, rgba(18, 17, 15, 0.035) 0 1px, transparent 1px 5px),
    var(--cream-2);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-shell,
.menu-board,
.contact-board {
  width: min(100% - 28px, 980px);
  margin-inline: auto;
}

.home-shell {
  position: relative;
  margin-top: clamp(18px, 7vw, 96px);
}

.site-nav {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: clamp(18px, 3vw, 32px);
  width: min(calc(100% - 46px), 920px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-header .site-nav {
  position: static;
  transform: none;
  width: min(100% - 28px, 980px);
  margin: 22px auto 0;
  padding: 14px 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.86);
}

.nav-action,
.nav-links a,
.footer-grid a,
.specials-cell a {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
}

.nav-links a,
.nav-action {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.menu-header .nav-links a,
.menu-header .nav-action {
  text-shadow: none;
}

.nav-links a[aria-current="page"] {
  border-bottom: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

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

.hero-panel {
  position: relative;
  min-height: clamp(530px, 78vw, 710px);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--paper-shadow);
}

.hero-panel img {
  width: 100%;
  height: clamp(530px, 78vw, 710px);
  object-fit: cover;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.04) 44%, rgba(0, 0, 0, 0.34));
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: clamp(72px, 12vw, 128px) 22px 40px;
  color: #fff;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-label {
  color: var(--muted);
}

.hero-overlay h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 13vw, 148px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.05;
}

.month-strip {
  padding: clamp(18px, 3vw, 26px);
  border-inline: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
  text-transform: uppercase;
}

.month-strip p,
.month-strip h2 {
  margin: 0;
}

.month-strip p {
  font-size: 16px;
  letter-spacing: 0.28em;
}

.month-strip h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.feature-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 0 34px;
  border-inline: 1px solid var(--line);
  background: var(--cream);
}

.feature-triptych article {
  min-width: 0;
  text-align: center;
}

.feature-triptych img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
}

.feature-triptych h3 {
  margin: 14px 10px 2px;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1;
}

.feature-triptych p,
.how-copy li,
.footer-grid p,
.contact-title p,
.info-panel p,
.newsletter-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.feature-triptych p {
  margin: 0 12px;
}

.how-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--cream);
}

.how-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 70px) clamp(22px, 5vw, 54px);
  text-align: center;
}

.how-copy h2,
.contact-title h1,
.newsletter-panel h2 {
  margin: 12px 0 28px;
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.how-copy ol {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.how-copy strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.home-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, 1fr);
}

.home-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--cream);
}

.footer-brand {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  text-transform: uppercase;
}

.footer-grid p:last-child {
  margin: 2px 0 0;
}

.footer-grid a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-board {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.28fr 1fr;
  margin-block: 18px 48px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--paper-shadow);
}

.board-cell {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.96);
}

.menu-intro {
  display: grid;
  align-content: start;
  gap: 24px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px) clamp(22px, 4vw, 40px);
}

.menu-intro h1,
.thank-cell h2,
.eat-well h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8.6vw, 94px);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
}

.menu-intro p,
.menu-intro small,
.eat-well p,
.specials-cell p,
.qr-cell,
.cheese-cell p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.menu-intro small {
  display: block;
  max-width: 220px;
}

.menu-intro span,
.eat-well span {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.stamp {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.stamp.small {
  width: 76px;
  height: 76px;
  font-size: 17px;
}

.feature-stack,
.cheese-cell,
.soup-cell,
.mains-cell,
.salmon-cell,
.dessert-cell,
.thank-cell,
.specials-cell,
.qr-cell,
.eat-well {
  padding: 24px;
}

.feature-stack {
  grid-column: span 1;
}

.feature-stack img,
.mini-item img,
.salmon-cell img,
.dessert-grid img,
.cheese-cell img,
.chef-image img,
.contact-image img {
  width: 100%;
  object-fit: cover;
}

.feature-stack img {
  aspect-ratio: 1.12 / 0.78;
  margin-top: 16px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.price-row h2,
.price-row h3,
.cheese-cell h2,
.specials-cell h2,
.info-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.price-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-row strong {
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.cheese-cell {
  grid-column: span 2;
}

.cheese-cell img {
  aspect-ratio: 1.18 / 1;
  margin: 20px 0 10px;
}

.soup-cell {
  grid-column: span 1;
}

.mini-item + .mini-item {
  margin-top: 22px;
}

.mini-item img {
  aspect-ratio: 1.55 / 0.82;
}

.eat-well {
  display: grid;
  align-content: center;
  gap: 26px;
}

.mains-cell {
  grid-column: span 2;
}

.salmon-cell {
  grid-column: span 1;
}

.salmon-cell img {
  aspect-ratio: 1.55 / 0.72;
}

.dessert-cell {
  grid-column: span 3;
}

.dessert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}

.dessert-grid img {
  aspect-ratio: 1.55 / 0.72;
}

.thank-cell,
.specials-cell,
.qr-cell {
  display: grid;
  align-content: center;
  min-height: 190px;
}

.thank-cell h2 {
  font-size: clamp(42px, 6vw, 62px);
}

.chef-image {
  grid-column: span 1;
}

.chef-image img {
  height: 100%;
  min-height: 190px;
  filter: grayscale(1);
}

.specials-cell {
  grid-column: span 2;
}

.specials-cell a {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qr-cell {
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.qr-art {
  display: grid;
  grid-template-columns: repeat(5, 12px);
  gap: 4px;
  margin: 12px 0;
}

.qr-art span {
  width: 12px;
  height: 12px;
  background: var(--ink);
}

.qr-art span:nth-child(2n),
.qr-art span:nth-child(7),
.qr-art span:nth-child(14),
.qr-art span:nth-child(22) {
  background: transparent;
}

.contact-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-block: 18px 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--paper-shadow);
}

.contact-title,
.info-panel,
.form-panel,
.newsletter-panel {
  padding: clamp(24px, 4vw, 46px);
}

.contact-title h1 {
  font-size: clamp(58px, 8.6vw, 94px);
  line-height: 0.82;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
}

.social-row svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-image {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-image img {
  height: 100%;
  min-height: 420px;
}

.hours-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 800;
  text-transform: uppercase;
}

.belle-form,
.newsletter-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.belle-form label,
.newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  font: inherit;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  min-height: 48px;
  border: 1px solid var(--ink);
  color: var(--cream);
  background: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-shell,
  .menu-board,
  .contact-board {
    width: min(100% - 18px, 640px);
  }

  .site-nav {
    color: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(78vw, 300px);
    padding: 18px;
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--cream);
    box-shadow: 0 16px 40px rgba(18, 17, 15, 0.18);
  }

  .nav-links.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-links a,
  .nav-action {
    text-shadow: none;
  }

  .hero-panel,
  .hero-panel img {
    height: auto;
    min-height: 560px;
  }

  .hero-panel img {
    object-position: center;
  }

  .feature-triptych,
  .how-section,
  .contact-board {
    grid-template-columns: 1fr;
  }

  .feature-triptych {
    gap: 0;
    padding-bottom: 0;
  }

  .feature-triptych article {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
  }

  .feature-triptych img {
    aspect-ratio: 1.2 / 0.78;
  }

  .home-mosaic img {
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-board {
    grid-template-columns: 1fr 1fr;
  }

  .menu-intro,
  .dessert-cell,
  .mains-cell,
  .cheese-cell {
    grid-column: 1 / -1;
  }

  .eat-well,
  .soup-cell,
  .salmon-cell,
  .thank-cell,
  .chef-image,
  .specials-cell,
  .qr-cell {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .home-shell {
    margin-top: 9px;
  }

  .site-nav {
    width: calc(100% - 36px);
    top: 16px;
    letter-spacing: 0.12em;
  }

  .menu-header .site-nav {
    width: calc(100% - 18px);
    padding: 12px;
  }

  .nav-action {
    max-width: 142px;
    line-height: 1.2;
  }

  .hero-overlay {
    padding-top: 108px;
  }

  .hero-overlay h1 {
    font-size: clamp(58px, 23vw, 92px);
  }

  .hero-copy {
    font-size: 22px;
  }

  .month-strip p {
    font-size: 12px;
  }

  .feature-triptych,
  .home-mosaic,
  .menu-board,
  .dessert-grid {
    grid-template-columns: 1fr;
  }

  .home-mosaic img {
    min-height: 210px;
  }

  .menu-intro,
  .feature-stack,
  .cheese-cell,
  .soup-cell,
  .eat-well,
  .mains-cell,
  .salmon-cell,
  .dessert-cell,
  .thank-cell,
  .specials-cell,
  .qr-cell,
  .chef-image {
    grid-column: 1 / -1;
  }

  .price-row {
    align-items: start;
  }

  .contact-image img {
    min-height: 310px;
  }
}
