@layer reset, base, components, utilities, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
  img, picture { max-width: 100%; display: block; }
  button, input { font: inherit; }
  a { color: inherit; }
}

@layer components {
  .menu-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 52px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-dark);
  }
  .menu-filter {
    border: 1px solid rgb(11 9 8 / 20%);
    border-radius: 999px;
    padding: 10px 18px;
    color: rgb(11 9 8 / 68%);
    background: transparent;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
  }
  .menu-filter:hover,
  .menu-filter[aria-pressed="true"] { color: white; background: var(--black); border-color: var(--black); }
  .menu-status { min-height: 24px; margin-top: 18px; color: rgb(11 9 8 / 68%); font-size: .73rem; }
  .menu-status a { color: var(--black); font-weight: 800; text-underline-offset: 4px; }
  .menu-grid { margin-top: 26px; }
  .menu-item-card { display: flex; flex-direction: column; }
  .menu-item-card.is-unavailable { opacity: .68; }
  .menu-item-card .pizza-card__media { aspect-ratio: 4 / 3; }
  .menu-item-card__body { flex: 1; min-height: 285px; }
  .menu-item-card__heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: start; }
  .menu-item-card__heading :is(h2, h3) { font-size: clamp(2rem, 3vw, 3.1rem); }
  .menu-item-card__heading :is(h2, h3) a { text-decoration: none; }
  .menu-item-card__heading :is(h2, h3) a:hover { color: var(--fire); }
  .menu-price { padding-top: 7px; color: var(--fire); font-size: .9rem; white-space: nowrap; }
  .pizza-card__body .menu-description { max-width: 92%; margin-top: 16px; color: rgb(11 9 8 / 68%); font-size: .88rem; }
  .pizza-card__body .menu-ingredients { margin-top: 12px; color: rgb(11 9 8 / 48%); font-size: .72rem; line-height: 1.55; }
  .item-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
  .item-pill { border: 1px solid rgb(11 9 8 / 18%); border-radius: 999px; padding: 5px 9px; font-size: .55rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
  .item-pill--green { color: #405826; border-color: rgb(64 88 38 / 32%); background: rgb(102 122 61 / 10%); }
  .item-pill--fire { color: #9d2814; border-color: rgb(157 40 20 / 28%); background: rgb(240 90 36 / 10%); }
  .menu-footer-actions { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line-dark); }
  .menu-footer-actions p { max-width: 620px; color: rgb(11 9 8 / 68%); font-size: .72rem; }
}

@layer responsive {
  @media (max-width: 760px) {
    .menu-toolbar { margin-top: 34px; }
    .menu-filter { padding: 9px 14px; }
    .menu-item-card__body { min-height: 0; padding-bottom: 30px; }
    .menu-item-card__heading { grid-template-columns: 1fr; gap: 4px; }
    .menu-price { padding-top: 0; }
    .menu-footer-actions { align-items: stretch; flex-direction: column; }
  }
}

@layer base {
  :root {
    --black: #0b0908;
    --charcoal: #171311;
    --charcoal-2: #231c18;
    --cream: #f2e7d5;
    --cream-2: #e2d2b9;
    --orange: #f05a24;
    --fire: #c6321d;
    --red-dark: #982614;
    --basil: #667a3d;
    --wood: #78513a;
    --stone: #81776d;
    --line-dark: rgb(11 9 8 / 16%);
    --line-light: rgb(242 231 213 / 16%);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shell: min(1220px, calc(100vw - 48px));
    --header-h: 88px;
    --ease: cubic-bezier(.22, 1, .36, 1);
  }

  html { background: var(--black); color-scheme: dark; }
  body {
    min-width: 320px;
    background: var(--cream);
    color: var(--black);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--fire); color: white; }

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

  h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .94;
    text-wrap: balance;
  }

  h2 { font-size: clamp(3.2rem, 7.3vw, 7.8rem); }
  h2 em, h1 em { color: var(--fire); font-weight: 400; }
  p { text-wrap: pretty; }
  address { font-style: normal; }
}

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

  .skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    transform: translateY(-180%);
    background: var(--cream);
    color: var(--black);
    padding: 12px 18px;
    font-weight: 800;
    border-radius: 2px;
  }
  .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;
  }

  .utility-strip {
    position: absolute;
    z-index: 22;
    inset: 0 0 auto;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: rgb(255 255 255 / 72%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    background: rgb(0 0 0 / 14%);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .utility-strip a { text-decoration: none; }
  .utility-strip a:hover { color: white; }

  .site-header {
    position: fixed;
    z-index: 20;
    top: 30px;
    left: 0;
    right: 0;
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 0 max(24px, calc((100vw - 1320px) / 2));
    color: white;
    transition: background .35s ease, top .35s ease, height .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
  }
  .site-header.is-scrolled {
    top: 0;
    height: 72px;
    background: rgb(11 9 8 / 94%);
    border-color: rgb(255 255 255 / 10%);
    backdrop-filter: blur(16px);
  }

  .brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgb(255 255 255 / 24%);
  }
  .brand-mark img { width: 42px; height: 42px; object-fit: contain; }
  .brand-name { display: flex; flex-direction: column; line-height: 1; }
  .brand-name strong { font-family: var(--serif); font-size: 1.55rem; letter-spacing: .08em; text-transform: uppercase; }
  .brand-name small { margin-top: 7px; font-size: .56rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgb(255 255 255 / 62%); }

  .desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
  .desktop-nav a {
    position: relative;
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .07em;
  }
  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: var(--orange);
    transition: right .35s var(--ease);
  }
  .desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }
  .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }

  .button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid transparent;
    padding: 0 22px;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .button:hover { transform: translateY(-2px); }
  .button--large { min-height: 58px; padding-inline: 28px; }
  .button--fire {
    color: white;
    background: var(--fire);
    box-shadow: 0 12px 36px rgb(228 49 29 / 20%);
  }
  .button--fire:hover { background: #a92818; box-shadow: 0 16px 42px rgb(198 50 29 / 34%); }
  .button--ghost { color: white; border-color: rgb(255 255 255 / 35%); background: rgb(255 255 255 / 4%); }
  .button--ghost:hover { border-color: white; background: rgb(255 255 255 / 10%); }
  .button--cream { background: var(--cream); color: var(--black); }
  .button--cream:hover { background: white; }
  .button--dark { background: var(--black); color: white; }
  .button--dark:hover { background: var(--fire); }
  .button--outline-dark { color: var(--black); border-color: rgb(11 9 8 / 30%); background: transparent; }
  .button--outline-dark:hover { border-color: var(--black); }
  .button--full { width: 100%; }
  .header-order { justify-self: end; }

  .menu-toggle, .mobile-menu { display: none; }

  .hero {
    min-height: 100svh;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    contain: paint;
    color: white;
    background: var(--black);
  }
  .hero-media, .hero-shade { position: absolute; inset: 0; }
  .hero-media picture { position: absolute; inset: 0; }
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(calc(1.04 + var(--hero-shift, 0) * .00008)) translateY(calc(var(--hero-shift, 0) * -0.03px));
    filter: saturate(.86) contrast(1.07);
    will-change: transform;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgb(5 4 3 / 94%) 0%, rgb(5 4 3 / 75%) 36%, rgb(5 4 3 / 18%) 72%),
      linear-gradient(0deg, rgb(5 4 3 / 64%) 0%, transparent 45%, rgb(5 4 3 / 28%) 100%);
  }
  .hero-shade::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  .heat-shimmer {
    position: absolute;
    right: 4%;
    bottom: 3%;
    width: 52%;
    height: 54%;
    background: radial-gradient(ellipse, rgb(255 88 20 / 12%), transparent 66%);
    filter: blur(24px);
    animation: heatPulse 4s ease-in-out infinite alternate;
  }
  .embers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
  .ember {
    position: absolute;
    bottom: -20px;
    left: 58%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: #ff8127;
    box-shadow: 0 0 10px #ff4b19;
    opacity: 0;
    animation: emberRise 8s linear -2s infinite;
  }
  .ember:nth-child(4n + 1) { left: 44%; width: 1px; height: 1px; animation-duration: 6s; animation-delay: -4s; }
  .ember:nth-child(4n + 2) { left: 69%; width: 3px; height: 3px; animation-duration: 9s; animation-delay: -7s; }
  .ember:nth-child(4n + 3) { left: 84%; animation-duration: 11s; animation-delay: -5s; }
  .ember:nth-child(3n + 1) { --drift: -52px; --opacity: .38; }
  .ember:nth-child(3n + 2) { --drift: 34px; --opacity: .58; }
  .ember:nth-child(3n + 3) { --drift: -14px; --opacity: .72; }
  @keyframes emberRise {
    0% { transform: translate3d(0, 0, 0) scale(.3); opacity: 0; }
    10% { opacity: var(--opacity); }
    75% { opacity: calc(var(--opacity) * .7); }
    100% { transform: translate3d(var(--drift), -90vh, 0) scale(1); opacity: 0; }
  }
  @keyframes heatPulse { to { transform: translateY(-10px) scale(1.04); opacity: .65; } }

  .hero-content { position: relative; z-index: 3; padding-top: 120px; padding-bottom: 84px; }
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgb(255 255 255 / 68%);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .eyebrow > span:first-child { flex: 0 0 30px; width: 30px; height: 1px; background: var(--orange); }
  .eyebrow--dark { color: rgb(11 9 8 / 56%); }
  .hero h1 { max-width: 800px; font-size: clamp(4.2rem, 8.7vw, 9rem); }
  .hero-intro { max-width: 600px; margin-top: 32px; color: rgb(255 255 255 / 74%); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
  .hero-utility { display: flex; align-items: center; gap: 16px; margin-top: 26px; color: rgb(255 255 255 / 64%); font-size: .72rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
  .hero-utility a { text-underline-offset: 5px; }
  .hero-utility a:hover { color: white; }
  .scroll-cue {
    position: absolute;
    z-index: 4;
    right: max(24px, calc((100vw - 1220px) / 2));
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(255 255 255 / 56%);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .scroll-cue span { width: 1px; height: 48px; background: linear-gradient(var(--orange), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
  @keyframes scrollLine { 50% { transform: scaleY(.5); transform-origin: top; opacity: .4; } }

  .quick-trust, .trust-strip { background: var(--black); color: var(--cream); border-top: 1px solid var(--line-light); }
  .quick-trust__grid, .trust-strip .shell { display: grid; grid-template-columns: repeat(3, 1fr); }
  .quick-trust p, .trust-strip p { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; padding: 30px 34px; border-right: 1px solid var(--line-light); }
  .quick-trust p:first-child, .trust-strip p:first-child { border-left: 1px solid var(--line-light); }
  .trust-icon { grid-row: 1 / 3; font-family: var(--serif); font-size: 1.5rem; color: var(--orange); }
  .quick-trust strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
  .quick-trust small { color: rgb(242 231 213 / 50%); font-size: .68rem; letter-spacing: .05em; }

  .section { padding-block: clamp(90px, 11vw, 170px); }
  .story-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
    gap: clamp(48px, 9vw, 160px);
    overflow: hidden;
    background: var(--cream);
  }
  .story-intro .eyebrow, .menu-section .eyebrow { color: rgb(11 9 8 / 68%); }
  .story-number {
    position: absolute;
    z-index: 0;
    top: 10%;
    left: -3%;
    color: rgb(11 9 8 / 3.5%);
    font-family: var(--serif);
    font-size: 33vw;
    line-height: 1;
    pointer-events: none;
  }
  .story-copy, .story-side { position: relative; z-index: 1; }
  .story-side { align-self: end; padding-bottom: 6px; }
  .story-side > p { max-width: 430px; margin-bottom: 18px; color: rgb(11 9 8 / 68%); font-size: 1.04rem; }
  .text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    color: var(--black);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
  }
  .text-link:hover { color: var(--fire); }

  .craft-journey { position: relative; background: var(--black); color: white; }
  .craft-stage { position: sticky; z-index: 0; top: 0; height: 100svh; overflow: hidden; }
  .craft-frames, .craft-frame { position: absolute; inset: 0; }
  .craft-frame { margin: 0; opacity: 0; transform: translateX(1.2%) scale(1.065); transform-origin: center; transition: opacity .45s linear, transform .7s var(--ease); }
  .craft-frame.is-active, .craft-frame.is-near { will-change: opacity, transform; }
  .craft-frame.is-active { opacity: 1; transform: translateX(0) scale(1.04); }
  .craft-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) brightness(.72) contrast(1.04); }
  .craft-vignette { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(7 5 4 / 90%) 0 40%, rgb(7 5 4 / 30%) 70%), linear-gradient(0deg, rgb(7 5 4 / 58%), transparent 38%, rgb(7 5 4 / 22%)); }
  .craft-progress { position: absolute; z-index: 3; left: 32px; top: 22%; bottom: 22%; width: 1px; background: rgb(255 255 255 / 18%); }
  .craft-progress progress { display: block; width: 1px; height: 100%; border: 0; appearance: none; writing-mode: vertical-lr; direction: rtl; background: transparent; color: var(--orange); accent-color: var(--orange); }
  .craft-progress progress::-webkit-progress-bar { background: transparent; }
  .craft-progress progress::-webkit-progress-value { background: var(--orange); }
  .craft-progress progress::-moz-progress-bar { background: var(--orange); }
  .craft-hud { position: absolute; z-index: 3; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 14px; color: rgb(255 255 255 / 56%); font-size: .57rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .craft-hud [data-craft-index] { color: var(--orange); }
  .craft-hud [data-craft-label] { padding-left: 14px; border-left: 1px solid rgb(255 255 255 / 24%); }
  .craft-chapters { position: relative; z-index: 2; margin-top: -100svh; }
  .craft-chapter { min-height: 100svh; max-width: 720px; display: flex; flex-direction: column; justify-content: center; padding-block: 120px; }
  .craft-chapter:nth-child(even) { margin-left: auto; max-width: 650px; }
  .craft-copy-card { width: min(100%, 690px); padding: clamp(28px, 4vw, 54px); border-left: 1px solid rgb(240 90 36 / 70%); background: linear-gradient(90deg, rgb(7 5 4 / 78%), rgb(7 5 4 / 34%) 72%, transparent); backdrop-filter: blur(8px); opacity: .92; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .craft-chapter:nth-child(even) .craft-copy-card { border-left: 0; border-right: 1px solid rgb(240 90 36 / 70%); background: linear-gradient(270deg, rgb(7 5 4 / 78%), rgb(7 5 4 / 34%) 72%, transparent); }
  .craft-chapter.is-current .craft-copy-card { opacity: 1; transform: translateY(0); }
  .craft-chapter h2 em, .final-cta h2 em, .recommendations-section h2 em, .faq-section h2 em { color: var(--orange); }
  .craft-chapter h2 { font-size: clamp(3.7rem, 6.6vw, 7.2rem); }
  .craft-copy-card > p:not(.chapter-index) { max-width: 540px; margin-top: 30px; color: rgb(255 255 255 / 72%); font-size: 1.05rem; }
  .chapter-index { margin-bottom: 22px; color: var(--orange); font-size: .65rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
  .ingredient-line { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
  .ingredient-line span { border: 1px solid rgb(255 255 255 / 24%); padding: 8px 14px; border-radius: 999px; color: rgb(255 255 255 / 74%); font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .craft-chapter .button { align-self: flex-start; margin-top: 34px; }

  .menu-section { background: var(--cream); }
  .section-heading { display: grid; grid-template-columns: 1.25fr .6fr; gap: 60px; align-items: end; }
  .section-heading__aside { padding-bottom: 10px; }
  .section-heading__aside p { color: rgb(11 9 8 / 64%); }
  .pizza-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 72px; }
  .pizza-card { position: relative; overflow: hidden; background: #e8d9c2; transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
  .pizza-card:hover, .pizza-card:focus-visible { transform: translateY(-10px); box-shadow: 0 24px 70px rgb(49 31 18 / 18%); }
  .pizza-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #111; }
  .pizza-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
  .pizza-card:hover img, .pizza-card:focus-visible img { transform: scale(1.06) rotate(.5deg); filter: saturate(1.05); }
  .menu-tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 10px; background: rgb(12 10 9 / 84%); color: white; backdrop-filter: blur(8px); font-size: .56rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
  .menu-tag--veg { background: rgb(67 91 36 / 91%); }
  .menu-tag--veg span { color: #dff39c; }
  .pizza-card__body { position: relative; min-height: 240px; padding: 28px; }
  .pizza-card__number { position: absolute; right: 22px; top: 20px; color: rgb(11 9 8 / 52%); font-family: var(--serif); font-size: 1.5rem; }
  .pizza-card :is(h2, h3) { font-size: clamp(2.2rem, 3.4vw, 3.6rem); }
  .pizza-card__body > p:not(.pizza-card__number) { margin-top: 14px; color: rgb(11 9 8 / 62%); font-size: .9rem; line-height: 1.55; }
  .card-order { position: absolute; left: 28px; bottom: 26px; font-size: .62rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; text-underline-offset: 5px; }
  .card-order:hover { color: var(--fire); }
  .menu-note { margin-top: 22px; color: rgb(11 9 8 / 50%); font-size: .7rem; }

  .deals {
    position: relative;
    overflow: hidden;
    color: var(--cream);
    background:
      radial-gradient(circle at 76% 22%, rgb(240 90 36 / 14%), transparent 28%),
      linear-gradient(145deg, #17110e, #080706 72%);
  }
  .deals::before { content: "DEALS"; position: absolute; inset: auto auto -7vw -1vw; color: rgb(255 255 255 / 2.4%); font-family: var(--serif); font-size: 31vw; line-height: .8; }
  .deals-grid { position: relative; display: grid; grid-template-columns: .9fr 1fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
  .deals-intro h2 { font-size: clamp(3.4rem, 6.2vw, 6.6rem); }
  .deals-intro > p:not(.eyebrow) { max-width: 500px; margin-top: 26px; color: rgb(242 231 213 / 62%); }
  .deals-intro .button { margin-top: 32px; }
  .deal-cards { border-top: 1px solid var(--line-light); }
  .deal-card { padding: 34px 0; border-bottom: 1px solid var(--line-light); }
  .deal-card > span { color: var(--orange); font-size: .62rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
  .deal-card h3 { margin-top: 12px; color: white; font-size: clamp(2rem, 3.4vw, 3.5rem); }
  .deal-card p { max-width: 540px; margin-top: 14px; color: rgb(242 231 213 / 56%); font-size: .88rem; }
  .deal-card a { display: inline-block; margin-top: 22px; color: var(--cream); font-size: .62rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; text-underline-offset: 6px; }
  .deal-card a:hover { color: var(--orange); }

  .local-section { position: relative; overflow: hidden; contain: layout paint; color: var(--cream); background: var(--fire); }
  .local-flare { position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgb(255 213 156 / 30%), transparent 28%), radial-gradient(circle at 80% 60%, rgb(95 12 4 / 30%), transparent 34%); filter: blur(30px); }
  .local-grid { position: relative; display: grid; grid-template-columns: .3fr 1.2fr .7fr; gap: 46px; align-items: end; }
  .local-kicker { align-self: start; color: rgb(255 255 255 / 46%); font-size: .6rem; font-weight: 850; letter-spacing: .15em; writing-mode: vertical-rl; }
  .local-section .eyebrow { color: rgb(255 255 255 / 66%); }
  .local-section h2 em { color: #2c1009; }
  .local-copy p { margin-top: 18px; color: rgb(255 255 255 / 74%); }
  .place-marquee { position: relative; display: flex; width: max-content; margin-top: 100px; border-block: 1px solid rgb(255 255 255 / 20%); color: rgb(255 255 255 / 21%); font-family: var(--serif); font-size: clamp(4.5rem, 10vw, 10rem); line-height: 1.2; white-space: nowrap; animation: marquee 34s linear infinite; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  .find-section { background: var(--cream); }
  .find-grid { display: grid; grid-template-columns: 1.05fr .8fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
  .map-card { position: relative; min-height: 650px; overflow: hidden; contain: layout paint; background: #cfb99c; box-shadow: 0 28px 80px rgb(60 39 24 / 16%); }
  .map-card::after { content: ""; position: absolute; inset: 0; background: 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='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E"); mix-blend-mode: multiply; opacity: .22; pointer-events: none; }
  .map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgb(68 44 28 / 12%) 1px, transparent 1px), linear-gradient(90deg, rgb(68 44 28 / 12%) 1px, transparent 1px); background-size: 54px 54px; transform: rotate(-8deg) scale(1.2); }
  .map-road { position: absolute; height: 32px; width: 140%; left: -20%; background: #e9ddc9; border: 1px solid rgb(88 61 40 / 26%); box-shadow: 0 0 0 5px rgb(241 229 209 / 48%); }
  .map-road--one { top: 42%; transform: rotate(-18deg); }
  .map-road--two { top: 58%; transform: rotate(54deg); }
  .map-pin { position: absolute; z-index: 3; left: 54%; top: 47%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%, -50%); }
  .map-pin span { width: 54px; height: 54px; border: 13px solid var(--fire); border-radius: 50% 50% 50% 0; background: var(--cream); transform: rotate(-45deg); box-shadow: 0 12px 30px rgb(77 30 14 / 30%); }
  .map-pin strong { margin-top: 14px; padding: 5px 9px; background: var(--black); color: white; font-size: .56rem; letter-spacing: .14em; }
  .map-card > p { position: absolute; z-index: 2; left: 26px; bottom: 22px; color: rgb(11 9 8 / 54%); font-size: .62rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .find-copy h2 { font-size: clamp(3.7rem, 6.4vw, 7rem); }
  .find-copy address { margin-top: 30px; color: rgb(11 9 8 / 70%); font-family: var(--serif); font-size: 1.3rem; line-height: 1.5; }
  .location-details { margin-top: 32px; border-top: 1px solid var(--line-dark); }
  .location-details > div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
  .location-details dt { color: rgb(11 9 8 / 42%); font-size: .6rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .location-details dd { color: rgb(11 9 8 / 72%); font-size: .85rem; }
  .location-details a { text-underline-offset: 4px; }
  .find-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

  .faq-section { color: var(--cream); background: var(--charcoal); }
  .faq-grid { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(60px, 9vw, 150px); }
  .faq-intro { position: sticky; top: 120px; align-self: start; }
  .faq-intro h2 { font-size: clamp(3.6rem, 5.6vw, 6rem); }
  .faq-intro > p:last-child { margin-top: 28px; color: rgb(242 231 213 / 56%); }
  .faq-intro a { color: white; text-underline-offset: 5px; }
  .faq-list { border-top: 1px solid var(--line-light); }
  .faq-list details { border-bottom: 1px solid var(--line-light); }
  .faq-list summary { list-style: none; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 27px 0; cursor: pointer; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.2; }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary span { color: var(--orange); font-family: var(--sans); font-size: 1.3rem; transition: transform .3s var(--ease); }
  .faq-list details[open] summary span { transform: rotate(45deg); }
  .faq-list details p { max-width: 650px; padding: 0 50px 28px 0; color: rgb(242 231 213 / 58%); }

  .final-cta { position: relative; min-height: 88svh; display: grid; place-items: center; overflow: hidden; contain: paint; color: white; background: var(--black); }
  .final-cta__media { position: absolute; inset: 0; }
  .final-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.45); transform: scale(1.04); }
  .final-cta__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent, rgb(5 4 3 / 78%) 78%), linear-gradient(90deg, rgb(5 4 3 / 74%), rgb(5 4 3 / 14%) 65%); }
  .final-cta__content { position: relative; z-index: 2; padding-block: 120px; }
  .final-cta h2 { max-width: 780px; font-size: clamp(4.4rem, 9vw, 9.4rem); }
  .final-cta__content > p:not(.eyebrow):not(.order-note) { max-width: 580px; margin-top: 28px; color: rgb(255 255 255 / 68%); font-size: 1.05rem; }
  .final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
  .order-note { margin-top: 24px; color: rgb(255 255 255 / 54%); font-size: .68rem; }
  .order-note span { color: #b7d878; }

  .site-footer { padding: 76px 0 28px; color: var(--cream); background: #090807; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 52px; padding-bottom: 58px; }
  .footer-grid > * { min-width: 0; }
  .footer-brand img { width: 114px; height: 114px; object-fit: contain; background: white; border-radius: 50%; }
  .footer-brand p { margin-top: 20px; color: rgb(242 231 213 / 54%); font-family: var(--serif); font-size: 1.2rem; }
  .footer-grid h2 { margin-bottom: 20px; color: rgb(242 231 213 / 68%); font-family: var(--sans); font-size: .58rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
  .footer-grid address, .footer-grid a { display: block; margin-bottom: 9px; color: rgb(242 231 213 / 68%); font-size: .82rem; text-decoration: none; }
  .footer-grid a:hover { color: white; text-decoration: underline; text-underline-offset: 4px; }
  .footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; padding-top: 22px; border-top: 1px solid var(--line-light); color: rgb(242 231 213 / 68%); font-size: .62rem; }
  .footer-bottom > a { justify-self: end; }
  .footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
  .footer-bottom a { text-decoration: none; }
  .footer-bottom a:hover { color: white; }
  .footer-button { border: 0; padding: 0; color: inherit; background: transparent; cursor: pointer; }
  .footer-button:hover { color: white; text-decoration: underline; }
  .page-hidden .ember, .page-hidden .heat-shimmer, .page-hidden .place-marquee { animation-play-state: paused; }

  .recommendations-section { color: var(--cream); background: #16110e; }
  .recommendations-section .section-heading__aside, .recommendations-section .section-heading__aside p { color: rgb(255 255 255 / 72%); }
  .recommendations-section .pizza-card__body { color: var(--black); }
  .menu-prices { display: grid; flex: 0 0 auto; gap: 4px; text-align: right; }
  .menu-prices > span { display: flex; align-items: baseline; justify-content: flex-end; gap: 6px; }
  .menu-prices small { color: rgb(11 9 8 / 48%); font-size: .55rem; font-weight: 700; text-transform: uppercase; }
  .menu-prices strong { color: var(--fire); font-size: .76rem; white-space: nowrap; }
  .recommendations-section .menu-prices small { color: rgb(255 255 255 / 48%); }
  .menu-allergens { margin-top: 8px; color: rgb(11 9 8 / 56%); font-size: .64rem; }
  .public-offers { color: white; background: var(--fire); }
  .public-offers .eyebrow, .public-offers .section-heading__aside { color: rgb(255 255 255 / 70%); }
  .offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .public-offer { display: grid; grid-template-columns: minmax(0, .7fr) 1fr; min-height: 300px; color: var(--black); background: var(--cream); }
  .public-offer:not(:has(img)) { grid-template-columns: 1fr; }
  .public-offer > img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
  .public-offer > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 52px); }
  .public-offer h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.2rem); font-weight: 400; line-height: .95; }
  .public-offer p:not(.eyebrow) { margin: 16px 0 0; color: rgb(11 9 8 / 66%); }
  .public-offer small { margin-top: 18px; color: rgb(11 9 8 / 48%); }
  .offer-price { margin-top: 16px; color: var(--fire); font-size: 1.2rem; }
  .business-section { background: var(--cream); }
  .business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); }
  .business-grid h2 { font-size: clamp(4rem, 7vw, 8rem); }
  .business-grid h3 { margin: 0 0 24px; font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
  .business-grid address { margin-top: 22px; color: rgb(11 9 8 / 68%); font-style: normal; }
  .business-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
  .public-hours { display: grid; grid-template-columns: 1fr auto; gap: 0; margin: 0; border-top: 1px solid var(--line-dark); }
  .public-hours dt, .public-hours dd { margin: 0; padding: 11px 0; border-bottom: 1px solid var(--line-dark); }
  .public-hours dt { color: rgb(11 9 8 / 56%); }
  .public-hours dd { text-align: right; }
  .service-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
  .special-hours-note { width: 100%; margin: 16px 0 0; border-left: 3px solid var(--fire); padding-left: 12px; font-size: .75rem; }

  .mobile-actions { display: none; }
  body.menu-open { overflow: hidden; }

  .consent {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    width: min(680px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    padding: 24px;
    background: var(--cream);
    color: var(--black);
    border: 1px solid rgb(11 9 8 / 16%);
    box-shadow: 0 24px 80px rgb(0 0 0 / 34%);
  }
  .consent[hidden] { display: none; }
  .consent-kicker { margin-bottom: 8px; color: var(--fire); font-size: .57rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .consent h2 { font-size: 1.8rem; }
  .consent > div > p:last-child { margin-top: 10px; color: rgb(11 9 8 / 62%); font-size: .78rem; line-height: 1.45; }
  .consent-actions { display: grid; gap: 7px; min-width: 200px; }
  .consent-actions .button { min-height: 42px; font-size: .6rem; }
  .text-button { border: 0; padding: 6px; color: rgb(11 9 8 / 64%); background: transparent; font-size: .65rem; text-decoration: underline; cursor: pointer; }

  .preferences { width: min(600px, calc(100vw - 32px)); border: 0; padding: 0; color: var(--black); background: var(--cream); box-shadow: 0 26px 100px rgb(0 0 0 / 45%); }
  .preferences::backdrop { background: rgb(0 0 0 / 72%); backdrop-filter: blur(5px); }
  .preferences form { padding: 28px; }
  .preferences-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding-bottom: 20px; }
  .preferences h2 { font-size: 2.4rem; }
  .icon-button { width: 42px; height: 42px; border: 1px solid rgb(11 9 8 / 22%); color: var(--black); background: transparent; cursor: pointer; font-size: 1.4rem; }
  .preference-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line-dark); }
  .preference-row strong { font-family: var(--serif); font-size: 1.3rem; }
  .preference-row p { margin-top: 5px; color: rgb(11 9 8 / 58%); font-size: .76rem; }
  .preference-row input { width: 22px; height: 22px; accent-color: var(--fire); }

  .noscript { position: fixed; z-index: 100; inset: auto 12px 12px; padding: 14px 18px; background: var(--cream); color: var(--black); border: 2px solid var(--fire); font-size: .8rem; }

  .reveal { opacity: 1; transform: none; }
  .js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .js .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

@layer utilities {
  [hidden] { display: none !important; }
}

@layer responsive {
  @media (max-width: 1040px) {
    :root { --shell: min(100% - 40px, 920px); }
    .site-header { grid-template-columns: 1fr auto auto; padding-inline: 20px; }
    .desktop-nav { display: none; }
    .header-order { margin-left: auto; }
    .menu-toggle {
      justify-self: end;
      display: grid;
      place-content: center;
      gap: 6px;
      width: 46px;
      height: 46px;
      border: 1px solid rgb(255 255 255 / 25%);
      background: transparent;
      color: white;
    }
    .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-menu {
      position: fixed;
      z-index: 19;
      inset: 0;
      display: grid;
      align-items: center;
      padding: 110px 28px 90px;
      color: var(--cream);
      background: rgb(11 9 8 / 98%);
    }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu nav { width: min(680px, 100%); margin-inline: auto; display: grid; gap: 5px; }
    .mobile-menu nav > a:not(.button) { padding: 8px 0; font-family: var(--serif); font-size: clamp(2.7rem, 7vw, 4.8rem); line-height: 1; text-decoration: none; }
    .mobile-menu .button { margin-top: 24px; }
    .story-intro { grid-template-columns: 1fr; }
    .story-side { max-width: 620px; }
    .section-heading { grid-template-columns: 1fr; }
    .section-heading__aside { max-width: 620px; }
    .pizza-grid { grid-template-columns: repeat(2, 1fr); }
    .pizza-card:last-child { grid-column: 1 / -1; width: calc(50% - 8px); }
    .deals-grid, .faq-grid { grid-template-columns: 1fr; }
    .faq-intro { position: static; max-width: 700px; }
    .local-grid { grid-template-columns: auto 1fr; }
    .local-copy { grid-column: 2; max-width: 640px; }
    .find-grid { grid-template-columns: 1fr; }
    .map-card { min-height: 460px; }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
  }

  @media (max-width: 760px) {
    :root { --shell: calc(100vw - 32px); --header-h: 70px; }
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    h2 { font-size: clamp(3rem, 15vw, 5.5rem); }
    .utility-strip { display: none; }
    .site-header, .site-header.is-scrolled { top: 0; height: 70px; grid-template-columns: 1fr auto; padding-inline: 16px; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-mark img { width: 37px; height: 37px; }
    .brand-name strong { font-size: 1.2rem; }
    .brand-name small { font-size: .48rem; }
    .header-order { display: none; }
    .menu-toggle {
      justify-self: end;
      display: grid;
      place-content: center;
      gap: 6px;
      width: 46px;
      height: 46px;
      border: 1px solid rgb(255 255 255 / 25%);
      background: transparent;
      color: white;
    }
    .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
    .mobile-menu {
      position: fixed;
      z-index: 19;
      inset: 0;
      display: grid;
      align-items: center;
      padding: 100px 24px 90px;
      color: var(--cream);
      background: rgb(11 9 8 / 98%);
    }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu nav { display: grid; gap: 5px; }
    .mobile-menu nav > a:not(.button) { padding: 8px 0; font-family: var(--serif); font-size: 2.7rem; line-height: 1; text-decoration: none; }
    .mobile-menu .button { margin-top: 24px; }

    .hero { min-height: 92svh; align-items: end; }
    .hero-media img { object-position: 62% center; transform: none; }
    .hero-shade { background: linear-gradient(0deg, rgb(5 4 3 / 96%) 0%, rgb(5 4 3 / 76%) 48%, rgb(5 4 3 / 36%) 100%); }
    .hero-content { padding-top: 120px; padding-bottom: 82px; }
    .hero h1 { font-size: clamp(4rem, 20vw, 6.3rem); }
    .hero-intro { margin-top: 22px; font-size: 1rem; }
    .hero-actions { display: grid; margin-top: 28px; }
    .hero-actions .button { width: 100%; }
    .hero-utility { justify-content: center; font-size: .59rem; }
    .scroll-cue { display: none; }
    .heat-shimmer { display: none; }
    .quick-trust__grid { grid-template-columns: 1fr; padding-block: 2px; }
    .quick-trust p, .quick-trust p:first-child { padding: 20px 0; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .quick-trust p:last-child { border-bottom: 0; }

    .section { padding-block: 88px; }
    .story-intro { gap: 34px; }
    .story-number { font-size: 76vw; top: 0; }
    .story-side > p { font-size: .95rem; }

    .craft-progress { left: 16px; }
    .craft-frame { transform: none !important; }
    .craft-frame img { object-position: 58% center; }
    .craft-vignette { background: linear-gradient(0deg, rgb(7 5 4 / 96%) 0 34%, rgb(7 5 4 / 48%) 75%); }
    .craft-chapters { width: calc(100vw - 52px); margin-left: 36px; }
    .craft-chapter, .craft-chapter:nth-child(even) { min-height: 100svh; max-width: none; margin-left: 0; justify-content: flex-end; padding-bottom: 96px; }
    .craft-copy-card, .craft-chapter:nth-child(even) .craft-copy-card { padding: 24px 18px 26px; border-left: 1px solid rgb(240 90 36 / 70%); border-right: 0; background: linear-gradient(90deg, rgb(7 5 4 / 88%), rgb(7 5 4 / 54%) 82%, transparent); backdrop-filter: blur(5px); }
    .craft-chapter h2 { font-size: clamp(3.3rem, 15vw, 5.2rem); }
    .craft-copy-card > p:not(.chapter-index) { margin-top: 20px; font-size: .92rem; }
    .craft-hud { display: none; }

    .pizza-grid { grid-template-columns: 1fr; margin-top: 46px; }
    .pizza-card:last-child { grid-column: auto; width: auto; }
    .pizza-card__body { min-height: 220px; }
    .section-heading { gap: 24px; }
    .deals-grid { gap: 70px; }
    .local-grid { grid-template-columns: 1fr; }
    .local-kicker { display: none; }
    .local-copy { grid-column: auto; }
    .place-marquee { margin-top: 70px; font-size: 5rem; }

    .find-grid { gap: 54px; }
    .map-card { min-height: 360px; }
    .location-details > div { grid-template-columns: 90px 1fr; }
    .find-actions { display: grid; }
    .faq-grid { gap: 50px; }
    .faq-list summary { padding: 22px 0; font-size: 1.25rem; }
    .faq-list details p { padding-right: 10px; }
    .final-cta { min-height: 86svh; align-items: end; }
    .final-cta__media img { object-position: 65% center; transform: none; }
    .final-cta__content { padding-block: 100px 80px; }
    .final-actions { display: grid; }
    .final-actions .button { width: 100%; }

    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid h2 { font-size: .58rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-bottom nav { justify-content: flex-start; }
    .footer-bottom > a { justify-self: start; }

    .mobile-actions {
      position: fixed;
      z-index: 50;
      left: 0;
      right: 0;
      bottom: 0;
      display: grid;
      grid-template-columns: .75fr 1.5fr .75fr;
      min-height: calc(64px + env(safe-area-inset-bottom));
      padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
      color: white;
      background: rgb(11 9 8 / 96%);
      border-top: 1px solid rgb(255 255 255 / 12%);
      backdrop-filter: blur(12px);
    }
    .mobile-actions a { min-height: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-radius: 2px; font-size: .54rem; font-weight: 850; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
    .mobile-actions a span { font-size: .9rem; }
    .mobile-actions__primary { background: var(--fire); }
    .mobile-actions__secondary { color: rgb(255 255 255 / 72%); }

    .consent { right: 8px; bottom: calc(72px + env(safe-area-inset-bottom)); width: calc(100vw - 16px); grid-template-columns: 1fr; gap: 18px; padding: 20px; }
    .consent-actions { grid-template-columns: 1fr 1fr; }
    .consent-actions .text-button { grid-column: 1 / -1; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-media img, .craft-frame, .final-cta__media img { transform: none !important; }
    .embers, .heat-shimmer { display: none; }
    .js .reveal { opacity: 1; transform: none; }
    .craft-stage { position: absolute; inset: 0; height: auto; }
    .craft-chapters { margin-top: 0; }
    .craft-chapter { min-height: auto; padding-block: 110px; }
    .craft-frame { display: none; opacity: 0 !important; }
    .craft-frame:first-child { display: block; opacity: 1 !important; }
    .craft-copy-card, .craft-chapter:nth-child(even) .craft-copy-card { opacity: 1; transform: none; }
    .place-marquee { transform: none !important; }
  }

  @media (forced-colors: active) {
    .button, .menu-tag, .map-pin strong { border: 1px solid ButtonText; }
    .hero-shade, .craft-vignette { background: rgb(0 0 0 / 70%); }
  }
}
