/* ═══════════════════════════════════════════
   Amadio — Italiano Ristorante · Firenze 1978
   Standalone landing page styles
   ═══════════════════════════════════════════ */

/* Self-hosted brand serif */
@font-face {
  font-family: "Bodoni 72 Book";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/bodoni-72-book.ttf") format("truetype");
}

:root {
  /* Colors */
  --cream: #f0ede6;
  --header-bg: #f6f1e9;
  --bg-heritage: #efe8dd;
  --bg-specialty: #f7f3eb;
  --bg-menu: #5c1212;
  --bg-reservation: #fbf7f5;
  --bg-form: #f8f4ea;
  --bg-order: #efe8dd;
  --burgundy-deep: #3d0c0c;
  --red: #4d0406; /* all red text + pill */
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --border: rgba(26, 26, 26, 0.15);

  /* Fonts */
  --serif:
    "Bodoni 72 Book", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --content-max: 900px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  background: var(--cream);
  color: var(--ink-muted);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: var(--header-bg);
  border-bottom-color: var(--border);
}

.site-header__logo {
  height: 32px;
  width: auto;
  display: none;
}
.site-header.scrolled .site-header__logo {
  display: block;
}

.site-header__tagline {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  display: none;
}
.site-header.scrolled .site-header__tagline {
  display: block;
}

@media (max-width: 600px) {
  .site-header__tagline {
    letter-spacing: initial;
    font-size: 9px;
    font-weight: 600;
    left: 59%;
    top: 56%;
  }
  .site-header.scrolled .site-header__tagline {
    display: block;
  }
}

.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 44px;
  height: 2px;
  background: #fff;
  transition:
    background 1s,
    width 1s;
}
.hamburger span:last-child {
  width: 30px;
}
.site-header.scrolled .hamburger span {
  background: var(--ink);
}

/* ─── DRAWER ─── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 86vw;
  z-index: 200;
  background: #4d0406;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transform: translateX(100%);
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.drawer.open {
  transform: translateX(0);
}
.drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__label {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}
.drawer__close {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.88);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}
.drawer__nav {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.drawer__nav li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.drawer__nav .num {
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  min-width: 30px;
}
.drawer__nav a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 1s;
}
.drawer__nav a:hover {
  color: #fff;
}
.drawer__lang {
  text-align: center;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.drawer__lang-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
}
.drawer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--ui);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  line-height: 1;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    gap 0.2s var(--ease),
    border-color 0.25s var(--ease);
}
.btn--pill {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  padding: 14px 30px;
  border-radius: 999px;
}
.btn--pill.btn--sm {
  font-size: 10px;
  padding: 11px 22px;
}
.btn--solid {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 18px 44px;
}
.btn--solid:hover {
  background: var(--red);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 12px;
  padding: 18px 44px;
}
.btn--outline:hover {
  background: #fff;
  color: var(--bg-menu);
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 20px;
  margin-top: 8px;
}
.btn--solid.btn--block {
  font-family: var(--mono);
}
.btn--link {
  background: transparent;
  color: var(--red);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0;
}
.btn--link.on-dark {
  color: #fff;
}
.btn--link:hover {
  gap: 14px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  padding: 72px 28px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero.loaded .hero__video {
  transform: scale(1);
}
.hero__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 22px 28px;
}
.hero__top-text {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__logo {
  position: relative;
  z-index: 2;
  width: 320px;
  max-width: 72vw;
  height: auto;
}
.hero__order {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
}

/* Attention animation for the hero Order button — color shimmer */
.hero__order {
  position: absolute;
  background: linear-gradient(
    100deg,
    #4d0406 0%,
    #8f1512 26%,
    #c96a63 42%,
    #a11a15 58%,
    #4d0406 82%,
    #4d0406 100%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  animation: hero-order-shimmer 4s linear infinite;
  will-change: background-position;
}
.hero__order:hover {
  animation-play-state: paused;
}
@keyframes hero-order-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -60% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__order {
    animation: none;
    background: var(--red);
  }
}
.hero__controls {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 0.75px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.sound-cue {
  display: none;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 0.75px solid rgba(255, 255, 255, 0.45);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  animation: cue-breathe 2.4s ease-in-out infinite;
}
.sound-cue.show {
  display: flex;
}
@keyframes cue-breathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sound-cue {
    animation: none;
  }
}
@media (max-width: 600px) {
  .sound-cue {
    height: 36px;
    padding: 0 13px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

/* ─── SECTION SHELL ─── */
.section {
  position: relative;
}
.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px 28px;
}
.section--heritage {
  background: #fbf1e6;
}
.section--specialty {
  background: #e9e0d2;
}
.section--menu {
  background: #4d0406;
}
.section--reservation {
  background: #e4decf;
}
.section--order {
  background: #e9e0d2;
}
.section--reach {
  background: #f0e9db;
  overflow: hidden;
}
/* Reach section on light background */
.section--reach .eyebrow--on-dark {
  color: var(--red);
}
.section--reach .display--on-dark {
  color: var(--ink);
}
.section--reach .reach__locale {
  color: #4d0406;
}
.section--reach .reach__locale span {
  color: var(--red);
}
.section--reach .reach-block__label {
  color: var(--ink);
}
.section--reach .reach-block__content {
  color: var(--ink-muted);
}
.section--reach .reach-block__content strong {
  color: var(--ink);
}
.section--reach .reach-block__content a {
  text-decoration: none;
}
.section--reach .social-icon {
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--ink);
}
/* Contact Us: frame the detail grid in a hairline panel */
.section--reach .reach-grid {
  border: 1px solid var(--border);
  padding: 40px 44px;
  gap: 40px 48px;
}
.reach-grid .reach__locale {
  grid-column: 1 / -1;
  margin: 0;
}
.section--reach .social-icon:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 2px;
}
/* Roman numerals set in the serif face so the I carries proper top/bottom
   serifs, matching the headings and menu typography. */
