/* =========================================================
   Pitamore — Design System
   Fast. Fresh. Authentic. Mediterranean.
   ========================================================= */

:root {
  /* Palette — sampled from Pitamore's storefront signage + existing brand CSS */
  --sumac:       #ef5a2a;   /* Pitamore tomato orange (primary) */
  --sumac-deep:  #c4451c;   /* Hover / deeper orange */
  --olive:       #014235;   /* Pitamore dark forest green (accent) */
  --olive-deep:  #002a22;
  --cream:       #fef6ed;   /* Warm cream background */
  --cream-warm:  #fcd29d;   /* Peach cream, deeper */
  --charcoal:    #1f1a14;
  --ink:         #3a3226;
  --stone:       #a69d8f;
  --honey:       #f9ad4d;   /* Amber accent */
  --shell:       #ffffff;

  /* Type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.20rem, 1.13rem + 0.38vw, 1.42rem);
  --step-2:  clamp(1.44rem, 1.33rem + 0.58vw, 1.78rem);
  --step-3:  clamp(1.73rem, 1.55rem + 0.90vw, 2.22rem);
  --step-4:  clamp(2.07rem, 1.80rem + 1.37vw, 2.78rem);
  --step-5:  clamp(2.49rem, 2.05rem + 2.20vw, 3.48rem);
  --step-6:  clamp(2.99rem, 2.30rem + 3.45vw, 4.35rem);
  --step-7:  clamp(3.50rem, 2.50rem + 5.00vw, 5.50rem);

  /* Space */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6rem;
  --sp-9: 9rem;

  /* Shape */
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-s: 0 1px 2px rgba(36, 31, 24, 0.06), 0 2px 6px rgba(36, 31, 24, 0.05);
  --shadow-m: 0 4px 12px rgba(36, 31, 24, 0.08), 0 12px 28px rgba(36, 31, 24, 0.08);
  --shadow-l: 0 8px 24px rgba(36, 31, 24, 0.10), 0 28px 60px rgba(36, 31, 24, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --header-h: 72px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sumac); }
::selection { background: var(--sumac); color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 var(--sp-3);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }
p  { margin: 0 0 var(--sp-3); max-width: 65ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sumac);
  margin: 0 0 var(--sp-3);
  display: inline-block;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(3rem, 8vw, 7rem);
}
.section--tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.stack > * + * { margin-top: var(--sp-3); }
.stack-lg > * + * { margin-top: var(--sp-5); }

.center-text { text-align: center; }
.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: var(--charcoal);
  --btn-fg: var(--cream);
  --btn-border: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-m); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--primary {
  --btn-bg: var(--sumac);
  --btn-fg: var(--cream);
  --btn-border: var(--sumac);
}
.btn--primary:hover { --btn-bg: var(--sumac-deep); --btn-border: var(--sumac-deep); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--charcoal);
  --btn-border: var(--charcoal);
}
.btn--ghost:hover { --btn-bg: var(--charcoal); --btn-fg: var(--cream); }
.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--charcoal);
  --btn-border: var(--cream);
}
.btn--lg { padding: 1.1rem 1.9rem; font-size: 1rem; }

.btn .arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 235, 0.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(36, 31, 24, 0.06);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-s); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--sumac); }
.brand-mark {
  width: 34px;
  height: 34px;
}
.brand-name { line-height: 1; }
.brand-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--sumac);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.35rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--sumac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn:not(.nav-cta__primary) { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  transform: translateY(-100%);
  transition: transform .4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(var(--header-h) - 16px);
}
.mobile-nav__close {
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav__list a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.4rem 0;
  display: block;
  border-bottom: 1px solid rgba(36, 31, 24, 0.08);
}
.mobile-nav__list a:hover { color: var(--sumac); }
.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  color: var(--cream);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.55) 40%, rgba(10,8,6,0.15) 70%, rgba(10,8,6,0.0) 100%),
    linear-gradient(180deg, rgba(10,8,6,0.15) 0%, rgba(10,8,6,0.10) 60%, rgba(10,8,6,0.70) 100%);
  z-index: -1;
}
.hero__media img {
  object-position: center right;
}

