:root {
  --red: #8e0b05;
  --red-dark: #5f0804;
  --red-black: #260603;
  --saffron: #f4b63e;
  --saffron-light: #ffd987;
  --cream: #fff7ea;
  --paper: #f6eddf;
  --ink: #2c1a12;
  --muted: #765f52;
  --white: #fff;
  --line: rgba(44, 26, 18, 0.16);
  --shadow: 0 24px 70px rgba(66, 16, 8, 0.15);
  --display: Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  --page: min(1280px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 3%, rgba(244, 182, 62, 0.18), transparent 25rem),
    var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 99px;
  color: var(--white);
  background: var(--red-black);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.event-ribbon {
  min-height: 42px;
  padding: 7px max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--cream);
  background: var(--red-dark);
  font-size: 13px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.event-ribbon p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
}

.event-ribbon a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.ribbon-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 6px rgba(244, 182, 62, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 86px;
  padding: 8px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 190px 1fr 170px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 234, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  width: 150px;
}

.brand img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: grid;
  text-decoration: none;
  line-height: 1.25;
}

.header-call span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 15px;
}

.nav-toggle {
  display: none;
}

.hero {
  width: var(--page);
  min-height: min(760px, calc(100svh - 128px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 136px) 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--saffron);
}

.hero h1,
.section-heading h2,
.event-heading h2,
.menu-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6.25vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h1 em,
h2 em {
  color: var(--red);
  font-weight: 400;
}

.hero-intro {
  max-width: 640px;
  margin: 30px 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 25px rgba(142, 11, 5, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 30px rgba(142, 11, 5, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.button-cream {
  color: var(--red-black);
  background: var(--cream);
}

.hero-proof {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero-proof p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.hero-proof strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 48% 48% 12px 12px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  transition: transform 700ms ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.025);
}

.hero-stamp {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 138px;
  height: 138px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(44, 26, 18, 0.18);
  border-radius: 50%;
  text-align: center;
  color: var(--red);
  background: var(--saffron);
  transform: rotate(8deg);
  box-shadow: 0 16px 32px rgba(66, 16, 8, 0.18);
}

.hero-stamp span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
  line-height: 0.9;
}

.floating-note {
  position: absolute;
  left: -56px;
  bottom: 38px;
  min-width: 228px;
  margin: 0;
  padding: 18px 22px;
  display: grid;
  border-radius: 12px;
  color: var(--cream);
  background: var(--red-black);
  box-shadow: 0 16px 40px rgba(38, 6, 3, 0.2);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}

.floating-note span {
  margin-bottom: 5px;
  color: var(--saffron);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-section {
  position: relative;
  overflow: clip;
  padding: clamp(86px, 10vw, 150px) max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 0.95fr 1.25fr;
  gap: clamp(40px, 6vw, 90px);
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 182, 62, 0.24), transparent 26rem),
    linear-gradient(135deg, var(--red-dark), var(--red-black));
}

.event-section::after {
  content: "03";
  position: absolute;
  right: -4vw;
  bottom: -12vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: 36vw;
  line-height: 1;
}

.event-heading,
.event-facts,
.festival-menu-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.event-heading h2 {
  font-size: clamp(56px, 6vw, 88px);
}

.event-heading h2 em {
  color: var(--saffron);
}

.event-heading > p:last-child {
  max-width: 420px;
  color: rgba(255, 247, 234, 0.72);
}

.event-facts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.event-facts article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 247, 234, 0.18);
}

.event-facts span,
.card-kicker,
.package-label,
.form-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--saffron);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-facts strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.15;
}

.event-facts p {
  margin: 7px 0 0;
  color: rgba(255, 247, 234, 0.7);
}

.festival-menu-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 26px 80px rgba(20, 2, 0, 0.25);
}

.festival-menu-card .card-kicker {
  color: var(--red);
}

.festival-menu-list {
  display: grid;
}

