@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/oswald-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Lobster Two";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lobster-two-regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Lobster Two";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lobster-two-bold-latin.woff2") format("woff2");
}

:root {
  --navy: #082f45;
  --navy-deep: #062638;
  --red: #a62b25;
  --red-dark: #81211e;
  --cream: #f1dfbd;
  --cream-light: #f8edda;
  --ink: #132a35;
  --white: #fff9ec;
  --shadow: rgba(8, 31, 43, 0.24);
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Oswald", "Arial Narrow", sans-serif;
  --script: "Lobster Two", cursive;
  --max: 1240px;
  --z-texture: 10;
  --z-header: 100;
  --z-menu: 200;
  --z-menu-control: 210;
  --z-skip-link: 300;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: var(--z-texture);
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    repeating-radial-gradient(circle at 30% 20%, transparent 0 1px, rgba(31, 24, 15, 0.14) 1px 2px),
    linear-gradient(95deg, transparent 48%, rgba(83, 50, 23, 0.06) 50%, transparent 52%);
  background-size: 8px 8px, 180px 100%;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 3px solid #f7c85c;
  outline-offset: 4px;
}

.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: fixed;
  z-index: var(--z-skip-link);
  top: 12px;
  left: 12px;
  padding: 0.65rem 1rem;
  color: var(--cream-light);
  background: var(--navy);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  height: 88px;
  color: var(--ink);
  background: rgba(246, 231, 204, 0.96);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 8px 20px rgba(11, 32, 42, 0.1);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  display: flex;
  width: min(calc(100% - 44px), var(--max));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-end;
}

.brand {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 0;
  width: 148px;
  text-decoration: none;
}

.brand-badge {
  display: block;
  width: 148px;
  filter: drop-shadow(0 6px 7px rgba(13, 39, 51, 0.22));
}

.brand-badge::before,
.brand-badge::after {
  display: none;
}

.brand img {
  width: 148px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.15rem);
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 1.95rem 0;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 1.45rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--cream-light);
  background: var(--red);
  border: 2px solid var(--red-dark);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--navy);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.nav-cta:hover,
.button:hover {
  background: #ba332b;
  box-shadow: 2px 2px 0 var(--navy);
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  place-items: center;
  background: var(--cream);
  border-bottom: 6px solid var(--red);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--navy);
  content: "";
}

.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/hero-food-v2.webp") center / cover no-repeat;
}

.hero-content {
  width: min(44vw, 610px);
  padding: 3.5rem 1.3rem 4rem;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255, 251, 238, 0.5);
}

.ornament {
  display: flex;
  margin-bottom: 0.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--navy);
  line-height: 1;
}

.ornament::before,
.ornament::after {
  width: min(28%, 140px);
  height: 2px;
  background: var(--red);
  content: "";
}

.ornament span {
  font-size: 0.85rem;
}

.ornament b {
  font-size: 1.55rem;
}

.opening-badge {
  display: flex;
  width: max-content;
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  margin: 0 auto 0.9rem;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  background: var(--red);
  border: 2px solid var(--navy);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--navy);
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-kicker,
.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0.15rem 0 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(6.2rem, 11.4vw, 10.8rem);
  font-style: normal;
  letter-spacing: 0.018em;
}

.hero h1 em {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.2vw, 5rem);
  font-style: normal;
  letter-spacing: 0.04em;
}

.hero-copy {
  margin: 1rem 0 1.4rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 700;
}

.button-primary {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  text-shadow: none;
}

.fresh-seal {
  position: absolute;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: 4rem;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  color: var(--cream-light);
  background: var(--navy);
  border: 4px solid var(--cream-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--navy), 6px 7px 0 rgba(128, 32, 29, 0.7);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.section {
  position: relative;
  padding: 3.8rem 0 4.8rem;
}

.section-inner,
.story-inner,
.location-inner,
.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.classics {
  color: var(--cream-light);
  background: var(--navy-deep);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px),
    linear-gradient(105deg, transparent 45%, rgba(255, 255, 255, 0.025) 50%, transparent 55%);
  background-size: 7px 7px, 320px 100%;
}

.script-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

.script-heading > span {
  width: min(25%, 240px);
  height: 3px;
  background: var(--cream);
}

