:root {
  --ink: #171717;
  --ink-soft: #3d3a35;
  --muted: #756f67;
  --paper: #f5f1e8;
  --paper-deep: #e9e1d4;
  --surface: #fffdf8;
  --brick: #a34c38;
  --brick-dark: #793526;
  --line: rgba(23, 23, 23, 0.18);
  --line-light: rgba(245, 241, 232, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1160px, calc(100% - 48px));
  --shadow: 0 22px 54px rgba(46, 33, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  content: "";
  background-image: radial-gradient(rgba(23, 23, 23, 0.18) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #d9785f;
  outline-offset: 4px;
}

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

.visually-hidden {
  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: 20;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.preview-bar {
  color: var(--paper);
  background: var(--ink);
}

.preview-bar p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: var(--shell);
  min-height: 34px;
  margin: 0 auto;
  align-items: center;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.preview-bar span:first-child {
  color: #f3b29e;
}

.nav-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  width: var(--shell);
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-name em {
  color: var(--brick);
  font-weight: 400;
}

.brand-city {
  padding-left: 11px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  text-decoration: none;
}

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

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

.hero {
  display: grid;
  min-height: 540px;
  padding-block: 76px 64px;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 52px;
}

.eyebrow,
.menu-label,
.card-label,
.topping-label,
.item-category {
  margin: 0;
  color: var(--brick);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.family-copy h2,
.pickup-heading h2 {
  max-width: 700px;
  margin: 18px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6.1vw, 6.25rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 610px;
}

.hero-lead {
  max-width: 515px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 17px 12px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--surface);
  background: var(--brick);
}

.button-primary:hover {
  background: var(--brick-dark);
}

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

.button-outline:hover {
  color: var(--surface);
  background: var(--ink);
}

.text-link,
.ribbon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brick);
}

.text-link span,
.ribbon-link span {
  color: var(--brick);
  font-size: 1rem;
  line-height: 0.6;
  transition: transform 180ms ease;
}

.text-link:hover span,
.ribbon-link:hover span {
  transform: translate(3px, -2px);
}

.hero-art {
  position: relative;
  width: min(100%, 530px);
  margin-left: auto;
  aspect-ratio: 1 / 0.9;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: 3%;
  width: 89%;
  height: 89%;
  border: 1px solid var(--brick);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
}

.hero-art::after {
  position: absolute;
  z-index: -1;
  right: -1%;
  bottom: 5%;
  left: 17%;
  height: 19%;
  content: "";
  background: var(--paper-deep);
  transform: rotate(-5deg);
}

.hero-art img {
  position: absolute;
  top: 12%;
  right: 9%;
  width: 79%;
  filter: drop-shadow(15px 17px 0 rgba(23, 23, 23, 0.08));
  transform: rotate(7deg);
}

.hero-art-label {
  position: absolute;
  z-index: 1;
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-art-label-top {
  top: 5%;
  left: 4%;
  padding-left: 24px;
}

.hero-art-label-top::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 1px;
  content: "";
  background: var(--brick);
}

.hero-art-label-bottom {
  right: 2%;
  bottom: 2%;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-art-label-bottom strong {
  color: var(--brick);
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.hero-art-label-bottom strong span {
  margin-left: 4px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-art-label-bottom > span {
  color: var(--muted);
}

.order-ribbon {
  display: flex;
  margin-bottom: 42px;
  padding: 24px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper);
  background: var(--ink);
}

.order-ribbon-copy {
  display: grid;
  grid-template-columns: auto minmax(190px, auto) minmax(260px, 1fr);
  align-items: baseline;
  gap: 24px;
}

.order-ribbon .eyebrow {
  color: #e88c73;
}

.order-ribbon h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.order-ribbon p:last-child {
  max-width: 400px;
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ribbon-link {
  flex-shrink: 0;
  color: var(--paper);
}

.section-pad {
  padding-block: 108px;
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  column-gap: 70px;
  align-items: end;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5.3rem);
}

.section-intro > p:last-child {
  max-width: 405px;
  margin: 0 0 4px auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.menu-layout {
  display: grid;
  margin-top: 74px;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 44px;
}

.menu-featured {
  padding: 31px 34px 35px;
  color: var(--paper);
  background: var(--brick);
  box-shadow: var(--shadow);
}

.menu-featured-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.item-index {
  color: rgba(245, 241, 232, 0.67);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.menu-featured .item-category,
.menu-featured .topping-label {
  color: #f5c1b1;
}

.item-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.menu-featured .item-heading {
  margin-top: 64px;
}

.item-heading h3 {
  max-width: 450px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.1vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.price {
  flex-shrink: 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.menu-featured .price {
  color: var(--paper);
}

.item-note {
  margin: 12px 0 0;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-rule {
  height: 1px;
  margin: 34px 0 24px;
  background: rgba(245, 241, 232, 0.35);
}

.topping-label {
  margin-bottom: 10px;
}

.topping-copy {
  max-width: 545px;
  margin: 0 0 18px;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.88rem;
  line-height: 1.65;
}

.topping-copy strong {
  color: var(--paper);
  font-weight: 800;
}

.menu-columns {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 44px;
}

.menu-group {
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line);
}

.menu-label {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-group .item-heading {
  margin-top: 24px;
}

.menu-group .item-heading h3 {
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
}

.item-description {
  max-width: 470px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.compact-menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(23, 23, 23, 0.31);
  font-size: 0.88rem;
  line-height: 1.4;
}

.compact-menu-item:first-of-type {
  margin-top: 14px;
}

.compact-menu-item > span:first-child {
  max-width: 420px;
}

.compact-menu-item > span:last-child {
  flex-shrink: 0;
  color: var(--brick);
  font-family: var(--serif);
  font-size: 1rem;
}

.menu-footer-note {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 47px;
}

.menu-footer-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.menu-footer-note .text-link {
  margin-left: auto;
}

.line-mark {
  display: block;
  width: 42px;
  height: 1px;
  flex-shrink: 0;
  background: var(--brick);
}

.family-section {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.family-inner {
  display: grid;
  min-height: 680px;
  padding-block: 100px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: center;
}

.family-art-wrap {
  position: relative;
}

.family-art-wrap::before {
  position: absolute;
  top: -30px;
  left: -12px;
  width: 75%;
  height: 90%;
  border: 1px solid rgba(245, 241, 232, 0.34);
  border-radius: 48% 52% 52% 48%;
  content: "";
  transform: rotate(14deg);
}

.family-art {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.family-art-caption {
  position: relative;
  margin: 12px 0 0;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.family-copy .eyebrow {
  color: #e88c73;
}

.family-copy h2 {
  max-width: 580px;
  margin-top: 16px;
  color: var(--paper);
  font-size: clamp(3.3rem, 5.4vw, 5.55rem);
}

.family-copy p:not(.eyebrow) {
  max-width: 555px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.family-copy .family-lead {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.family-facts {
  display: flex;
  max-width: 550px;
  margin-top: 38px;
  border-top: 1px solid rgba(245, 241, 232, 0.25);
}

.family-facts > div {
  display: flex;
  padding: 17px 26px 0 0;
  flex-direction: column;
  gap: 7px;
}

.family-facts > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(245, 241, 232, 0.25);
}

.family-facts strong {
  color: #f3a18b;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.family-facts span {
  max-width: 150px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.72rem;
  line-height: 1.4;
}

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

.pickup-heading {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(280px, 0.9fr);
  gap: 60px;
  align-items: end;
}

.pickup-heading .eyebrow {
  grid-column: 1 / -1;
}

.pickup-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.1rem, 5.25vw, 5.25rem);
}

.pickup-heading > p:last-child {
  max-width: 410px;
  margin: 0 0 3px auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.pickup-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.contact-card,
.location-card {
  min-height: 350px;
  padding: 31px 34px;
}

.contact-card {
  color: var(--paper);
  background: var(--brick);
}

.contact-card .card-label,
.location-card .card-label {
  margin-bottom: 40px;
}

.contact-card .card-label {
  color: #f5c1b1;
}

.contact-link {
  display: block;
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.06;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.contact-email {
  margin-top: 9px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 39px;
}

.contact-card .button-primary {
  color: var(--brick);
  background: var(--paper);
}

.contact-card .button-primary:hover {
  color: var(--ink);
  background: var(--surface);
}

.contact-card .button-outline {
  border-color: rgba(245, 241, 232, 0.74);
  color: var(--paper);
}

.contact-card .button-outline:hover {
  color: var(--brick);
  background: var(--paper);
}

.location-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-deep);
}

.location-card .card-label {
  color: var(--brick);
}

.location-card address {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-style: normal;
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.location-note {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: flex-start;
  gap: 13px;
  border-top: 1px solid var(--line);
}

.location-dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brick);
}

.location-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.location-note strong {
  color: var(--ink);
  font-weight: 800;
}

.social-row {
  display: flex;
  margin-top: 38px;
  padding-top: 21px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.social-row > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  min-height: 232px;
  padding-block: 47px 40px;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: start;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer .brand-mark {
  border-color: rgba(245, 241, 232, 0.75);
}

.footer-brand > p {
  max-width: 210px;
  margin: 20px 0 0 45px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #f3a18b;
}

.footer-meta {
  color: rgba(245, 241, 232, 0.52);
  font-size: 0.67rem;
  line-height: 1.6;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand-city {
    display: none;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 12px 0 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 25px rgba(23, 23, 23, 0.07);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav a::after {
    right: auto;
    width: 32px;
  }

  .hero {
    min-height: auto;
    padding-block: 65px 56px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3.4rem, 12vw, 6rem);
  }

  .hero-art {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .order-ribbon {
    margin-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .order-ribbon-copy {
    display: block;
  }

  .order-ribbon h2 {
    margin: 8px 0 10px;
  }

  .section-pad {
    padding-block: 82px;
  }

  .section-intro,
  .pickup-heading {
    display: block;
  }

  .section-intro h2,
  .pickup-heading h2 {
    margin-top: 15px;
  }

  .section-intro > p:last-child,
  .pickup-heading > p:last-child {
    max-width: 510px;
    margin: 23px 0 0;
  }

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

  .menu-columns {
    gap: 38px;
  }

  .family-inner {
    min-height: auto;
    padding-block: 80px 88px;
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .family-art-wrap {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .family-copy h2 {
    font-size: clamp(3.25rem, 11vw, 5.4rem);
  }

  .pickup-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-card,
  .location-card {
    min-height: 325px;
  }

  .footer-inner {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    font-size: 15px;
  }

  .preview-bar p {
    min-height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
  }

  .nav-wrap {
    min-height: 73px;
  }

  .brand-name {
    font-size: 1.13rem;
  }

  .hero {
    padding-block: 52px 47px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-art {
    width: 106%;
    margin-left: -3%;
  }

  .hero-art-label-bottom strong {
    font-size: 3.8rem;
  }

  .order-ribbon {
    padding: 22px 20px 24px;
  }

  .section-pad {
    padding-block: 68px;
  }

  .section-intro h2,
  .pickup-heading h2 {
    font-size: clamp(2.95rem, 14vw, 4.6rem);
  }

  .menu-layout {
    margin-top: 51px;
  }

  .menu-featured {
    padding: 25px 22px 28px;
  }

  .menu-featured .item-heading {
    margin-top: 49px;
  }

  .item-heading h3 {
    font-size: 1.85rem;
  }

  .menu-footer-note {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .menu-footer-note .text-link {
    grid-column: 2;
    margin-left: 0;
  }

  .family-inner {
    padding-block: 68px 75px;
    gap: 49px;
  }

  .family-copy h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .family-copy .family-lead {
    font-size: 1.28rem;
  }

  .family-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .family-facts > div {
    padding-right: 15px;
  }

  .family-facts > div + div {
    padding-left: 15px;
  }

  .contact-card,
  .location-card {
    min-height: auto;
    padding: 25px 22px 27px;
  }

  .contact-card .card-label,
  .location-card .card-label {
    margin-bottom: 31px;
  }

  .contact-link {
    font-size: 1.9rem;
  }

  .contact-email {
    font-size: 1.42rem;
  }

  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .location-card address {
    font-size: 1.95rem;
  }

  .social-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-inner {
    display: block;
    padding-block: 39px 31px;
  }

  .footer-links {
    margin-top: 37px;
  }

  .footer-meta {
    margin-top: 31px;
  }
}

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

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