:root {
  color-scheme: light;
  --paper: #f2eadb;
  --paper-light: #fffaf0;
  --paper-deep: #e4d5bb;
  --ink: #3b1819;
  --ink-soft: #644b3f;
  --burgundy: #50171d;
  --burgundy-dark: #2d0e11;
  --gold: #b78a4a;
  --gold-soft: #d9bf86;
  --line: rgba(183, 138, 74, 0.38);
  --line-strong: rgba(126, 83, 34, 0.54);
  --shadow: 0 24px 70px rgba(48, 22, 10, 0.16);
  --serif: Georgia, "Times New Roman", Times, serif;
  --script: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.9), transparent 28rem),
    linear-gradient(90deg, rgba(80, 23, 29, 0.035), transparent 18%, transparent 82%, rgba(80, 23, 29, 0.035)),
    repeating-linear-gradient(0deg, rgba(70, 42, 22, 0.026) 0 1px, transparent 1px 7px),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.52;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: min(20vw, 18rem);
  pointer-events: none;
  opacity: 0.075;
  filter: sepia(0.4) saturate(0.75);
}

body::before {
  left: 0;
  background:
    linear-gradient(90deg, rgba(242, 234, 219, 0.96), rgba(242, 234, 219, 0.55), transparent),
    url("assets/menu-2-reference.png") left 8rem / 150% auto no-repeat;
}

body::after {
  right: 0;
  background:
    linear-gradient(270deg, rgba(242, 234, 219, 0.96), rgba(242, 234, 219, 0.55), transparent),
    url("assets/gallery-gateau-marcel.jpg") center / cover no-repeat;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 15px 45px rgba(60, 28, 11, 0.1);
}

.header-banner {
  width: 100%;
  height: clamp(8.5rem, 18vw, 16rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(183, 138, 74, 0.58);
  background: #120e0d;
}

.header-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
}

.nav-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 5rem);
  padding: 1rem clamp(1rem, 4vw, 4.2rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(243, 234, 219, 0.94)),
    var(--paper-light);
}

.nav-cluster a {
  position: relative;
  padding: 0.5rem 0;
  color: #3e1719;
  font-family: "Bodoni 72", Didot, var(--serif);
  font-size: clamp(0.78rem, 0.88vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cluster a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.08rem;
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 180ms ease, opacity 180ms ease;
  opacity: 0.48;
}

.nav-cluster a:hover::after,
.nav-cluster a:focus-visible::after {
  width: 100%;
  opacity: 1;
}

main {
  width: 100%;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(14rem, 0.82fr) minmax(24rem, 1.18fr) minmax(16rem, 0.9fr);
  max-width: 1500px;
  min-height: clamp(31rem, 47vw, 43rem);
  margin: 0 auto;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.98) 50%, rgba(255, 250, 240, 0.84)),
    var(--paper-light);
  box-shadow: var(--shadow);
}

.hero-shell::before,
.section-panel::before,
.menu-showcase::before,
.about-section::before,
.contact-section::before,
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0.52rem;
  pointer-events: none;
  border: 1px solid rgba(183, 138, 74, 0.25);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(183, 138, 74, 0.12), transparent 10%, transparent 90%, rgba(183, 138, 74, 0.12)),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.78), transparent 20rem);
}

.hero-portrait,
.hero-dish {
  position: relative;
  z-index: 1;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-portrait::after,
.hero-dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), rgba(46, 14, 14, 0.18)),
    linear-gradient(90deg, transparent 58%, rgba(255, 250, 240, 0.76));
}

.hero-dish::after {
  background:
    radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.16), transparent 13rem),
    linear-gradient(270deg, transparent 52%, rgba(255, 250, 240, 0.86));
}

.hero-portrait img,
.hero-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.93) contrast(1.08) sepia(0.08);
}

.hero-portrait img {
  object-position: 57% center;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.4rem) clamp(1rem, 3vw, 3rem);
  text-align: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 8% 2rem auto;
  height: 11rem;
  background: url("assets/logo-scheel-schmidt-new.png") center / contain no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
}

.hero-logo {
  width: min(22rem, 78%);
  margin-bottom: 0.2rem;
  mix-blend-mode: multiply;
  opacity: 0.92;
}