.num {
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.eyebrow .num {
  opacity: 0.85;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
}
.eyebrow__dot {
  letter-spacing: normal;
}
.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.45);
}

.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--ink);
  margin: 0;
}
.display--on-dark {
  color: #fff;
}

.body-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-muted);
  max-width: 680px;
  text-align: justify;
  text-wrap: pretty;
  margin: 0;
}
.body-text--on-dark {
  color: rgba(255, 255, 255, 0.72);
}
.accent {
  color: var(--red);
}

.mt-18 {
  margin-top: 18px;
}
.mt-28 {
  margin-top: 28px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}

/* Media */
.divider-img {
  display: block;
  width: 100%;
  aspect-ratio: 1920/1337;
  object-fit: cover;
}
.divider-img--2 {
  aspect-ratio: 1572/1001;
}
.divider-img--3 {
  aspect-ratio: 6240/3512;
}
.media {
  width: 100%;
  object-fit: cover;
}
.media--16x9 {
  aspect-ratio: 16/9;
  margin-bottom: 40px;
}
.media--16x8 {
  margin-bottom: 40px;
}
.media--bw {
  filter: grayscale(0.15);
}

/* Heading top margin after media handled by display being right after eyebrow */
.display {
  margin-bottom: 28px;
}

/* ─── SPECIALTY GRID ─── */
.specialty-grid {
  position: relative;
  margin: 40px 0 80px;
  height: 520px;
}
.specialty-grid img {
  position: absolute;
  object-fit: cover;
}
.specialty-grid img:first-child {
  width: 62%;
  height: 100%;
  left: 0;
  top: 0;
}
.specialty-grid img:last-child {
  width: 36%;
  height: 65%;
  right: 0;
  bottom: 0;
}

/* ─── MENU GRID ─── */
.menu-grid {
  display: grid;
  grid-template-columns: 58% 38%;
  gap: 16px;
  margin: 32px 0 40px;
  align-items: stretch;
}
.menu-grid img {
  width: 100%;
  object-fit: cover;
}
.menu-grid__left {
  aspect-ratio: 4/5;
}
.menu-grid__right {
  height: 100%;
}