.script-heading h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--script);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.section-intro {
  margin: 0.8rem auto 2.2rem;
  color: rgba(255, 249, 236, 0.78);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 1.05rem 1rem 1.25rem;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: rgba(7, 39, 58, 0.74);
  border: 2px solid var(--cream);
  box-shadow: inset 0 0 0 4px rgba(6, 38, 56, 0.9), 5px 6px 0 rgba(3, 20, 30, 0.65);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.card-star {
  color: var(--cream);
  font-size: 0.85rem;
}

.product-card h3 {
  min-height: 2.2em;
  margin: 0.1rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(241, 223, 189, 0.3);
}

.product-card p {
  min-height: 3.4em;
  margin: 0.9rem 0 0.85rem;
  color: rgba(255, 249, 236, 0.8);
  font-size: 0.93rem;
  line-height: 1.35;
  text-align: center;
}

.product-card a {
  margin-top: auto;
  padding: 0.35rem 0.85rem;
  color: var(--cream-light);
  background: var(--red);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 140ms ease, transform 140ms ease;
}

.product-card a:hover {
  background: #c23a31;
  transform: translateY(-2px);
}

.story-section {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: var(--cream-light);
  background: var(--red-dark);
  border-top: 5px solid var(--cream);
  border-bottom: 5px solid var(--navy);
  isolation: isolate;
}

.story-rays {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../images/rays-navy.webp") 66% 56% / cover no-repeat;
  opacity: 0.24;
  mix-blend-mode: multiply;
}

.story-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(126, 29, 27, 0.96) 0 48%, rgba(126, 29, 27, 0.45) 73%, rgba(126, 29, 27, 0.86));
  content: "";
}

.story-inner {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: 5rem;
}

.story-copy {
  max-width: 650px;
  padding: 4.5rem 0;
}

.story-copy .eyebrow {
  color: var(--cream);
}

.story-copy h2 {
  margin: 0.5rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}

.story-copy h2 span {
  color: var(--cream);
  font-family: var(--script);
  font-size: 0.7em;
  text-transform: none;
}

.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 249, 236, 0.84);
}

.text-link {
  display: inline-flex;
  margin-top: 0.6rem;
  gap: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-stamp {
  display: grid;
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 1;
  place-content: center;
  justify-self: center;
  color: var(--navy);
  background: var(--cream);
  border: 8px double var(--navy);
  border-radius: 50%;
  box-shadow: 10px 12px 0 rgba(5, 33, 48, 0.6);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.story-stamp strong {
  margin: 0.35rem 0;
  color: var(--red);
  font-size: 0.75em;
}

.location-section {
  position: relative;
  overflow: hidden;
  color: var(--cream-light);
  background: var(--red);
}

.location-section::before {
  position: absolute;
  inset: 0;
  background: url("../images/brush-cream.webp") 20% 30% / 850px auto no-repeat;
  content: "";
  opacity: 0.045;
}

.location-inner {
  position: relative;
  display: grid;
  min-height: 510px;
  padding: 4rem 0 0;
  grid-template-columns: 0.9fr 1.15fr 0.85fr;
  align-items: end;
  gap: 1.5rem;
}

.location-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 4.2rem;
  align-self: center;
}

.location-pin {
  position: relative;
  width: 46px;
  height: 58px;
  margin: 0 0 0.8rem 0.4rem;
  color: var(--red);
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 50% 50% 50% 0;
  font-size: 1rem;
  line-height: 42px;
  text-align: center;
  transform: rotate(-45deg);
}

.location-pin::first-letter {
  transform: rotate(45deg);
}

.location-copy .eyebrow {
  color: var(--cream);
}

.location-copy h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.85;
  text-transform: uppercase;
}

.location-copy > p:not(.eyebrow, .location-pin) {
  max-width: 390px;
  color: rgba(255, 249, 236, 0.85);
}

.button-cream {
  margin-top: 0.65rem;
  color: var(--ink);
  background: var(--cream-light);
  border-color: var(--cream);
}

.button-cream:hover {
  color: var(--cream-light);
  background: var(--navy);
}

.skyline-wrap {
  position: absolute;
  z-index: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin: 0;
  opacity: 0.68;
  pointer-events: none;
  transform: translateX(-50%);
}

.skyline-wrap img {
  width: 100%;
  transform: translateY(4.3%);
}

.mascot-card {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-bottom: -1.5rem;
  grid-column: 3;
}

.mascot-card img {
  width: min(100%, 390px);
  margin-left: auto;
  border: 5px solid var(--cream);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 0 0 5px var(--navy), -8px 0 0 rgba(102, 24, 23, 0.55);
}