.brand-subtitle,
.eyebrow,
.secondary-tagline {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.secondary-tagline {
  margin-top: 0.25rem;
  color: var(--burgundy);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

h1 {
  max-width: 12ch;
  margin: 1.45rem 0 0;
  color: var(--burgundy);
  font-size: clamp(2.7rem, 5.6vw, 4.95rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.thanks-page .quote-section {
  width: min(100%, 58rem);
}

.thanks-page h1 {
  max-width: none;
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.thanks-page p:not(.eyebrow) {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.script-line {
  margin: 0.05rem 0 0;
  color: #3f1719;
  font-family: var(--script);
  font-size: clamp(2.15rem, 5.1vw, 4.55rem);
  line-height: 1.04;
}

.hero-text {
  max-width: 34rem;
  margin: 0.9rem 0 1.15rem;
  color: #4b312a;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.45;
}

.primary-button,
.secondary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  touch-action: manipulation;
  padding: 0.8rem 1.7rem;
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  background: linear-gradient(180deg, #d8b978, #aa793a);
  color: #2a1110;
  box-shadow: 0 13px 30px rgba(112, 68, 24, 0.2);
}

.secondary-button {
  background: var(--burgundy);
  color: var(--paper-light);
  border-color: #713034;
}

.outline-button {
  background: transparent;
  color: var(--burgundy);
}

.primary-button:hover,
.secondary-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(61, 27, 12, 0.17);
}

.gold-sprig,
.ornament,
.section-heading span,
.menu-copy::after {
  content: "";
  display: block;
  width: 9rem;
  height: 1px;
  margin: 1rem auto 0.55rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-mini {
  display: grid;
  gap: 0.12rem;
  color: #51362b;
  font-size: 0.94rem;
}

.hero-mini strong {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 4.8rem);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.72);
}

.benefit-band article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  padding: 0.55rem clamp(0.5rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
}

.benefit-band article:last-child {
  border-right: 0;
}

.benefit-band h2,
.site-footer h2 {
  margin: 0 0 0.12rem;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.benefit-band p,
.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.benefit-icon,
.footer-icon {
  position: relative;
  display: inline-grid;
  width: 3.85rem;
  height: 3.85rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  place-items: center;
}

.benefit-icon::before,
.benefit-icon::after,
.footer-icon::before,
.footer-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.benefit-icon.wheat::before {
  width: 1.35rem;
  height: 1px;
  transform: rotate(-46deg);
}

.benefit-icon.wheat::after,
.benefit-icon.leaf::after {
  width: 0.76rem;
  height: 1.15rem;
  border: 1px solid var(--gold);
  border-radius: 80% 0 80% 0;
  background: transparent;
  transform: rotate(45deg);
}

.benefit-icon.fork::before {
  width: 1px;
  height: 1.65rem;
}

.benefit-icon.fork::after {
  width: 0.62rem;
  height: 0.95rem;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 40% 40%;
  background: transparent;
  transform: translateX(-0.46rem);
}

.section-panel,
.menu-showcase,
.menu-banner-section,
.about-section,
.quote-section,
.contact-section {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(2.2rem, 4.5vw, 4.4rem) clamp(1rem, 3.5vw, 3.2rem);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(243, 234, 219, 0.9)),
    var(--paper);
}

.menu-banner-section {
  padding: clamp(1rem, 2.5vw, 1.8rem);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.94), rgba(239, 228, 209, 0.92)),
    var(--paper);
}

.menu-banner-section img {
  width: 100%;
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 45px rgba(58, 27, 12, 0.12);
  filter: sepia(0.03) saturate(0.96) contrast(1.02);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) auto minmax(1rem, 1fr);
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.4rem;
  text-align: center;
}

.section-heading span {
  width: 100%;
  margin: 0;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.75vw, 1.36rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
}

.milestone-card {
  position: relative;
  min-height: clamp(14rem, 20vw, 18rem);
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.86);
  background: #2c1715;
  box-shadow: 0 10px 28px rgba(72, 31, 15, 0.12);
}

.milestone-card img,
.gallery-collage img,
.menu-poster-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.milestone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 8, 8, 0.04), rgba(22, 8, 8, 0.82)),
    linear-gradient(0deg, rgba(54, 15, 17, 0.26), transparent 45%);
}

.milestone-card > div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.15rem 0.8rem 1.2rem;
  color: var(--paper-light);
  text-align: center;
}

.milestone-card h3 {
  margin: 0.35rem 0 0.12rem;
  font-size: clamp(1.08rem, 1.65vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.milestone-card p {
  max-width: 13rem;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.92);
  font-family: var(--serif);
  font-size: 0.94rem;
  line-height: 1.25;
}

.milestone-card:hover img,
.gallery-collage figure:hover img,
.menu-poster-grid article:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.06);
}