/* ─── MENU SLIDER ─── */
.menu-slider {
  margin: 32px 0 40px;
  overflow: hidden;
  cursor: grab;
}
.menu-slider.dragging {
  cursor: grabbing;
}
.menu-slider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-slider__track::-webkit-scrollbar {
  display: none;
}
.menu-slide {
  flex: 0 0 calc((100% - 16px) / 1.5);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.menu-slide img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  transition: transform 1.4s var(--ease);
}
.menu-slide:hover img {
  transform: scale(1.03);
}
.menu-slide__caption {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

/* ─── RESERVATION FORM ─── */
.res-form {
  border: 0.5px solid var(--border);
  background: var(--bg-form);
  padding: 32px 28px;
  margin-top: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 20px;
}
.field {
  margin-bottom: 28px;
}
.field__label {
  display: block;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.lbl-short {
  display: none;
}
.field__row {
  display: flex;
  gap: 12px;
}
.field__row input {
  flex: 1;
}
.res-form input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.75px solid rgba(28, 28, 28, 0.3);
  outline: none;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.res-form input::placeholder {
  color: rgba(28, 28, 28, 0.35);
  font-size: 22px;
}
.res-form input:focus {
  border-bottom-color: var(--red);
}

/* ─── REACH / FOOTER ─── */
.reach__locale {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: #4d0406;
  text-align: center;
  margin: 40px 0;
}
.reach__locale span {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 3px;
}
.reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-bottom: 56px;
}
.reach-block__label {
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.reach-block__content {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}
.reach-block__content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}
.reach-block__content strong {
  font-weight: 400;
  color: #fff;
}
.br-mobile {
  display: none;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-icon {
  width: 32px;
  height: 32px;
  border: 0.75px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.social-icon:hover {
  border-color: #fff;
  color: #fff;
}

.footer-bar {
  border-top: 0.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bar__logo {
  width: 160px;
  height: auto;
}
.footer-bar__member {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-align: left;
}
.footer-bar__member strong {
  font-weight: 400;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bar__copy {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 12px;
}

/* ─── FOOTER BAND ─── */
.site-footer {
  background: #4d0406;
}
.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 46px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 25px;
}
.site-footer__logo {
  width: 210px;
  max-width: 60vw;
  height: auto;
}
.site-footer__member {
  font-family: var(--ui);
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}
.site-footer__member strong {
  font-weight: 400;
  display: block;
}
.site-footer__copy {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}
.site-footer__copy .brk {
  display: none;
}
@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 36px 20px;
  }
  .site-footer__logo {
    width: 100px;
    max-width: 40vw;
    flex-shrink: 0;
  }
  .site-footer__member {
    text-align: left;
    font-size: 14px;
  }
  .site-footer__copy {
    font-size: 10px;
    margin-top: 8px;
  }
  .site-footer__copy .brk {
    display: block;
    height: 0;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1.8s var(--ease),
    transform 1.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--d1 {
  transition-delay: 0.1s;
}
.reveal--d2 {
  transition-delay: 0.2s;
}
.reveal--d3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .drawer {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 22px;
  }
  .site-header {
    padding: 18px 15px;
  }
  .drawer__nav li {
    padding: 12px 0px;
  }
  .drawer__nav a {
    font-size: 24px;
  }
  .section__inner {
    padding: 56px 20px;
  }
  .display {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 24px;
  }
  .body-text {
    font-size: 22px;
    text-align: left;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .res-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
  .res-form .grid-2,
  .res-form .grid-3 {
    display: contents;
  }
  .res-form .field--full {
    grid-column: 1 / -1;
  }
  .res-form .btn--block {
    grid-column: 1 / -1;
  }
  .lbl-full {
    display: none;
  }
  .lbl-short {
    display: inline;
  }
  .specialty-grid {
    height: 250px;
    margin: 32px 0 48px;
  }
  .reach-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .section--reach .reach-grid {
    padding: 15px 10px;
    gap: 28px 20px;
  }
  .reach__locale {
    font-size: 24px;
  }
  .reach-grid .reach__locale {
    margin: 0 0 4px;
  }
  .reach-block__content {
    font-size: 16px;
  }
  .reach-block__label {
    font-size: 14px;
  }
  .br-desktop {
    display: none;
  }
  .br-mobile {
    display: inline;
  }
  .dash-desktop {
    display: none;
  }
  .res-form {
    padding: 24px 15px;
  }
  .res-form input {
    font-size: 16px;
    padding: 6px 0;
  }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header.scrolled .site-header__tagline {
    display: block !important;
  }
  .hero__top {
    padding: 18px 20px;
  }
  .hero__order,
  .hero__controls {
    bottom: 20px;
  }
  .hero__order {
    right: 20px;
  }
  .hero__controls {
    left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__video {
    transition: none;
  }
}

/* ─── STICKY ORDER ONLINE BUTTON (all pages) ─── */
.order-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  background: linear-gradient(
    100deg,
    #4d0406 0%,
    #8f1512 26%,
    #c96a63 42%,
    #a11a15 58%,
    #4d0406 82%,
    #4d0406 100%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  animation: hero-order-shimmer 4s linear infinite;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.22);
  will-change: background-position, transform, opacity;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.25s var(--ease);
}
.order-fab:hover {
  animation-play-state: paused;
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.3);
}
.order-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.order-fab--hidden {
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
}
body.drawer-open .order-fab {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .order-fab {
    animation: none;
    background: var(--red);
    transition: none;
  }
}
@media (max-width: 900px) {
  .order-fab {
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 600px) {
  /* Compact floating pill, same as desktop — not full width */
  .order-fab {
    left: auto;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: auto;
    box-shadow: 0 10px 28px rgba(26, 26, 26, 0.3);
  }
  .order-fab:active {
    transform: scale(0.98);
  }
  /* Runway so the fixed CTA never traps content — inside the dark footer
     (and the flipbook's own wrapper) so no cream seam appears below it */
  .site-footer__inner {
    padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px));
  }
  .book-controls {
    margin-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }
}

/* ─── HERO BANNER FADE-IN (all inner pages — not the home hero) ─── */
.menu-hero,
.spec-hero {
  animation: hero-banner-fade 2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  will-change: opacity;
}
@keyframes hero-banner-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-hero,
  .spec-hero {
    animation: none;
  }
}