.hero__content {
  padding: var(--sp-8) 0 var(--sp-7);
  max-width: 820px;
}
.hero__eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--honey);
  margin-bottom: 1rem;
  display: inline-block;
}
.hero__title {
  color: var(--cream);
  font-size: var(--step-7);
  font-weight: 500;
  line-height: 0.98;
  margin: 0 0 1.25rem;
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  color: var(--honey);
  font-weight: 500;
}
.hero__sub {
  font-size: var(--step-1);
  color: rgba(250, 245, 235, 0.85);
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Tagline marquee strip under hero */
.tagline-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(221, 161, 94, 0.2);
}
.tagline-strip__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-x 36s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-2);
  color: var(--cream);
}
.tagline-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.tagline-strip__track .dot {
  color: var(--honey);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Featured menu cards
   ========================================================= */
.featured {
  background: var(--cream);
}
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-4);
}
.dish {
  background: var(--shell);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(36, 31, 24, 0.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l);
}
.dish__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-warm);
}
.dish__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.dish:hover .dish__img img { transform: scale(1.04); }
.dish__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--charcoal);
}
.dish__desc {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.82;
  flex: 1;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.dish__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.dish__tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  background: rgba(96, 108, 56, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* =========================================================
   Story / About
   ========================================================= */
.story {
  background: var(--cream-warm);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 860px) {
  .story__inner { grid-template-columns: 1.1fr 1fr; gap: var(--sp-7); }
}
.story__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-l);
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-s);
}
.story__badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sumac);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.story__badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.story__title {
  font-size: var(--step-5);
  margin-bottom: 1.25rem;
}
.story__lead {
  font-size: var(--step-1);
  color: var(--ink);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.story__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillar h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sumac);
  margin-bottom: 0.35rem;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Locations
   ========================================================= */
.locations { background: var(--cream); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-5);
}
.loc-card {
  background: var(--shell);
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(36, 31, 24, 0.06);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.loc-card__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sumac);
}
.loc-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0.5rem 0 0.25rem;
}
.loc-card__addr {
  color: var(--ink);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}
.loc-card__hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  border-top: 1px solid rgba(36, 31, 24, 0.08);
}
.loc-card__hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(36, 31, 24, 0.06);
  font-size: 0.92rem;
  color: var(--ink);
}
.loc-card__hours li:last-child { border-bottom: 0; }
.loc-card__hours .day { font-weight: 500; color: var(--charcoal); }
.loc-card__hours .closed { color: var(--stone); font-style: italic; }
.loc-card__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.loc-card__actions .btn { padding: 0.7rem 1.1rem; font-size: 0.88rem; }

/* =========================================================
   Catering CTA band
   ========================================================= */
.cta-band {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(196, 69, 54, 0.35), transparent 60%),
    radial-gradient(ellipse at 15% 90%, rgba(221, 161, 94, 0.18), transparent 50%);
  z-index: -1;
}
.cta-band__inner {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 860px) {
  .cta-band__inner { grid-template-columns: 1.3fr 1fr; }
}
.cta-band h2 {
  color: var(--cream);
  font-size: var(--step-5);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(250, 245, 235, 0.85);
  margin-bottom: 2rem;
  font-size: var(--step-1);
}
.cta-band__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--cream-warm); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.review {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(36, 31, 24, 0.06);
  display: flex;
  flex-direction: column;
}
.review__stars {
  color: var(--honey);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.review__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  margin: 0 0 1rem;
  flex: 1;
}
.review__author {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.review__source {
  font-size: 0.82rem;
  color: var(--stone);
}
.review-hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.review-hero-stat strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--sumac);
}
.review-hero-stat span {
  font-size: 0.95rem;
  color: var(--ink);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 245, 235, 0.88);
  padding-block: var(--sp-7) var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--honey);
  margin: 0 0 1rem;
}
.footer-col p, .footer-col li, .footer-col a {
  font-size: 0.94rem;
  color: rgba(250, 245, 235, 0.75);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--cream); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 34ch;
  color: rgba(250, 245, 235, 0.8);
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(250, 245, 235, 0.22);
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover {
  background: var(--sumac);
  border-color: var(--sumac);
  color: var(--cream);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(250, 245, 235, 0.14);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(250, 245, 235, 0.55);
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* =========================================================
   Page header (menu, catering)
   ========================================================= */
.page-head {
  background: var(--cream-warm);
  padding-block: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.page-head .eyebrow { color: var(--sumac); }
.page-head h1 {
  font-size: var(--step-7);
  margin-bottom: 1rem;
}
.page-head p {
  font-size: var(--step-1);
  color: var(--ink);
  opacity: 0.82;
  max-width: 58ch;
  margin-inline: auto;
}

/* =========================================================
   Menu page
   ========================================================= */
.menu-layout {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .menu-layout { grid-template-columns: 240px 1fr; gap: var(--sp-7); }
}
.menu-toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
}
.menu-toc h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sumac);
  margin: 0 0 1rem;
}
.menu-toc ul { list-style: none; padding: 0; margin: 0; }
.menu-toc li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-s);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.menu-toc li a:hover,
.menu-toc li a.is-active {
  background: var(--cream-warm);
  color: var(--sumac);
}

