:root {
  --ink: #1f120c;
  --ink-soft: #50301f;
  --orange: #f39218;
  --orange-deep: #cf5b0b;
  --cream: #fff8eb;
  --paper: #f3ead9;
  --brown: #6e2f0d;
  --line: rgba(31, 18, 12, 0.18);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
}
.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;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 92px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 46px;
  height: 46px;
  color: var(--orange);
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; }
.brand-copy span { font: 700 1.22rem/1 var(--serif); letter-spacing: 0.02em; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a, .site-nav button {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-order) { position: relative; }
.site-nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-order {
  border: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 14px 19px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-order:hover { transform: translateY(-2px); background: #ffac34; }
.cart-count {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  margin-left: 7px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--cream);
  font-size: .7rem;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(790px, 92vh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #281208;
  color: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/pasteis-hero.webp") center right 34% / cover no-repeat;
  transform: scale(1.01);
  animation: hero-settle 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 7, 2, 0.97) 0%, rgba(27, 8, 2, 0.82) 35%, rgba(27, 8, 2, 0.14) 68%, rgba(27, 8, 2, 0.05) 100%),
    linear-gradient(0deg, rgba(20, 8, 3, 0.5), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  opacity: 0.16;
  pointer-events: none;
}
.hero-content {
  width: min(1180px, calc(100% - 56px));
  margin: 94px auto 0;
  padding: 86px 0 94px;
}
.eyebrow {
  margin: 0 0 21px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.24em;
}
.eyebrow.dark { color: var(--orange-deep); }
.hero h1, .section-heading h2, .quality-copy h2, .final-cta h2 {
  font-family: var(--serif);
  letter-spacing: -0.045em;
  line-height: 0.96;
  font-weight: 600;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.7rem, 7.2vw, 6.9rem);
  text-wrap: balance;
}
h1 em, h2 em { color: var(--orange); font-weight: 400; }
.hero-text {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255, 248, 235, 0.76);
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 22px;
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: #ffab32; }
.button-light { background: var(--cream); color: var(--ink); }
.button-light:hover { background: #fff; }
.text-link {
  padding: 12px 0;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration-color: rgba(255, 248, 235, 0.36);
  text-underline-offset: 6px;
}
.text-link span { color: var(--orange); margin-left: 6px; }
.hero-stamp {
  position: absolute;
  right: clamp(28px, 5vw, 78px);
  bottom: 44px;
  width: 125px;
  height: 125px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 248, 235, 0.46);
  border-radius: 50%;
  color: var(--cream);
  rotate: -8deg;
  backdrop-filter: blur(5px);
}
.hero-stamp span { font-size: 0.55rem; letter-spacing: 0.27em; }
.hero-stamp strong { margin: 3px 0; color: var(--orange); font: 700 1.28rem/1 var(--serif); }

.quick-info {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(70, 29, 8, 0.12);
}
.quick-item { display: flex; gap: 16px; align-items: center; min-height: 112px; padding: 24px 30px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-icon { color: var(--orange-deep); font: italic 700 1.4rem var(--serif); }
.quick-item div { display: grid; gap: 2px; }
.quick-item strong { font-size: 0.92rem; }
.quick-item small { color: #775c4d; font-size: 0.77rem; }

.menu-section { max-width: var(--max); margin: 0 auto; padding: 120px 28px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 52px; }
.section-heading h2, .quality-copy h2, .final-cta h2 { margin: 0; font-size: clamp(2.9rem, 5vw, 5.1rem); }
.filters { display: flex; gap: 8px; padding-bottom: 7px; }
.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: 0.2s ease;
}
.filter:hover, .filter.is-active { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.menu-category-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-category-card:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(69, 30, 10, 0.14); }
.menu-category-card > img { width: 100%; height: 280px; object-fit: cover; display: block; }
.category-content { flex: 1; display: flex; flex-direction: column; padding: 30px; }
.category-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.card-kicker { margin: 0 0 7px; color: var(--orange-deep); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.2em; }
.menu-category-card h3 { margin: 0; font: 600 2.25rem/1 var(--serif); letter-spacing: -0.035em; }
.category-heading > strong { flex: 0 0 auto; padding: 9px 12px; background: var(--orange); color: var(--ink); font-size: .86rem; line-height: 1; }
.price-list { list-style: none; margin: 0 0 27px; padding: 0; border-top: 1px solid var(--line); }
.price-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .87rem; }
.price-list li span { min-width: 0; }
.price-list li b { flex: 0 0 auto; color: var(--orange-deep); font-size: .76rem; }
.price-list.compact li { grid-template-columns: 6px minmax(0, 1fr) auto; gap: 12px; }
.price-list.compact li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.category-explainer { margin: -6px 0 24px; color: #705444; font-size: .86rem; }
.add-item {
  min-height: 34px;
  border: 1px solid var(--ink);
  background: transparent;
  color: inherit;
  padding: 7px 10px;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.add-item:hover, .add-item:focus-visible { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.add-item.is-added { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.wide-add { width: 100%; min-height: 48px; margin: 4px 0 22px; }
.category-order {
  margin-top: auto;
  align-self: flex-start;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 4px 0;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
}
.signature-card { grid-column: 1 / -1; display: grid; grid-template-columns: .9fr 1.1fr; background: #f0dcc0; }
.signature-card > img { height: 100%; min-height: 550px; }
.signature-card .category-content { padding: clamp(34px, 5vw, 58px); }
.signature-card h3 { margin-bottom: 22px; font-size: clamp(3rem, 5vw, 4.8rem); color: var(--orange-deep); }
.signature-item { padding: 19px 0; border-top: 1px solid var(--line); }
.signature-item:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.signature-item div { display: flex; justify-content: space-between; gap: 20px; }
.signature-item div strong { font: 600 1.35rem var(--serif); }
.signature-item div b { color: var(--orange-deep); }
.signature-item p { margin: 8px 0 0; color: #705444; font-size: .86rem; }
.signature-item .add-item { margin-top: 14px; }
.dark-card { background: var(--ink); color: var(--cream); }
.dark-card .category-explainer, .dark-card .price-list { color: rgba(255,248,235,.72); }
.dark-card .price-list, .dark-card .price-list li { border-color: rgba(255,255,255,.16); }
.dark-card .card-kicker { color: var(--orange); }
.dark-card .add-item, .sweet-card .add-item { border-color: rgba(255,248,235,.62); }
.dark-card .add-item:hover, .dark-card .add-item:focus-visible, .sweet-card .add-item:hover, .sweet-card .add-item:focus-visible { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.sweet-card { background: var(--brown); color: var(--cream); }
.sweet-card .category-explainer { color: rgba(255,248,235,.72); }
.sweet-card .card-kicker { color: var(--orange); }
.menu-category-card[hidden] { display: none; }
.menu-note { margin: 26px 0 0; color: #785e4f; text-align: center; font-size: 0.82rem; }

.quality-section { display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: 700px; background: var(--ink); color: var(--cream); }
.quality-image { position: relative; min-height: 620px; background: linear-gradient(180deg, transparent 65%, rgba(24, 10, 3, 0.75)), url("assets/pasteis-hero.webp") 66% center / cover no-repeat; }
.quality-label { position: absolute; left: 34px; bottom: 28px; border: 1px solid rgba(255,255,255,.52); padding: 9px 13px; font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.quality-copy { max-width: 610px; align-self: center; padding: 88px clamp(40px, 7vw, 105px); }
.quality-copy > p:not(.eyebrow) { margin: 28px 0 42px; color: rgba(255,248,235,.68); }
.quality-copy ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.quality-copy li { display: flex; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .9rem; font-weight: 750; }
.quality-copy li span { color: var(--orange); font: italic 700 1rem var(--serif); }

.order-section { max-width: var(--max); margin: 0 auto; padding: 120px 28px 130px; }
.section-heading.centered { display: block; text-align: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { min-height: 260px; padding: 32px 38px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step > span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 50px; border: 1px solid var(--ink); border-radius: 50%; font: italic 700 1rem var(--serif); }
.step h3 { margin: 0 0 10px; font: 600 1.55rem var(--serif); }
.step p { margin: 0; color: #705444; font-size: .9rem; }

.final-cta { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; background: var(--orange); color: var(--ink); text-align: center; }
.final-cta-copy { position: relative; z-index: 2; }
.final-cta .eyebrow { color: var(--ink); }
.final-cta h2 { font-size: clamp(4rem, 8vw, 8rem); }
.final-cta h2 em { color: var(--cream); }
.final-cta .button { margin-top: 35px; }
.cta-moon { position: absolute; right: 8vw; top: -210px; width: 570px; height: 570px; border: 1px solid rgba(31,18,12,.16); border-radius: 50%; }
.cta-moon::after { content: ""; position: absolute; inset: 62px; border: 1px solid rgba(31,18,12,.13); border-radius: 50%; }
.cta-outline { position: absolute; left: -16px; bottom: -95px; margin: 0; color: transparent; -webkit-text-stroke: 1px rgba(31,18,12,.15); font-size: clamp(6rem, 17vw, 15rem); font-weight: 950; letter-spacing: -.07em; line-height: 1; }

.site-footer { min-height: 170px; padding: 44px max(28px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--ink); color: var(--cream); }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: .8rem; font-weight: 750; text-underline-offset: 5px; }
.site-footer > p { color: rgba(255,248,235,.48); font-size: .72rem; }
.mobile-order { display: none; }

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18, 8, 3, .64);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
}
.panel-backdrop.is-visible { opacity: 1; }
.cart-panel {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(470px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  box-shadow: -28px 0 70px rgba(18,8,3,.24);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .34s cubic-bezier(.16,1,.3,1), visibility .34s;
}
.cart-panel.is-open { transform: translateX(0); visibility: visible; }
.cart-header { display: flex; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.cart-header .card-kicker { margin-bottom: 4px; }
.cart-header h2, .checkout-dialog h2 { margin: 0; font: 600 2.65rem/1 var(--serif); letter-spacing: -.04em; }
.icon-button {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}
.cart-items { flex: 1; overflow-y: auto; margin-right: -10px; padding: 10px 10px 20px 0; }
.cart-line { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line h3 { margin: 0; font-size: .92rem; line-height: 1.35; }
.cart-line-price { color: var(--orange-deep); font-size: .83rem; }
.quantity-control { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.quantity-control button { width: 34px; height: 34px; border: 0; background: transparent; cursor: pointer; font-size: 1.1rem; }
.quantity-control span { min-width: 28px; text-align: center; font-size: .82rem; font-weight: 800; }
.remove-item { justify-self: end; border: 0; background: none; color: #7b5e4e; padding: 7px 0; cursor: pointer; font-size: .72rem; text-decoration: underline; text-underline-offset: 3px; }
.cart-empty { flex: 1; display: grid; align-content: center; justify-items: center; padding: 30px; text-align: center; }
.cart-empty > span { color: var(--orange); font: 600 4.8rem/1 var(--serif); }
.cart-empty h3 { margin: 18px 0 4px; font: 600 1.55rem var(--serif); }
.cart-empty p { margin: 0 0 22px; color: #705444; font-size: .86rem; }
.secondary-action { min-height: 43px; border: 1px solid var(--ink); background: transparent; padding: 9px 16px; cursor: pointer; font-weight: 800; }
.cart-summary { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-summary > div, .checkout-total { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 1rem; }
.cart-summary > div strong, .checkout-total strong { font: 600 1.7rem var(--serif); }
.cart-summary small { display: block; margin: 5px 0 18px; color: #705444; }
.checkout-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  background: var(--orange);
  color: var(--ink);
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background: rgba(18, 8, 3, .76);
  backdrop-filter: blur(5px);
}
.checkout-dialog { position: relative; width: min(720px, 100%); max-height: calc(100dvh - 48px); overflow-y: auto; background: var(--cream); padding: clamp(28px, 5vw, 52px); box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.checkout-close { position: absolute; top: 20px; right: 20px; }
.checkout-intro { margin: 12px 0 28px; color: #705444; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#checkout-form > label, .form-grid label, .address-fields label { display: grid; gap: 7px; color: var(--ink-soft); font-size: .78rem; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: #fffdf7; color: var(--ink); padding: 13px 14px; font: inherit; font-size: 1rem; }
textarea { resize: vertical; }
fieldset { margin: 22px 0; padding: 0; border: 0; }
legend { margin-bottom: 10px; color: var(--ink-soft); font-size: .78rem; font-weight: 800; }
.choice-row { display: flex; gap: 10px; flex-wrap: wrap; }
.choice-row label { flex: 1; min-width: 120px; display: flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fffdf7; padding: 12px 14px; cursor: pointer; font-size: .85rem; font-weight: 750; }
.choice-row input { width: auto; accent-color: var(--orange-deep); }
.address-fields { display: grid; gap: 14px; }
.checkout-total { margin: 25px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.demo-notice { display: block; margin-top: 12px; color: #7b5e4e; text-align: center; }
.checkout-success { padding: 32px 0; text-align: center; }
.success-mark { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: var(--orange); font-size: 2rem; font-weight: 900; }
.checkout-success p:not(.card-kicker) { margin: 18px auto 28px; max-width: 440px; color: #705444; }
.toast { position: fixed; z-index: 140; left: 50%; bottom: 28px; min-width: 260px; padding: 13px 18px; background: var(--ink); color: var(--cream); text-align: center; font-size: .82rem; font-weight: 800; opacity: 0; transform: translate(-50%, 18px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
body.modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.menu-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: .08s; }
.menu-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: .16s; }

@keyframes hero-settle { from { opacity: .45; transform: scale(1.08); } to { opacity: 1; transform: scale(1.01); } }

@media (max-width: 900px) {
  .header-inner { min-height: 80px; padding: 0 20px; }
  .menu-toggle { display: grid; gap: 7px; width: 45px; height: 45px; place-content: center; border: 1px solid rgba(255,255,255,.25); background: transparent; color: var(--cream); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 80px; left: 0; right: 0; display: none; align-items: stretch; padding: 18px 20px 24px; background: var(--ink); box-shadow: 0 20px 40px rgba(0,0,0,.28); }
  .site-nav.is-open { display: grid; }
  .site-nav a, .site-nav button { padding: 12px 0; }
  .nav-order { text-align: center; margin-top: 8px; }
  .hero { min-height: 760px; }
  .hero-media { background-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(20,7,2,.96), rgba(20,7,2,.65) 70%, rgba(20,7,2,.32)), linear-gradient(0deg, rgba(20,7,2,.68), transparent 50%); }
  .hero-content { margin-top: 80px; padding-top: 92px; }
  .hero-stamp { width: 105px; height: 105px; bottom: 24px; }
  .quick-info { margin: 0; grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:last-child { border-bottom: 0; }
  .menu-section { padding-top: 90px; }
  .section-heading { align-items: start; }
  .menu-grid { grid-template-columns: 1fr; }
  .signature-card { grid-column: auto; }
  .quality-section { grid-template-columns: 1fr; }
  .quality-image { min-height: 520px; }
  .quality-copy { max-width: none; }
  .site-footer { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  body { padding-bottom: 66px; }
  .brand-copy strong { font-size: .58rem; }
  .brand-copy span { font-size: 1.02rem; }
  .brand-mark { width: 41px; height: 41px; }
  .hero { min-height: 720px; align-items: end; }
  .hero-content { width: calc(100% - 40px); margin: 80px auto 0; padding: 80px 0 130px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.5rem); }
  .hero-text { max-width: 92%; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; margin-top: 28px; }
  .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-stamp { display: none; }
  .quick-item { min-height: 94px; padding: 19px 22px; }
  .menu-section, .order-section { padding: 84px 20px; }
  .section-heading { display: grid; margin-bottom: 35px; }
  .section-heading h2, .quality-copy h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .filters { width: 100%; overflow-x: auto; padding-bottom: 3px; }
  .filter { flex: 0 0 auto; }
  .menu-category-card > img { height: 245px; }
  .category-content { padding: 24px 20px; }
  .category-heading { display: grid; }
  .category-heading > strong { justify-self: start; }
  .price-list li { grid-template-columns: minmax(0,1fr) auto; }
  .price-list li b { display: none; }
  .add-item { min-height: 38px; }
  .signature-card { display: flex; }
  .signature-card > img { min-height: 0; height: 275px; }
  .quality-image { min-height: 420px; }
  .quality-copy { padding: 76px 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 220px; padding: 28px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step > span { margin-bottom: 36px; }
  .final-cta { min-height: 510px; padding: 55px 20px; }
  .final-cta h2 { font-size: clamp(3.8rem, 19vw, 5.8rem); }
  .site-footer { padding: 42px 24px; align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 10px; }
  .mobile-order { position: fixed; z-index: 50; left: 0; right: 0; bottom: 0; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: var(--orange); color: var(--ink); padding: 10px 20px; font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 -10px 30px rgba(31,18,12,.2); }
  .mobile-order strong { display: flex; align-items: center; text-transform: none; }
  .mobile-order .cart-count { margin: 0 4px 0 0; }
  .cart-panel { padding: 22px 20px 82px; }
  .checkout-modal { padding: 0; place-items: end center; }
  .checkout-dialog { width: 100%; max-height: 94dvh; padding: 34px 20px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .payment-choices label { min-width: calc(50% - 5px); }
  .toast { bottom: 82px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

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