/* ============================================================
   SIENNE'S TABLE — bright bakery template
   ============================================================ */

:root {
  --white: #FFFFFF;
  --bg-soft: #FAF7F2;
  --bg-warm: #F3EDE3;
  --ink: #141210;
  --charcoal: #2A2622;
  --muted: #6B655E;
  --rule: #E7E0D4;

  --accent: #C96F3D;
  --accent-dark: #A95625;
  --accent-soft: #F6E4D6;

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --wrap: 1240px;
  --wrap-narrow: 720px;
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Version toggle ---------- */
.version-toggle {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #141210;
  color: #F4EEDF;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.version-toggle__label {
  opacity: 0.55;
  margin-right: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}
.version-toggle__btn {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  color: #F4EEDF;
  text-decoration: none;
  border: 1px solid rgba(244, 238, 223, 0.3);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.version-toggle__btn:hover { border-color: rgba(244, 238, 223, 0.65); }
.version-toggle__btn.is-active {
  background: #F4EEDF;
  color: #141210;
  border-color: #F4EEDF;
  font-weight: 600;
}
@media (max-width: 540px) {
  .version-toggle { flex-wrap: wrap; padding: 0.35rem 0.5rem; gap: 0.35rem; }
  .version-toggle__label { display: none; }
  .version-toggle__btn { font-size: 0.72rem; padding: 0.28rem 0.7rem; }
}

.nav { top: 34px !important; }
@media (max-width: 540px) {
  .nav { top: 42px !important; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Type utilities ---------- */
.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--accent);
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}
.h-display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.h-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  padding: 0 0.06em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 1px 0 rgba(20,18,16,0.04);
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 10px 24px -10px rgba(201, 111, 61, 0.6);
}
.btn--sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--wide { width: 100%; justify-content: center; }

/* ---------- Brand lockup ---------- */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
  color: var(--charcoal);
}
.brand__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand__rule {
  display: block;
  width: 88%;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  margin: 0.3em 0 0.3em;
}
.brand__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--rule); }
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
}
.nav__brand { justify-self: start; }
.nav__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: left 0.25s var(--ease), right 0.25s var(--ease);
}
.nav__links a:hover { color: var(--accent-dark); }
.nav__links a:hover::after { left: 0; right: 0; }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; justify-self: end; }
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.8px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- Circular ornaments ---------- */
.circle-ring,
.circle-outline,
.circle-outline-sm {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.circle-ring--lg {
  width: 620px; height: 620px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--accent-soft);
}
.circle-ring--md {
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--rule);
}
.circle-outline {
  inset: -10%;
  border: 1.2px solid var(--rule);
}
.circle-outline--thick { border-width: 1.5px; border-color: var(--accent-soft); }
.circle-outline-sm {
  inset: -6px;
  border: 1px solid var(--rule);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--white);
}
.hero__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  position: relative;
}

.hero__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  user-select: none;
}
.hero__word {
  font-size: clamp(4rem, 11vw, 9.5rem);
}
.hero__word--sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: clamp(3rem, 8.5vw, 7rem);
  letter-spacing: -0.02em;
  margin-left: 0.6em;
  margin-top: 0.08em;
}

.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  width: 100%;
  justify-self: center;
  display: grid;
  place-items: center;
}
.hero__photo {
  position: relative;
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px -30px rgba(20,18,16,0.25);
  z-index: 2;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__wheat {
  position: absolute;
  width: clamp(60px, 9vw, 110px);
  opacity: 0.9;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(201,111,61,0.15));
}
.hero__wheat--1 { top: 4%; right: -2%; transform: rotate(-22deg); }
.hero__wheat--2 { bottom: 5%; left: -6%; transform: rotate(160deg); }

.hero__copy {
  max-width: 340px;
}
.hero__lede {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  text-align: center;
  background: var(--white);
  position: relative;
}
.about__wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.about .h-display { margin: 0.5rem auto 1.5rem; }
.about__lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   3-UP FEATURES (RUSTIC / DELICATE / COMMUNAL)
   ============================================================ */
.feature-three {
  padding: clamp(3rem, 6vw, 5rem) 0 var(--section-y);
  background: var(--white);
}
.feature-three__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.feature {
  display: grid;
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
}
.feature--offset { transform: translateY(-18px); }
.feature__kicker {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.feature__body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 28ch;
}
.feature__photo {
  position: relative;
  width: clamp(180px, 22vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: visible;
}
.feature__photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 40px -22px rgba(20,18,16,0.25);
}

/* ============================================================
   BAKERY — HOW IT'S BAKED (2-column w/ 4-up ingredients)
   ============================================================ */
.bakery {
  padding: var(--section-y) 0;
  background: var(--bg-soft);
}
.bakery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.bakery__text p { color: var(--muted); margin: 1rem 0 1.75rem; max-width: 42ch; font-size: 1.02rem; }
.bakery__text .h-display { margin-top: 0.25rem; }