.menu-section { margin-bottom: var(--sp-7); scroll-margin-top: calc(var(--header-h) + 1rem); }
.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--charcoal);
}
.menu-section h2 {
  font-size: var(--step-4);
  margin: 0;
}
.menu-section__note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--stone);
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.5rem;
}
@media (min-width: 780px) {
  .menu-items { grid-template-columns: 1fr 1fr; }
}
.item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(36, 31, 24, 0.14);
}
.item__thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(36, 31, 24, 0.12);
  transition: transform .3s var(--ease);
}
.item:hover .item__thumb { transform: scale(1.03); }
.item__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: baseline;
  min-width: 0;
}
.item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  grid-column: 1;
  line-height: 1.25;
}
.item__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sumac);
  white-space: nowrap;
  grid-column: 2;
  align-self: start;
}
.item__desc {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.82;
  line-height: 1.5;
  margin: 0.15rem 0 0;
  grid-column: 1 / -1;
}
.item__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  grid-column: 1 / -1;
}
.tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(96, 108, 56, 0.12);
  color: var(--olive-deep);
}
.tag--spicy { background: rgba(196, 69, 54, 0.12); color: var(--sumac-deep); }
.tag--new { background: rgba(221, 161, 94, 0.18); color: #8b6326; }
.tag--popular { background: var(--sumac); color: var(--cream); }

/* =========================================================
   Catering packages
   ========================================================= */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.package {
  background: var(--shell);
  padding: 2rem 1.75rem 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(36, 31, 24, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.package--featured {
  border-color: var(--sumac);
  background: var(--charcoal);
  color: var(--cream);
}
.package--featured .package__name,
.package--featured .package__desc,
.package--featured .package__includes li { color: inherit; }
.package--featured .package__includes li::before { background: var(--honey); }
.package:hover { transform: translateY(-3px); box-shadow: var(--shadow-l); }
.package__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sumac);
  color: var(--cream);
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.package__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}
.package__desc {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.82;
  margin: 0 0 1rem;
}
.package__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(36, 31, 24, 0.12);
}
.package--featured .package__price { border-color: rgba(250, 245, 235, 0.2); }
.package__price strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sumac);
  line-height: 1;
}
.package--featured .package__price strong { color: var(--honey); }
.package__price small { font-size: 0.88rem; opacity: 0.75; }
.package__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.package__includes li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.93rem;
  line-height: 1.45;
}
.package__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sumac);
}
.package .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* =========================================================
   Inquiry form
   ========================================================= */
.form-wrap {
  background: var(--cream-warm);
}
.form {
  background: var(--shell);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-m);
  max-width: 680px;
  margin-inline: auto;
}
.form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 580px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(36, 31, 24, 0.14);
  border-radius: var(--radius-s);
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sumac);
  box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.12);
}
.form button[type="submit"] { margin-top: 0.5rem; }