.card-icon {
  position: relative;
  display: inline-block;
  width: 2.9rem;
  height: 2.3rem;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  border-color: rgba(255, 250, 240, 0.9);
}

.card-icon.rings::before,
.card-icon.rings::after {
  width: 1.45rem;
  height: 1.45rem;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-radius: 50%;
  bottom: 0;
}

.card-icon.rings::before {
  left: 0.25rem;
}

.card-icon.rings::after {
  right: 0.25rem;
}

.card-icon.cross::before {
  left: 50%;
  top: 0;
  width: 2px;
  height: 2.1rem;
  background: rgba(255, 250, 240, 0.9);
}

.card-icon.cross::after {
  left: 0.72rem;
  top: 0.7rem;
  width: 1.55rem;
  height: 2px;
  background: rgba(255, 250, 240, 0.9);
}

.card-icon.glasses::before,
.card-icon.glasses::after {
  top: 0.05rem;
  width: 1.05rem;
  height: 1.7rem;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-radius: 0 0 999px 999px;
}

.card-icon.glasses::before {
  left: 0.42rem;
}

.card-icon.glasses::after {
  right: 0.42rem;
}

.card-icon.cloche::before {
  left: 0.2rem;
  bottom: 0.45rem;
  width: 2.45rem;
  height: 1.15rem;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.card-icon.cloche::after {
  left: 0.1rem;
  bottom: 0.35rem;
  width: 2.7rem;
  height: 2px;
  background: rgba(255, 250, 240, 0.9);
}

.card-icon.cake::before {
  left: 0.4rem;
  bottom: 0.2rem;
  width: 2.1rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-top: 0;
}

.card-icon.cake::after {
  left: 0.52rem;
  bottom: 1.35rem;
  width: 1.9rem;
  height: 0.55rem;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(16rem, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
}

.menu-copy {
  padding: clamp(0.2rem, 2vw, 2rem);
  text-align: center;
}

.menu-copy h2,
.about-section h2,
.contact-section h2 {
  max-width: 11ch;
  margin: 0.55rem auto 0.75rem;
  color: var(--burgundy);
  font-size: clamp(2.25rem, 4.8vw, 4.55rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.menu-copy p:not(.eyebrow) {
  max-width: 23rem;
  margin: 0 auto 1.2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.menu-board {
  position: relative;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  padding: clamp(1rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(229, 216, 190, 0.86)),
    repeating-linear-gradient(-12deg, rgba(72, 49, 28, 0.035), rgba(72, 49, 28, 0.035) 1px, transparent 1px, transparent 11px);
  box-shadow: 0 24px 55px rgba(67, 30, 18, 0.1);
}

.menu-board > h3 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.menu-board > h3::after {
  content: "";
  display: block;
  width: 13rem;
  height: 1px;
  margin: 0.8rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.2rem);
}

.menu-poster-grid article {
  position: relative;
  min-height: clamp(25rem, 42vw, 43rem);
  overflow: hidden;
  border: 1px solid rgba(104, 78, 47, 0.32);
  background: var(--paper-deep);
  box-shadow: 0 12px 30px rgba(60, 29, 15, 0.1);
}

.menu-poster-grid img {
  object-position: center top;
  filter: sepia(0.08) saturate(0.86) contrast(1.02);
}

.menu-poster-grid span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.86);
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.2rem;
  place-items: center;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(11rem, 14.8vw, 15rem);
  gap: 0.6rem;
}

.gallery-collage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 250, 240, 0.95);
  outline: 1px solid var(--line);
  background: var(--paper-deep);
  box-shadow: 0 10px 26px rgba(78, 37, 17, 0.12);
}

.gallery-collage figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 18%, rgba(255, 246, 221, 0.12), transparent 9rem),
    linear-gradient(180deg, rgba(86, 37, 22, 0.02), rgba(76, 27, 22, 0.16));
  opacity: 0.75;
}

.gallery-collage .wide {
  grid-column: span 2;
}

.gallery-collage .tall {
  grid-row: span 2;
}

.gallery-collage img {
  filter: saturate(0.94) contrast(1.07) sepia(0.05);
}

.gallery-collage .face-focus img {
  object-position: 54% 18%;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.82)),
    url("assets/about-bread-bg.jpg") center / cover no-repeat,
    var(--paper);
}

.about-section::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: min(28rem, 48vw);
  height: min(13rem, 22vw);
  background: url("assets/logo-scheel-schmidt-new.png") center / contain no-repeat;
  opacity: 0.045;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-section figure {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--burgundy-dark);
}

.about-section figure::after {
  content: "OM OS";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding-bottom: 0.35rem;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
}