.bakery__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.ingredient {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.ingredient figure {
  position: relative;
  width: 88px; height: 88px;
}
.ingredient figure img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.ingredient h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ingredient p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 34ch;
}

/* ============================================================
   CRAFT / BAKER
   ============================================================ */
.craft {
  padding: var(--section-y) 0;
  background: var(--white);
}
.craft__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.craft__photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  justify-self: center;
}
.craft__photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 24px 60px -30px rgba(20,18,16,0.3);
}
.craft__photo .circle-outline { inset: -5%; border-color: var(--accent-soft); border-width: 1.3px; }
.badge {
  position: absolute;
  top: 6%;
  right: -2%;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1.05;
  transform: rotate(-8deg);
  box-shadow: 0 10px 24px -12px rgba(201,111,61,0.55);
}
.badge__small {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2em;
  opacity: 0.9;
}
.badge__big {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  display: block;
}
.craft__text .h-display { margin: 0.25rem 0 1.25rem; }
.craft__text p { color: var(--muted); line-height: 1.75; max-width: 48ch; margin-bottom: 1.75rem; font-size: 1.02rem; }

/* ============================================================
   PATIO DINNERS
   ============================================================ */
.patio {
  padding: var(--section-y) 0;
  background: var(--bg-warm);
}
.patio__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.patio__head .h-display { margin: 0.25rem auto 1.25rem; }
.patio__lede { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
.patio__meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.patio__meta strong { color: var(--accent-dark); font-weight: 500; font-style: normal; }

.menus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.menu-card {
  background: var(--white);
  padding: clamp(1.75rem, 2.4vw, 2.25rem);
  border-radius: 24px;
  border: 1px solid var(--rule);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -30px rgba(20,18,16,0.18);
}
.menu-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.menu-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.menu-card li { padding: 0.45rem 0; }
.menu-card li + li { border-top: 1px dashed var(--rule); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: var(--section-y) 0;
  background: var(--white);
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-head .h-display { margin-top: 0.25rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.gallery__item { margin: 0; overflow: hidden; border-radius: 24px; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }

/* ============================================================
   INQUIRE
   ============================================================ */
.inquire {
  padding: var(--section-y) 0;
  background: var(--bg-soft);
}
.inquire__lede { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.inquiry {
  display: grid;
  gap: 1.25rem;
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 28px;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -50px rgba(20,18,16,0.2);
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  background: var(--bg-soft);
  border: 1px solid transparent;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  border-radius: 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 2.25rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--accent);
}
.form__status {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent-dark);
  min-height: 1.4em;
  margin-top: 0.25rem;
}
.form__status.error { color: #b0402c; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(3rem, 5vw, 4.5rem) 0 2.5rem;
  background: var(--ink);
  color: var(--white);
}
.footer .brand,
.footer .brand__name,
.footer .brand__tag { color: var(--white); }
.footer .brand__rule { opacity: 0.5; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer__loc {
  font-family: var(--font-serif);
  font-style: italic;
  margin-top: 0.75rem;
  opacity: 0.85;
  font-size: 0.95rem;
}
.footer__meta { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer__meta a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; transition: border-color 0.2s var(--ease); }
.footer__meta a:hover { border-bottom-color: var(--accent); color: var(--accent-soft); }
.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  opacity: 0.55;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 900px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }
  .footer__brand { text-align: left; }
  .footer__brand .brand { align-items: flex-start; }
  .footer__meta { align-items: flex-end; text-align: right; }
}

@media (max-width: 1024px) {
  .hero__wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero__wordmark { grid-column: 1 / -1; text-align: center; align-items: center; order: -1; }
  .hero__stage { order: 1; }
  .hero__copy { order: 2; max-width: 100%; }
  .circle-ring--lg { width: 500px; height: 500px; }
  .circle-ring--md { width: 380px; height: 380px; }
}

@media (max-width: 860px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    border-bottom: 1px solid var(--rule);
    display: none;
    gap: 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--rule);
    text-align: center;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: flex; }

  .hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__wordmark { align-items: center; }
  .hero__copy { max-width: 100%; margin: 0 auto; }

  .feature-three__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature--offset { transform: none; }
  .bakery__grid { grid-template-columns: 1fr; }
  .bakery__menu { grid-template-columns: 1fr; }
  .craft__wrap { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

@media (max-width: 540px) {
  .nav__inner { gap: 0.75rem; }
  .nav__actions .btn { display: none; }
  .hero__word { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero__word--sub { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .circle-ring--lg { width: 360px; height: 360px; }
  .circle-ring--md { width: 280px; height: 280px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery__item--tall { grid-row: span 1; }
  .ingredient { grid-template-columns: 72px 1fr; }
  .ingredient figure { width: 72px; height: 72px; }
  .badge { width: 76px; height: 76px; top: 4%; right: -4%; }
  .badge__big { font-size: 1rem; }
}

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