/* =========================================================
   Service areas
   ========================================================= */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(36, 31, 24, 0.12);
  background: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

/* =========================================================
   Utilities
   ========================================================= */
.divider {
  width: 60px;
  height: 2px;
  background: var(--sumac);
  margin: 0 auto 1.25rem;
}
.align-left .divider { margin-left: 0; }

/* =========================================================
   Catering — Order builder
   ========================================================= */
.page-head--compact { padding-block: var(--sp-7) var(--sp-5); }
.page-head--compact h1 { font-size: var(--step-6); }

.order-section { padding-top: var(--sp-5); }

/* Fulfillment bar */
.fulfillment {
  background: linear-gradient(180deg, var(--shell) 0%, #fffaf3 100%);
  border: 1px solid rgba(36, 31, 24, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow-m);
  margin-bottom: var(--sp-5);
  position: relative;
  overflow: hidden;
}
.fulfillment::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sumac), var(--honey), var(--olive));
}
.fulfillment__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem 1rem;
  align-items: end;
}
@media (min-width: 720px) {
  .fulfillment { padding: 1.5rem 1.5rem 1.25rem; }
  .fulfillment__row { gap: 1rem 1.25rem; }
}
.fulfillment__field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.fulfillment__field--method { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .fulfillment__field--method { grid-column: auto; min-width: 240px; }
}
.fulfillment__field--guests { max-width: 140px; }
.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
}
.ff-input {
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(36, 31, 24, 0.14);
  border-radius: var(--radius-s);
  background: var(--cream);
  color: var(--charcoal);
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.ff-input:focus {
  outline: none;
  border-color: var(--sumac);
  box-shadow: 0 0 0 4px rgba(196, 69, 54, 0.12);
}
.fulfillment__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.75;
}
.fulfillment__note a { color: var(--sumac); font-weight: 600; }

/* Segmented control (pickup/delivery) */
.seg {
  display: inline-flex;
  background: var(--cream-warm);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  width: fit-content;
}
.seg__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.seg__btn svg { width: 18px; height: 18px; }
.seg__btn.is-active {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow-s);
}
.seg__btn:not(.is-active):hover { background: rgba(255,255,255,0.5); }

/* Order layout */
.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: start;
}
@media (min-width: 980px) {
  .order-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: var(--sp-6); }
}

/* Menu sections */
.order-section-block { margin-bottom: var(--sp-6); }
.order-section-block__title {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid var(--charcoal);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.order-section-block__title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sumac);
  flex-shrink: 0;
}
.order-section-block__title span {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 400;
  margin-left: auto;
}

.ord-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 720px) {
  .ord-list { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}
.ord-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--shell);
  border: 1px solid rgba(36, 31, 24, 0.07);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.ord-row::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--cream-warm);
  transition: background .2s var(--ease);
}
.ord-row:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
  border-color: rgba(239, 90, 42, 0.3);
}
.ord-row:hover::before { background: var(--honey); }
.ord-row.is-in-cart {
  border-color: var(--sumac);
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  box-shadow: 0 0 0 1.5px var(--sumac), var(--shadow-s);
}
.ord-row.is-in-cart::before { background: var(--sumac); }
.ord-row__main { flex: 1; min-width: 0; }
.ord-row__main h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--charcoal);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.25;
}
.ord-row__main p {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
  line-height: 1.4;
}
.ord-row__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.ord-row__price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sumac);
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}
.ord-row__price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.65;
  margin-left: 0.15rem;
}

/* Quantity stepper */
.qty {
  display: inline-flex;
  align-items: stretch;
  background: var(--cream);
  border: 1.5px solid rgba(36, 31, 24, 0.14);
  border-radius: 999px;
  overflow: hidden;
  height: 40px;
}
.qty--sm { height: 34px; }
.qty__btn {
  width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.qty--sm .qty__btn { width: 30px; font-size: 1.05rem; }
.qty__btn:hover { background: var(--sumac); color: var(--cream); }
.qty__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.qty__btn:disabled:hover { background: transparent; color: var(--charcoal); }
.qty__input {
  width: 44px;
  text-align: center;
  font: inherit;
  font-weight: 600;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(36, 31, 24, 0.1);
  border-right: 1px solid rgba(36, 31, 24, 0.1);
  padding: 0;
  -moz-appearance: textfield;
}
.qty--sm .qty__input { width: 36px; font-size: 0.92rem; }
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; background: rgba(239, 90, 42, 0.08); }