.festival-menu-list article {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.festival-menu-list article:last-child {
  border-bottom: 0;
}

.festival-menu-list h3,
.festival-menu-list p {
  margin: 0;
}

.festival-menu-list h3 {
  font-family: var(--display);
  font-size: 20px;
}

.festival-menu-list h3 small {
  color: var(--red);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.festival-menu-list p {
  color: var(--muted);
  font-size: 12px;
}

.festival-menu-list p span {
  color: var(--red);
  font-weight: 800;
}

.festival-menu-list article > strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 24px;
}

.festival-menu-list article > strong small {
  font-family: var(--body);
  font-size: 9px;
  text-transform: uppercase;
}

.festival-feature {
  margin: 4px -16px;
  padding: 16px !important;
  border: 0 !important;
  border-radius: 14px;
  background: rgba(244, 182, 62, 0.18);
}

.services,
.catering-section,
.gallery-section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 160px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(48px, 5.6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-wide {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 22px;
}

.service-card {
  min-width: 0;
  min-height: 390px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.35);
}

.service-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 20px;
}

.service-card h3 {
  margin: auto 0 12px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.service-card p {
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-card-image {
  padding: 0;
  overflow: hidden;
  border: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-section {
  padding-top: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 14px;
}

.package-card {
  min-width: 0;
  min-height: 400px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.package-card-featured {
  color: var(--cream);
  background: var(--red);
  transform: translateY(-14px);
  box-shadow: 0 24px 60px rgba(142, 11, 5, 0.22);
}

.package-card-featured:hover {
  transform: translateY(-20px);
}

.package-card h3 {
  margin: 24px 0 6px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.package-price {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.package-card-featured .package-price,
.package-card-featured .package-label {
  color: var(--saffron);
}

.package-card > p:not(.package-label, .package-price) {
  color: var(--muted);
}

.package-card-featured > p:not(.package-label, .package-price) {
  color: rgba(255, 247, 234, 0.76);
}

.package-card strong {
  margin-top: auto;
  font-size: 12px;
  text-transform: uppercase;
}

.package-note {
  max-width: 700px;
  margin: 36px auto 0;
  color: var(--muted);
  text-align: center;
}

.full-menu {
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(48px, 8vw, 120px);
  color: var(--cream);
  background: var(--red-black);
}

.menu-intro {
  align-self: start;
  position: sticky;
  top: 132px;
}

.menu-intro h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.menu-intro h2 em {
  color: var(--saffron);
}

.menu-intro > p:not(.eyebrow) {
  color: rgba(255, 247, 234, 0.7);
}

.menu-tabs {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-browser {
  min-width: 0;
}

.menu-tabs button {
  padding: 9px 14px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 99px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.menu-tabs button[aria-selected="true"] {
  border-color: var(--saffron);
  color: var(--red-black);
  background: var(--saffron);
}

.menu-panel {
  padding: clamp(28px, 4vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-panel:not([hidden]) {
  display: grid;
}

.menu-panel h3 {
  margin: 0 0 20px;
  color: var(--saffron);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.menu-panel h3:not(:first-child) {
  margin-top: 36px;
}

.menu-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 24px;
}

.menu-panel li {
  padding: 8px 0;
  break-inside: avoid;
  border-bottom: 1px solid rgba(255, 247, 234, 0.1);
  color: rgba(255, 247, 234, 0.84);
  font-size: 14px;
}

.advisory {
  grid-column: 2;
  color: rgba(255, 247, 234, 0.55);
  font-size: 12px;
}

.about-section {
  overflow: clip;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
}

.about-image {
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  min-width: 0;
  padding: clamp(72px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--saffron);
}

.about-copy p:not(.eyebrow) {
  max-width: 600px;
}

.gallery-section {
  padding-top: 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 330px 330px;
  gap: 16px;
}

.gallery-grid > img,
.gallery-quote {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.gallery-grid > img {
  min-width: 0;
  object-fit: cover;
}

.gallery-main {
  grid-row: span 2;
}

.gallery-quote {
  min-width: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.gallery-quote div {
  color: var(--red);
  letter-spacing: 0.2em;
}

.gallery-quote blockquote {
  margin: 20px 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.35;
}

.gallery-quote cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.gallery-quote-red {
  color: var(--cream);
  background: var(--red);
}

.gallery-quote-red div {
  color: var(--saffron);
}

.gallery-quote-red cite {
  color: rgba(255, 247, 234, 0.7);
}

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

.contact-section {
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(60px, 8vw, 120px);
  color: var(--cream);
  background:
    linear-gradient(rgba(38, 6, 3, 0.92), rgba(38, 6, 3, 0.96)),
    url("/assets/be-bold-food-hero.png") center / cover;
}

.contact-copy h2 em {
  color: var(--saffron);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 247, 234, 0.72);
}

.contact-list {
  margin: 50px 0 36px;
  display: grid;
  gap: 16px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding-bottom: 16px;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 247, 234, 0.15);
  text-decoration: none;
}

.contact-list span {
  color: var(--saffron);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.social-links a {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 800;
}

.contact-form {
  padding: clamp(30px, 4vw, 48px);
  align-self: center;
  border-radius: 24px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.form-kicker {
  color: var(--red);
}

.contact-form label {
  margin-bottom: 17px;
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  resize: vertical;
  font-size: 16px;
  font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--red);
}

.contact-form [aria-invalid="true"] {
  border-color: #bd1e1e;
}

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

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.privacy-section {
  width: var(--page);
  margin: 0 auto;
  padding: 36px 0 100px;
}

.privacy-section details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-section summary {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--display);
  font-size: 30px;
  list-style: none;
}

.privacy-section summary::-webkit-details-marker {
  display: none;
}

.privacy-section details[open] summary span:last-child {
  transform: rotate(45deg);
}

.privacy-copy {
  max-width: 850px;
  padding: 0 0 36px;
  color: var(--muted);
}

.privacy-copy h3 {
  margin: 28px 0 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
}

.site-footer {
  padding: 64px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.8fr;
  gap: 60px;
  color: var(--cream);
  background: #140302;
}

.site-footer img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2));
}

.site-footer p {
  color: rgba(255, 247, 234, 0.55);
  font-size: 13px;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer a {
  text-decoration: none;
  font-size: 14px;
}

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

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 150px 1fr 160px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
  }

  .hero-stamp {
    right: 0;
  }

  .event-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .festival-menu-card {
    grid-column: span 2;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card-featured,
  .package-card-featured:hover {
    transform: none;
  }

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

  .menu-intro {
    position: static;
    max-width: 760px;
  }

  .advisory {
    grid-column: 1;
  }
}

@media (max-width: 800px) {
  :root {
    --page: min(100% - 32px, 680px);
  }

  html {
    scroll-padding-top: 90px;
  }

  .event-ribbon {
    justify-content: center;
    text-align: center;
  }

  .event-ribbon p span:not(.ribbon-pulse),
  .event-ribbon a {
    display: none;
  }

  .site-header {
    min-height: 76px;
    padding: 6px 18px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 130px;
  }

  .brand img {
    height: 62px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--cream);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    padding: 28px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 20px 40px rgba(66, 16, 8, 0.12);
  }

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

  .site-nav a {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 90px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    width: min(90%, 520px);
    margin: 0 auto;
  }

  .hero-stamp {
    right: -12px;
  }

  .floating-note {
    left: -12px;
    bottom: 22px;
  }

  .event-section {
    grid-template-columns: 1fr;
  }

  .festival-menu-card {
    grid-column: 1;
  }

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

  .service-card {
    min-height: 300px;
  }

  .service-card-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

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

  .package-card {
    min-height: 330px;
  }

  .menu-panel:not([hidden]) {
    grid-template-columns: 1fr;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
  }

  .gallery-main {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 1 / 0.8;
  }

  .gallery-grid > img:not(.gallery-main) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .gallery-quote {
    min-height: 300px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .event-ribbon {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 49px;
  }

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

  .hero-proof p {
    grid-template-columns: 50px 1fr;
    align-items: center;
  }

  .floating-note {
    display: none;
  }

  .hero-stamp {
    width: 108px;
    height: 108px;
  }

  .hero-stamp strong {
    font-size: 23px;
  }

  .festival-menu-list article {
    align-items: start;
  }

  .festival-menu-list article > strong {
    font-size: 20px;
  }

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

  .menu-panel {
    padding: 24px;
  }

  .menu-panel ul {
    columns: 1;
  }

  .about-copy {
    padding: 70px 24px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid > * {
    margin-bottom: 14px;
  }

  .gallery-main,
  .gallery-grid > img:not(.gallery-main) {
    aspect-ratio: 1 / 1;
  }

  .contact-list strong {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

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

  .footer-contact {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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