/* Tano's Italian Fresh Food. Colours come from the Tano's Rocky sign. */
:root {
  /* straight off the sign: black board, white ring and letters, tomato-red slices and chimney */
  --char: #0F0E0E;
  --coal: #181616;
  --smoke: #221F1F;
  --flour: #F4F1EB;
  --paper: #F2EEE7;
  --ink: #141212;
  --red: #D42F2C;      /* logo red: fills, buttons */
  --ember: #EC5A52;    /* the same red, lifted so small text passes contrast on black */
  --brick: #B3241F;    /* the same red, deepened for text on paper */
  --tri-green: #1E8A4B;
  --maiolica: #2E5E8C;
  --muted: rgba(244, 241, 235, .66);
  --line: rgba(244, 241, 235, .15);
  --serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --gut: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: dark; scroll-padding-top: 90px; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
h1, h2, h3, .story__text { text-wrap: balance; }
p { text-wrap: pretty; }
a[href^="tel"] { white-space: nowrap; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  margin: 0;
  background: var(--char);
  color: var(--flour);
  font: 400 1.0625rem/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* flour-dust grain over everything */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img, video, svg, canvas, iframe { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 4px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 300; background: var(--flour); color: var(--ink); padding: .6em 1em; border-radius: 8px; }
.skip:focus { top: 12px; }

/* type */
.display {
  font: 500 clamp(3.2rem, 9vw, 9rem)/.92 var(--serif);
  letter-spacing: -.015em;
}
.display em, .hl { font-style: italic; color: var(--ember); font-weight: 550; }
/* line masks from the text splitter: leave room for descenders (y, g) */
.display span:has(> [data-line]) { padding-bottom: .16em; margin-bottom: -.16em; }
.eyebrow {
  font: 600 .75rem/1 var(--sans);
  letter-spacing: .3em; text-transform: uppercase; color: var(--ember);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .85em 1.45em; border-radius: 999px;
  font: 600 .95rem/1 var(--sans); text-decoration: none; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--flour); color: var(--ink); }
.btn--ghost { border: 1px solid rgba(244, 241, 235, .4); color: var(--flour); }
.btn--ghost:hover { border-color: var(--flour); background: rgba(244, 241, 235, .08); }
.btn:active { transform: scale(.97); }

/* open / closed pill */
.status { display: inline-flex; align-items: center; gap: .55em; font: 500 .82rem/1.2 var(--sans); color: var(--muted); }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.status[data-open="true"] .status__dot { background: #7BD88F; box-shadow: 0 0 0 0 rgba(123, 216, 143, .6); animation: pulse 2s infinite; }
.status[data-open="true"] { color: var(--flour); }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(123, 216, 143, 0); } 100% { box-shadow: 0 0 0 0 rgba(123, 216, 143, 0); } }