/* Cart sidebar */
.cart {
  position: relative;
}
.cart__sticky {
  background: var(--shell);
  border: 1px solid rgba(36, 31, 24, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-m);
  position: relative;
  overflow: hidden;
}
.cart__sticky::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sumac), var(--honey));
}
@media (min-width: 980px) {
  .cart__sticky {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    max-height: calc(100vh - var(--header-h) - 2.5rem);
    display: flex;
    flex-direction: column;
  }
}
.cart__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(36, 31, 24, 0.08);
}
.cart__head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}
.cart__count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
.cart__meta {
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart__meta-row { display: flex; gap: 0.5rem; align-items: baseline; }
.cart__meta-row strong {
  color: var(--sumac);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart__meta-row span { color: var(--ink); opacity: 0.85; }

.cart__items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 0.85rem;
  min-height: 60px;
}
.cart__empty {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.6;
  margin: 1.5rem 0;
}
.cart__empty span { font-size: 0.82rem; opacity: 0.8; }
.cart__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(36, 31, 24, 0.1);
}
.cart__line:last-child { border-bottom: 0; }
.cart__line-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.3;
}
.cart__line-sub {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.7;
  grid-column: 1;
}
.cart__line-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sumac);
  font-size: 0.95rem;
  grid-column: 2;
  align-self: start;
  white-space: nowrap;
}
.cart__line-remove {
  grid-column: 2;
  font-size: 0.74rem;
  color: var(--stone);
  text-decoration: underline;
  align-self: end;
  text-align: right;
  transition: color .2s var(--ease);
}
.cart__line-remove:hover { color: var(--sumac-deep); }

.cart__totals {
  border-top: 1px solid rgba(36, 31, 24, 0.08);
  padding-top: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cart__total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--ink);
}
.cart__total-row--grand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-top: 0.5rem;
  margin-top: 0.2rem;
  border-top: 1px solid rgba(36, 31, 24, 0.08);
}
.cart__total-row--grand span:last-child { color: var(--sumac); }

.cart__checkout { width: 100%; justify-content: center; }
.cart__checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.cart__checkout:disabled:hover { transform: none; box-shadow: none; }
.cart__fineprint {
  font-size: 0.76rem;
  color: var(--ink);
  opacity: 0.65;
  text-align: center;
  margin: 0.7rem 0 0;
  line-height: 1.45;
}

/* Mobile cart bar */
.cart-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.18);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
}
.cart-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
}
.cart-bar__inner > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cart-bar__inner strong { font-size: 0.92rem; }
.cart-bar__inner span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--honey);
}
@media (min-width: 980px) {
  .cart-bar { display: none !important; }
}

/* Checkout summary (shown on the form) */
.checkout-summary {
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
}
.checkout-summary h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sumac);
  margin: 0 0 0.6rem;
  font-family: var(--font-body);
}
.checkout-summary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.checkout-summary li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink);
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(36, 31, 24, 0.1);
  padding-top: 0.6rem;
  font-size: 0.88rem;
}
.checkout-summary__total strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sumac);
}

/* When mobile cart bar is showing, give the page bottom padding */
body.has-cart-bar { padding-bottom: 76px; }
@media (min-width: 980px) {
  body.has-cart-bar { padding-bottom: 0; }
}

/* Subtle CSS-only fade-in on load (no scroll dependency, no JS required) */
@keyframes gentle-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  animation: gentle-in .8s var(--ease-out) both;
}

.tight-p { max-width: 48ch; }

/* Responsive helpers */
@media (max-width: 600px) {
  h1 { font-size: var(--step-6); }
  .hero { min-height: 640px; }
  .hero__content { padding-block: var(--sp-7) var(--sp-6); }
  .section { padding-block: var(--sp-6); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