.mascot-card p {
  position: absolute;
  right: 0;
  bottom: 2.1rem;
  left: 0;
  width: 82%;
  margin: 0 auto;
  padding: 0.55rem 0.65rem;
  color: var(--navy);
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--navy);
  text-align: center;
  transform: rotate(-2deg);
}

.mascot-card p strong,
.mascot-card p span {
  display: block;
}

.mascot-card p strong {
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.mascot-card p span {
  font-size: 0.8rem;
}

.site-footer {
  color: var(--cream);
  background: var(--navy-deep);
}

.checker {
  height: 26px;
  background:
    conic-gradient(from 90deg at 1px 1px, var(--cream) 90deg, var(--navy) 0) 0 0 / 26px 26px;
  border-top: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
}

.footer-inner {
  display: grid;
  min-height: 150px;
  padding: 2rem 0;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-inner > img {
  width: 132px;
}

.footer-inner p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner p span {
  color: var(--red);
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.3rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-inner nav a[aria-current="page"] {
  color: var(--white);
  text-decoration-color: var(--red);
}

.footer-inner nav a {
  display: inline-flex;
  min-height: 44px;
  padding-block: 0.55rem;
  align-items: center;
}

h1,
h2,
h3,
p,
address,
a {
  overflow-wrap: break-word;
}

.legal-page {
  min-height: calc(100vh - 88px);
  background: var(--cream);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  color: var(--cream-light);
  background: var(--navy-deep);
  border-bottom: 6px solid var(--red);
  isolation: isolate;
}

.legal-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("../images/rays-navy.webp") 68% 48% / cover no-repeat;
  content: "";
  opacity: 0.2;
}

.legal-hero::after {
  position: absolute;
  z-index: -1;
  top: clamp(2rem, 6vw, 4.8rem);
  right: clamp(1rem, 7vw, 6rem);
  width: clamp(80px, 10vw, 132px);
  aspect-ratio: 1;
  background: var(--red);
  border: 4px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--navy), 6px 7px 0 rgba(3, 20, 30, 0.65);
  content: "★";
  color: var(--cream-light);
  display: grid;
  place-items: center;
  font-size: clamp(2rem, 4vw, 3.5rem);
  transform: rotate(7deg);
}

.legal-hero-inner,
.legal-layout {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.legal-hero-inner {
  padding: clamp(3.8rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.legal-kicker {
  margin: 0 0 0.45rem;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.84;
  text-transform: uppercase;
  text-wrap: balance;
}

.legal-hero-copy {
  max-width: 48ch;
  margin: 1.15rem 0 0;
  color: rgba(255, 249, 236, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-wrap: pretty;
}

.legal-section {
  padding: clamp(3.2rem, 7vw, 6.5rem) 0;
}

.legal-layout {
  display: block;
}

.legal-notice {
  position: sticky;
  top: 116px;
  padding: 1.15rem;
  color: var(--cream-light);
  background: var(--red);
  border: 3px solid var(--navy);
  box-shadow: 6px 7px 0 var(--navy);
  transform: rotate(-1.5deg);
}

.legal-notice strong {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-notice p {
  margin: 0.45rem 0 0;
  line-height: 1.4;
}

.legal-content {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-content section + section {
  margin-top: 2.35rem;
  padding-top: 2.35rem;
  border-top: 2px solid rgba(8, 47, 69, 0.3);
}

.legal-content h2 {
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.legal-content p,
.legal-content address {
  margin: 0;
  text-wrap: pretty;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--red-dark);
  font-weight: 700;
}

.legal-content a:hover {
  color: var(--red);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-content {
    width: 52vw;
  }

  .fresh-seal {
    right: 1.4rem;
    bottom: 2.2rem;
    width: 106px;
    height: 106px;
    font-size: 0.98rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .product-card h3 {
    min-height: auto;
  }

  .location-inner {
    grid-template-columns: 0.95fr 0.75fr;
  }

  .mascot-card {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 72px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    height: 72px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    top: 3px;
    width: 105px;
  }

  .brand-badge {
    width: 105px;
  }

  .brand img {
    width: 105px;
  }

  .js .menu-toggle {
    position: relative;
    z-index: var(--z-menu-control);
    display: grid;
    width: 48px;
    height: 44px;
    padding: 9px;
    place-content: center;
    gap: 5px;
    color: var(--navy);
    background: transparent;
    border: 2px solid var(--navy);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] {
    color: var(--cream);
    border-color: var(--cream);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: absolute;
    z-index: var(--z-menu);
    top: calc(100% + 3px);
    right: 0;
    display: flex;
    width: min(84vw, 380px);
    max-height: calc(100vh - 72px);
    max-height: calc(100dvh - 72px);
    padding: 2rem 2.3rem 3rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--cream-light);
    background: var(--navy-deep);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
    visibility: visible;
  }

  .js .site-nav {
    position: fixed;
    top: 0;
    display: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding-top: 7rem;
    visibility: hidden;
  }

  .site-nav::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 18px;
    background: repeating-linear-gradient(90deg, var(--cream) 0 18px, var(--navy) 18px 36px);
    content: "";
  }

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

  .site-nav > a:not(.nav-cta) {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(241, 223, 189, 0.3);
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 400;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1.5rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    background-position: center;
  }

  .hero-content {
    width: min(76vw, 570px);
    padding: 3rem 1.4rem;
    background: rgba(246, 232, 207, 0.78);
    border: 2px solid rgba(130, 47, 37, 0.25);
    box-shadow: 0 12px 35px rgba(41, 32, 22, 0.12);
    backdrop-filter: blur(3px);
  }

  .location-copy h2 {
    overflow-wrap: anywhere;
  }

  .hero h1 span,
  .hero h1 em {
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: normal;
  }

  .hero h1 span {
    font-size: clamp(6rem, 22vw, 9rem);
  }

  .hero h1 em {
    font-size: clamp(3rem, 10.5vw, 4.6rem);
  }

  .fresh-seal {
    right: 1rem;
    bottom: 1.5rem;
  }

  .story-inner {
    min-height: auto;
    padding: 4.5rem 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-copy {
    padding: 0;
  }

  .story-stamp {
    width: min(260px, 68vw);
    margin-top: 1.2rem;
  }

  .location-inner {
    padding-top: 3.7rem;
    grid-template-columns: 1fr;
  }

  .location-inner > * {
    min-width: 0;
  }

  .location-copy {
    z-index: 1;
    max-width: 570px;
    padding-bottom: 2rem;
  }

  .mascot-card {
    width: min(430px, 86vw);
    margin: 0 auto -1rem;
    grid-column: auto;
  }

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

  .footer-inner nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .legal-page {
    min-height: calc(100vh - 72px);
  }

  .legal-hero::after {
    right: 1.5rem;
    width: 88px;
  }

  .legal-notice {
    position: static;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .story-inner,
  .location-inner,
  .footer-inner,
  .legal-hero-inner,
  .legal-layout {
    width: min(calc(100% - 30px), var(--max));
  }

  .hero {
    min-height: 650px;
    align-items: center;
  }

  .hero-image {
    background-size: auto 100%;
  }

  .hero-content {
    width: calc(100% - 30px);
    margin-top: 1rem;
    padding: 2.5rem 0.8rem 3.1rem;
  }

  .hero-kicker {
    font-size: 0.76rem;
  }

  .hero h1 span {
    font-size: clamp(5.2rem, 27vw, 7.2rem);
  }

  .hero h1 em {
    font-size: clamp(2.8rem, 13.5vw, 3.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .fresh-seal {
    display: none;
  }

  .script-heading {
    gap: 0.55rem;
  }

  .script-heading h2 {
    font-size: clamp(2.55rem, 14vw, 3.5rem);
  }

  .script-heading > span {
    min-width: 22px;
    flex: 1;
  }

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

  .product-card {
    padding: 1.2rem;
  }

  .product-card img {
    max-height: 440px;
  }

  .story-copy h2 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  .story-section::after {
    background: rgba(126, 29, 27, 0.72);
  }

  .location-copy h2 {
    font-size: clamp(3rem, 16vw, 4.05rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-inner nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column: auto;
  }

  .legal-hero-inner {
    padding-top: 4rem;
  }

  .legal-hero::after {
    top: 2rem;
    right: -1.1rem;
    width: 76px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: clamp(3.6rem, 17vw, 5.5rem);
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .legal-section {
    padding-top: 3rem;
  }

  .legal-content section + section {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
  }
}

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

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

@media (forced-colors: active) {
  body::before,
  .checker,
  .site-nav::before {
    display: none;
  }

  :focus-visible {
    outline: 3px solid CanvasText;
  }

  .nav-cta,
  .button,
  .menu-toggle,
  .product-card {
    border: 2px solid ButtonText;
    box-shadow: none;
    forced-color-adjust: auto;
  }
}