.about-section figure img {
  width: 100%;
  min-height: 33rem;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) sepia(0.05);
}

.about-section > div {
  position: relative;
  z-index: 1;
  padding: clamp(0.2rem, 2vw, 1rem);
}

.about-section h2,
.contact-section h2 {
  margin-right: 0;
  margin-left: 0;
}

.about-section p:not(.eyebrow),
.contact-section p {
  max-width: 44rem;
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.about-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.about-section li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink);
  font-family: var(--serif);
}

.about-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.78rem;
  height: 1px;
  background: var(--gold);
}

.quote-section {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255, 250, 240, 0.96), rgba(242, 234, 219, 0.92)),
    var(--paper);
}

.quote-section blockquote {
  max-width: 43rem;
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(2rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.18;
}

.quote-section .ornament {
  width: 12rem;
  margin: 1.3rem 0 1.5rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 240, 0.86);
}

.contact-form label {
  display: grid;
  gap: 0.34rem;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(183, 138, 74, 0.45);
  border-radius: 0;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font: 1rem var(--sans);
  min-height: 2.85rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-phone {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  gap: 0.65rem !important;
  align-items: flex-start;
  color: var(--ink-soft) !important;
  font-family: var(--sans) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.consent-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  accent-color: var(--burgundy);
}

.form-note {
  margin: 0.15rem 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.full-field {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(13rem, 1fr));
  gap: clamp(1rem, 2.4vw, 2.4rem);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.3rem) clamp(1rem, 3vw, 3rem);
  background:
    linear-gradient(90deg, #3b1114, #5a1d21 58%, #331013),
    var(--burgundy);
  color: var(--paper-light);
}

.site-footer article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
}

.site-footer h2 {
  color: var(--gold-soft);
  font-size: 0.98rem;
}

.site-footer p {
  color: rgba(255, 250, 240, 0.86);
}

.footer-icon {
  width: 3rem;
  height: 3rem;
  border-color: rgba(217, 191, 134, 0.65);
}

.footer-icon::before {
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: transparent;
}

.footer-icon::after {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-soft);
}

.footer-icon.calendar::before {
  border-radius: 2px;
}

.footer-icon.calendar::after {
  width: 1.15rem;
  height: 1px;
  border-radius: 0;
}

.footer-icon.heart::before {
  width: 1rem;
  height: 1rem;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  transform: rotate(-45deg);
}

.footer-icon.heart::after {
  display: none;
}

.footer-signature {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 46rem;
  margin: 0.6rem auto 0;
  color: var(--gold-soft) !important;
  font-family: var(--script);
  font-size: clamp(1.15rem, 2vw, 1.75rem) !important;
  line-height: 1.25;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    position: static;
  }

  .hero-shell {
    grid-template-columns: 0.78fr 1fr;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 27rem;
  }

  .hero-portrait {
    grid-column: 1;
    min-height: 22rem;
  }

  .hero-dish {
    grid-column: 2;
    min-height: 22rem;
  }

  .benefit-band,
  .milestone-grid,
  .menu-showcase,
  .about-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .benefit-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-band article:last-child {
    border-bottom: 0;
  }

  .milestone-grid {
    gap: 0.9rem;
  }

  .milestone-card {
    min-height: 18rem;
  }

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

  .gallery-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    display: none;
  }

  .header-banner {
    height: 8rem;
  }

  .header-banner img {
    min-width: 0;
    transform: none;
  }

  .nav-cluster {
    width: 100%;
    gap: 0.9rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0.85rem 1rem;
    scrollbar-width: none;
  }

  .nav-cluster::-webkit-scrollbar {
    display: none;
  }

  .nav-cluster a {
    font-size: 0.78rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    grid-column: auto;
    min-height: auto;
    padding: 2rem 1.05rem;
  }

  .hero-portrait,
  .hero-dish {
    min-height: 22rem;
  }

  .hero-portrait img {
    object-position: 56% center;
  }

  .hero-dish {
    display: none;
  }

  .hero-logo {
    width: min(19rem, 88%);
  }

  .benefit-band {
    padding: 1rem;
  }

  .benefit-band article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .section-panel,
  .menu-showcase,
  .about-section,
  .quote-section,
  .contact-section {
    padding: 2rem 1rem;
  }

  .menu-poster-grid article {
    min-height: 30rem;
  }

  .about-section ul,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-collage {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 12rem;
  }

  .gallery-collage .wide,
  .gallery-collage .tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-section figure img {
    min-height: 24rem;
  }

  .footer-signature {
    justify-self: start;
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