/* ------------------------------------------------ nav */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: clamp(12px, 2.4vw, 32px);
  padding: max(14px, env(safe-area-inset-top)) max(var(--gut), env(safe-area-inset-right)) 14px max(var(--gut), env(safe-area-inset-left));
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.nav--solid { background: rgba(15, 14, 14, .78); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.nav__logo img { width: 52px; height: 52px; transition: transform .6s var(--ease); }
.nav__logo:hover img { transform: rotate(-12deg); }
.nav__links { display: flex; gap: clamp(16px, 2.4vw, 36px); justify-self: center; }
.nav__links a { position: relative; text-decoration: none; font: 500 .9rem/1 var(--sans); padding: 8px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--ember); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__call { justify-self: end; }
.nav__call-short { display: none; }

/* ------------------------------------------------ loader */
.loader { display: none; }
.motion .loader {
  position: fixed; inset: 0; z-index: 200; display: grid; place-content: center; justify-items: center; gap: 22px;
  background: var(--char);
}
.loader__arch { width: min(58vw, 380px); overflow: visible; }
.loader__word { font: 500 clamp(1rem, 2.4vw, 1.4rem)/1 var(--serif); letter-spacing: .6em; margin-right: -.6em; text-transform: uppercase; }
.loaded .loader { pointer-events: none; }
/* ponytail: if the script never runs, the loader gets out of the way on its own */
.motion .loader { animation: bail .4s 6s forwards; }
@keyframes bail { to { opacity: 0; visibility: hidden; } }

/* ------------------------------------------------ hero */
.hero { position: relative; }
.motion .hero { height: 330vh; }
.hero__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; background: var(--char); }
.motion .hero__pin { position: sticky; top: 0; }
.hero__stage {
  position: absolute; inset: 0;
  background: url(../fire/d/060.webp) center / cover;
  clip-path: inset(20vh 33vw 16vh 33vw round 17vw 17vw 0 0);
}
.motion .hero__stage { background: var(--char); }
.hero__fire { width: 100%; height: 100%; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, transparent 35%, rgba(15, 14, 14, .55) 100%),
    linear-gradient(to top, rgba(15, 14, 14, .9), transparent 40%);
  opacity: var(--shade, .35);
}
.hero__ring {
  position: absolute; left: 50%; top: var(--ring-top, 10vh); width: var(--ring, 44vw);
  translate: -50% 0; overflow: visible; pointer-events: none;
  clip-path: inset(-5% -5% 50% -5%);
}
.hero__ring text { font: 600 13.5px/1 var(--sans); letter-spacing: .34em; fill: var(--flour); opacity: .8; transform-box: view-box; transform-origin: 50% 50%; }
.hero__title {
  position: absolute; inset: 0; display: grid; align-content: center; gap: 12vh;
  padding: 0 var(--gut); pointer-events: none;
  font: 500 clamp(3.2rem, 8.8vw, 10rem)/.92 var(--serif); letter-spacing: -.02em;
}
.hero__line { display: flex; justify-content: space-between; }
.w { display: inline-block; }
.w2, .w4 { font-style: italic; font-weight: 550; }
.w4 { color: var(--ember); }
.hero__foot {
  position: absolute; left: var(--gut); right: var(--gut); bottom: clamp(20px, 5vh, 48px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero__lede { max-width: 30ch; color: var(--muted); font-size: 1rem; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__cue {
  position: absolute; left: 50%; bottom: clamp(20px, 5vh, 48px); translate: -50% 0;
  display: grid; justify-items: center; gap: 10px;
  font: 600 .68rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.hero__cue i { width: 1px; height: 42px; background: linear-gradient(var(--ember), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero__after { display: none; }
.motion .hero__after {
  display: block; position: absolute; inset: auto 0 50% 0; translate: 0 50%; text-align: center; padding: 0 var(--gut);
  font: 500 clamp(3rem, 9.4vw, 9.5rem)/.95 var(--serif); letter-spacing: -.02em; opacity: 0;
}
.hero__after em { color: var(--ember); font-weight: 550; }

/* ------------------------------------------------ story */
.story { padding: clamp(96px, 16vh, 200px) var(--gut); background: var(--char); display: grid; gap: 36px; justify-items: start; }
.story__text {
  max-width: 24ch;
  font: 500 clamp(2.15rem, 5vw, 4.75rem)/1.1 var(--serif); letter-spacing: -.005em;
}
.story__text .hl { color: var(--ember); }

/* ------------------------------------------------ dough (biga) */
.dough { position: relative; background: var(--coal); }
.motion .dough { height: 320vh; }
.dough__pin {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: clamp(24px, 5vw, 80px);
  padding: 120px var(--gut) 80px;
}
.motion .dough__pin { position: sticky; top: 0; height: 100svh; }
.dough__bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dough__bubbles span { position: absolute; bottom: -80px; border: 1.2px solid rgba(244, 241, 235, .2); border-radius: 50%; }
.dough__gauge { position: relative; }
.gauge { width: 100%; overflow: visible; }
.gauge path { fill: none; stroke-width: 9; stroke-linecap: round; }
.gauge__track { stroke: var(--line); }
.gauge__window { stroke: var(--ember); opacity: .28; stroke-width: 22; stroke-linecap: butt; }
.gauge__fill { stroke: var(--flour); }
.gauge__ticks text { font: 600 7px/1 var(--sans); fill: var(--muted); letter-spacing: .1em; text-anchor: middle; }
.gauge__ticks line { stroke: var(--line); stroke-width: 1; }
.gauge__num {
  position: absolute; left: 50%; bottom: 0; translate: -50% 0;
  font: 500 clamp(4.8rem, 13.5vw, 12.5rem)/.8 var(--serif);
  font-variant-numeric: tabular-nums lining-nums; letter-spacing: -.02em; white-space: nowrap;
}
.gauge__num small { font: 600 .8rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; margin-left: .6em; color: var(--ember); }
.dough__copy { position: relative; display: grid; gap: 28px; }
.steps { display: grid; gap: 40px; }
.motion .steps { gap: 0; }
.motion .step { grid-area: 1 / 1; opacity: 0; }
.step h3 { font: 500 clamp(2.4rem, 4.8vw, 4.6rem)/1.02 var(--serif); letter-spacing: -.01em; margin-bottom: 18px; }
.step p { color: var(--muted); max-width: 34ch; font-size: 1.12rem; }

/* ------------------------------------------------ arch frame (the logo's oven mouth) */
.arch {
  position: relative; aspect-ratio: 3 / 4; border-radius: 999em 999em 0 0; overflow: hidden;
  background: var(--smoke); outline: 1px solid rgba(244, 241, 235, .22); outline-offset: 9px;
}
.arch video, .arch img, .arch iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.arch figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px; font-size: .75rem; color: var(--flour); background: linear-gradient(transparent, rgba(15, 14, 14, .75)); text-align: center; }
.arch--paper { background: var(--paper); display: grid; place-items: center; }

/* ------------------------------------------------ process (horizontal) */
.process { position: relative; background: var(--char); }
.motion .process { height: 420vh; }
.process__pin { position: relative; overflow: hidden; padding: 110px 0 70px; }
.motion .process__pin { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; padding: 70px 0 40px; }
.process__track { display: flex; align-items: center; gap: clamp(40px, 6vw, 110px); padding: 0 var(--gut); overflow-x: auto; }
.motion .process__track { overflow: visible; will-change: transform; }
.panel { flex: none; width: clamp(260px, 26vw, 400px); display: grid; gap: 10px; }
.panel .arch { margin-bottom: 22px; max-height: 58svh; }
.panel h3 { font: 500 clamp(1.95rem, 2.8vw, 2.7rem)/1.02 var(--serif); letter-spacing: -.01em; }
.panel h3 em { color: var(--ember); font-weight: 550; }
.panel p:last-child { color: var(--muted); max-width: 32ch; }
.panel__n { font: italic 500 1.4rem/1 var(--serif); color: var(--ember); }
.panel--intro { width: clamp(300px, 38vw, 620px); gap: 22px; }
.cutpizza { width: 82%; overflow: visible; }
.process__bar { position: absolute; left: var(--gut); right: var(--gut); bottom: 28px; height: 1px; background: var(--line); display: none; }
.motion .process__bar { display: block; }
.process__bar i { position: absolute; inset: 0; background: var(--ember); transform-origin: left; transform: scaleX(0); }

/* ------------------------------------------------ menu */
.menu { background: var(--paper); color: var(--ink); padding: clamp(90px, 14vh, 160px) var(--gut) clamp(70px, 10vh, 120px); }
.menu .display em { color: var(--brick); }
.menu__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 40px; margin-bottom: clamp(36px, 6vh, 64px); }
.menu__intro { max-width: 30ch; font-size: 1.1rem; color: rgba(20, 18, 18, .75); }
.menu__body { display: grid; grid-template-columns: minmax(0, 1fr) clamp(260px, 26vw, 380px); gap: clamp(32px, 5vw, 80px); align-items: start; }
.menu__tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.tab {
  appearance: none; border: 1px solid rgba(20, 18, 18, .3); background: transparent; color: var(--ink);
  font: 600 .95rem/1 var(--sans); padding: .8em 1.3em; border-radius: 999px; cursor: pointer; min-height: 44px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.tab sup { font-size: .68em; margin-left: .35em; opacity: .6; }
.tab[aria-selected="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tab:hover:not([aria-selected="true"]) { background: rgba(20, 18, 18, .07); }
.menu__sub { font: 600 .75rem/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--brick); margin-bottom: 8px; }
.dishes { columns: 2 340px; column-gap: clamp(32px, 4vw, 64px); }
.dish { break-inside: avoid; padding: 16px 0 15px; border-bottom: 1px solid rgba(20, 18, 18, .14); }
.dish__row { display: flex; align-items: baseline; gap: 10px; }
.dish__name { font: 500 clamp(1.45rem, 2vw, 1.8rem)/1.1 var(--serif); letter-spacing: 0; transition: color .3s var(--ease), translate .4s var(--ease); }
.dish__dots { flex: 1; min-width: 18px; border-bottom: 2px dotted rgba(20, 18, 18, .3); translate: 0 -.28em; }
.dish__price { font: 600 1.02rem/1 var(--sans); font-variant-numeric: tabular-nums; }
.dish__price .ask { font-weight: 500; font-style: italic; color: var(--brick); }
.dish__desc { margin-top: 5px; font-size: .92rem; line-height: 1.45; color: rgba(20, 18, 18, .7); max-width: 44ch; }
.dish .tag { display: inline-block; margin-left: .6em; font: normal 600 .62rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--brick); vertical-align: .15em; }
.dish:hover .dish__name { color: var(--brick); translate: 6px 0; }
.menu__note { margin-top: 26px; font-size: .88rem; color: rgba(20, 18, 18, .6); }
.menu__side { position: sticky; top: 100px; display: grid; gap: 30px; }
.menu__side .arch { outline-color: rgba(20, 18, 18, .25); }
.order { background: var(--ink); color: var(--paper); padding: 26px 26px 24px; border-top: 3px solid var(--red); }
.order__k { font: 600 .72rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--ember); }
.order__phone { display: block; margin: 12px 0 8px; font: 500 clamp(1.9rem, 2.6vw, 2.4rem)/1 var(--serif); font-variant-numeric: lining-nums; text-decoration: none; }
.order__phone:hover { color: var(--ember); }
.order__hours { font-size: .88rem; color: rgba(242, 238, 231, .7); }

/* ------------------------------------------------ pasta */
.pasta {
  position: relative; overflow: hidden; background: var(--coal);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
  padding: clamp(100px, 16vh, 180px) var(--gut);
}
.pasta__copy { display: grid; gap: 24px; justify-items: start; grid-column: 1; grid-row: 1; position: relative; z-index: 1; }
.pasta__copy > p:not(.eyebrow) { max-width: 38ch; color: var(--muted); font-size: 1.12rem; }
.rosette { grid-column: 2; grid-row: 1; width: min(100%, 560px); justify-self: center; overflow: visible; }
.ribbon { width: min(100%, 520px); overflow: visible; }
.ribbon path { fill: none; stroke: #F1D8A0; stroke-width: 14; stroke-linecap: round; }

/* ------------------------------------------------ reviews */
.reviews { background: var(--red); color: #fff; padding: clamp(100px, 16vh, 170px) 0; overflow: hidden; }
.reviews .display { color: #fff; }
.reviews__head { display: grid; justify-items: center; gap: 16px; text-align: center; padding: 0 var(--gut); margin-bottom: clamp(48px, 8vh, 80px); }
.stars { position: relative; font-size: 1.5rem; letter-spacing: .2em; color: rgba(255, 255, 255, .3); }
.stars::before { content: "★★★★★"; }
.stars span { position: absolute; inset: 0; width: var(--fill); overflow: hidden; color: #fff; white-space: nowrap; }
.stars span::before { content: "★★★★★"; }
.reviews__from { color: #fff; font-size: .95rem; }
.marquee { overflow: hidden; padding: 10px 0; }
.marquee + .marquee { margin-top: 18px; }
.marquee__row { display: flex; width: max-content; gap: 18px; }
.marquee__row li {
  flex: none; width: clamp(280px, 30vw, 440px); padding: 28px 28px 24px; display: grid; gap: 18px; align-content: space-between;
  border: 1px solid rgba(255, 255, 255, .38); border-radius: 999em 999em 18px 18px / 120px 120px 18px 18px;
}
.marquee__row q { font: italic 500 clamp(1.4rem, 1.9vw, 1.75rem)/1.28 var(--serif); quotes: "“" "”"; }
.marquee__row cite { font: normal 600 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #fff; }

/* ------------------------------------------------ visit */
.visit {
  background: var(--paper); color: var(--ink);
  display: grid; grid-template-columns: 1fr minmax(260px, 40%); gap: clamp(40px, 6vw, 100px); align-items: center;
  padding: clamp(100px, 14vh, 160px) var(--gut);
}
.visit .display em { color: var(--brick); }
.visit__info { display: grid; gap: 26px; justify-items: start; }
.visit__addr { justify-self: stretch; text-wrap: wrap; font: 500 clamp(1.6rem, 2.6vw, 2.25rem)/1.18 var(--serif); font-variant-numeric: lining-nums; }
.visit .status { color: rgba(20, 18, 18, .7); font-size: 1rem; }
.visit .status[data-open="true"] { color: var(--ink); }
.hours { border-collapse: collapse; width: min(100%, 460px); font-size: .98rem; }
.hours th, .hours td { text-align: left; padding: 10px 0; border-bottom: 1px solid rgba(20, 18, 18, .14); font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.today th, .hours tr.today td { font-weight: 700; color: var(--brick); }
.hours tr.today th::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--brick); margin-right: 10px; vertical-align: .12em; }
.visit__ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.visit .btn--ghost { color: var(--ink); border-color: rgba(20, 18, 18, .35); }
.visit .btn--ghost:hover { background: rgba(20, 18, 18, .06); border-color: var(--ink); }
.visit .btn--red:hover { background: var(--ink); color: var(--paper); }
.arch--map { outline-color: rgba(20, 18, 18, .25); }
.arch--map iframe { filter: grayscale(.85) sepia(.2) contrast(1.05); }

/* ------------------------------------------------ footer */
.foot { background: var(--char); padding: clamp(60px, 10vh, 110px) var(--gut) 110px; overflow: hidden; }
.foot__grazie {
  font: italic 500 clamp(5rem, 25vw, 26rem)/.8 var(--serif); letter-spacing: -.03em; color: var(--flour);
  margin: 0 0 clamp(40px, 6vh, 70px) -.04em; white-space: nowrap;
}
.foot__grazie .char { display: inline-block; }
.foot__row { position: relative; display: grid; grid-template-columns: auto 1.4fr 1fr 1fr; gap: 28px 40px; align-items: start; font-size: .95rem; color: var(--muted); padding-top: 38px; }
.foot__row::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--tri-green) 0 33.33%, var(--flour) 0 66.66%, var(--red) 0); }
.foot__row a { color: var(--flour); }
.foot__credit { justify-self: end; text-align: right; }
/* MEM credit, same pill as the other MEM client sites */
.foot .mem-credit { display: inline-flex; align-items: center; gap: 10px; padding: 4px 14px 4px 4px; border-radius: 999px; border: 1px solid rgba(244, 241, 235, .18); color: var(--muted); text-decoration: none; font-size: .86rem; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.foot .mem-credit:hover { background: #080c10; color: #f0f4f8; border-color: #00e5a0; }
.foot .mem-credit strong { color: var(--flour); font-weight: 600; }
.foot .mem-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: #080c10; flex: none; }
.foot .mem-mark img { width: 20px; height: 20px; }

/* ------------------------------------------------ mobile dock */
.dock { display: none; }

/* ------------------------------------------------ responsive */
@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; padding-top: max(10px, env(safe-area-inset-top)); padding-bottom: 10px; }
  html { scroll-padding-bottom: 90px; }
  .nav__links { display: none; }
  .nav__logo img { width: 44px; height: 44px; }
  .nav .status { justify-self: end; font-size: .75rem; }
  .nav__call-long { display: none; }
  .nav__call-short { display: inline; }
  .nav__call { min-height: 42px; padding: .7em 1.1em; }

  .dough__pin { grid-template-columns: 1fr; align-content: center; padding-top: 90px; gap: 34px; }
  .dough__gauge { width: min(100%, 440px); justify-self: center; }
  .menu__body { grid-template-columns: 1fr; }
  .menu__side { position: static; grid-template-columns: 1fr 1fr; align-items: end; }
  .pasta { grid-template-columns: 1fr; }
  .rosette { grid-column: 1; grid-row: 2; width: min(78%, 360px); }
  .visit { grid-template-columns: 1fr; }
  .arch--map { width: min(100%, 420px); justify-self: center; }
  .foot__row { grid-template-columns: auto 1fr; }
  .foot__credit { justify-self: start; text-align: left; grid-column: 1 / -1; }

  .dock {
    display: flex; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
    background: rgba(15, 14, 14, .86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    translate: 0 110%; transition: translate .5s var(--ease);
  }
  .dock .btn { flex: 1; }
  .dock--on { translate: 0 0; }
}
@media (max-width: 360px) {
  .nav .status { display: none; }
}
@media (max-width: 560px) {
  .menu__tabs { gap: 6px; flex-wrap: nowrap; }
  .tab { padding: .75em .95em; font-size: .9rem; }
  .menu__side { grid-template-columns: 1fr; }
  .menu__side .arch { width: 78%; justify-self: center; }
  .panel { width: 76vw; }
  .panel--intro { width: 84vw; }
  .panel .arch { max-height: 50svh; }
  .foot__row { grid-template-columns: 1fr; }
}
/* portrait: stack the words above and below the oven mouth */
@media (max-aspect-ratio: 1/1) {
  .hero__title { align-content: stretch; grid-template-rows: auto 1fr auto; gap: 0; padding-top: calc(var(--arch-top, 24vh) - 1.95em); padding-bottom: calc(100svh - var(--arch-bottom, 70vh) - 1.1em); font-size: clamp(3rem, 14.5vw, 7.4rem); }
  .hero__line { justify-content: center; gap: .22em; }
  .hero__line + .hero__line { grid-row: 3; }
  .hero__foot { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .hero__lede { font-size: .92rem; }
  .hero__cue { display: none; }
  .hero__ctas .btn--ghost { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
