@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #101512;
  --muted: #66706a;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #078739;
  --green-dark: #075a2b;
  --lime: #dfff4f;
  --yellow: #ffe72e;
  --line: #dfe4de;
  --shadow: 0 24px 70px rgba(16, 21, 18, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 76px);
  background: rgba(247, 248, 245, 0.88);
  border-bottom: 1px solid rgba(16, 21, 18, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #faf6ed;
  border: 1px solid rgba(16,21,18,.09);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(16,21,18,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.logo:hover { transform: translateY(-2px); box-shadow: 0 11px 28px rgba(16,21,18,.12); }
.logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); }
nav { display: flex; gap: 8px; }
nav a {
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
nav a:hover { color: var(--green); background: var(--white); }
.contact-trigger {
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.contact-trigger:hover { color: var(--ink); background: var(--lime); transform: translateY(-2px); }

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(68px, 8vw, 120px) clamp(22px, 5vw, 76px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy > * { animation: hero-rise .75s backwards cubic-bezier(.2,.8,.2,1); }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(7, 135, 57, .12);
}
h1, h2, h3, .about-quote { font-family: "Manrope", sans-serif; }
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.5rem, 6.5vw, 7.3rem);
  line-height: .91;
  letter-spacing: -.075em;
  font-weight: 800;
}
h1 em { color: var(--green); font-style: normal; }
.hero-intro {
  max-width: 590px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.7;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 15px 17px 15px 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 21, 18, .18);
  transition: transform .25s ease, background .25s ease;
}
.primary-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}
.primary-button:hover { transform: translateY(-3px); background: var(--green-dark); }

.hero-plate {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  justify-self: center;
  overflow: hidden;
  padding: 8px;
  border: 2px solid var(--white);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate(var(--shift-x), var(--shift-y));
  transition: transform .18s ease-out, box-shadow .3s ease;
  animation: visual-arrive .9s .12s backwards cubic-bezier(.2,.8,.2,1);
}
.hero-plate:hover { box-shadow: 0 36px 90px rgba(16, 21, 18, .16); }
.hero-plate::before {
  content: "Vianney's favorites";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(16, 21, 18, .08);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-food { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; border-radius: 20px; background: #dfe4de; }
.hero-food-main { grid-row: 1 / 3; }
.hero-food img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease; }
.hero-food-main img { object-position: center 48%; }
.hero-food-pizza img { object-position: center 50%; }
.hero-food-sushi img { object-position: center; }
.hero-food::after { content: ""; position: absolute; inset: 45% 0 0; pointer-events: none; background: linear-gradient(transparent, rgba(5,10,7,.72)); }
.hero-food figcaption { position: absolute; right: 18px; bottom: 16px; left: 18px; z-index: 1; display: flex; align-items: center; gap: 10px; color: var(--white); font-family: "Manrope",sans-serif; font-size: clamp(.88rem,1.2vw,1.05rem); font-weight: 800; letter-spacing: -.02em; }
.hero-food figcaption span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-family: "DM Sans",sans-serif; font-size: .62rem; letter-spacing: 0; }
.hero-food:hover img { transform: scale(1.06); filter: saturate(1.08); }

.favorites {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 5vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, .6fr);
  align-items: end;
  gap: 50px;
  max-width: 1390px;
  margin: 0 auto 56px;
}
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -28px; }
.section-heading h2, .about h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.section-heading > p:last-child, .about div > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1390px;
  margin: 0 auto;
}
.food-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  outline: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: card-reveal .7s backwards cubic-bezier(.2,.8,.2,1);
}
.food-card:nth-child(2) { animation-delay: .1s; }
.food-card:nth-child(3) { animation-delay: .2s; }
.food-card:hover, .food-card:focus-visible {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(7, 135, 57, .28);
  box-shadow: 0 24px 60px rgba(16, 21, 18, .12);
}
.card-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(16, 21, 18, .88);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.card-art {
  position: relative;
  height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
}
.card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 58%, rgba(8,13,10,.22));
}
.card-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .4s ease;
}
.pizza-card .card-art img { object-position: center 52%; }
.sushi-card .card-art img { object-position: center; }
.taco-card .card-art img { object-position: center 44%; }
.food-card:hover .card-art img { transform: scale(1.075); filter: saturate(1.08) contrast(1.03); }
.card-content { padding: 26px; }
.card-kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.card-content h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.card-content > p:not(.card-kicker) {
  min-height: 52px;
  margin: 15px 0 22px;
  color: var(--muted);
  line-height: 1.55;
}
.details-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.details-button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}
.card-details { display: none; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(70px, 11vw, 180px);
  padding: clamp(100px, 12vw, 180px) clamp(22px, 8vw, 130px);
  color: var(--white);
  background: var(--ink);
}
.about-quote {
  position: relative;
  margin: 0;
  color: var(--lime);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.06em;
}
.about-quote::after {
  content: "";
  display: block;
  width: 74px;
  height: 8px;
  margin-top: 38px;
  background: var(--green);
  border-radius: 99px;
}
.about .eyebrow { color: var(--lime); }
.about .eyebrow::before { background: var(--lime); box-shadow: 0 0 0 5px rgba(223,255,79,.14); }
.about div > p:last-child { margin-top: 24px; color: #aeb6b1; font-size: 1.05rem; }

.site-footer { position: relative; overflow: hidden; padding: clamp(72px, 9vw, 120px) clamp(22px, 5vw, 76px) 28px; color: var(--white); background: #0b100d; border-top: 1px solid rgba(255,255,255,.08); }
.footer-glow { position: absolute; top: -260px; left: 15%; width: 540px; height: 540px; background: radial-gradient(circle, rgba(7,135,57,.34), transparent 68%); pointer-events: none; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.site-footer.is-visible .footer-glow { transform: translate3d(100px,55px,0) scale(1.12); }
.footer-main { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px,1.15fr) minmax(480px,1fr); gap: clamp(70px,10vw,170px); max-width: 1390px; margin: 0 auto; }
.footer-brand { max-width: 480px; }
.footer-logo { width: 82px; height: 82px; display: grid; margin-bottom: 26px; border-color: rgba(255,255,255,.16); border-radius: 20px; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.footer-brand > p { max-width: 430px; margin: 0 0 34px; color: #98a29c; font-size: clamp(1.05rem,1.4vw,1.25rem); line-height: 1.7; }
.subscribe-block { max-width: 470px; margin: 0 0 34px; }
.subscribe-label { margin: 0 0 12px; color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.subscribe-form { display: flex; gap: 8px; padding: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; transition: border-color .2s,background .2s; }
.subscribe-form:focus-within { background: rgba(255,255,255,.1); border-color: rgba(223,255,79,.55); }
.subscribe-form input { min-width: 0; flex: 1; padding: 12px 14px; color: var(--white); background: transparent; border: 0; outline: 0; }
.subscribe-form input::placeholder { color: #747f78; }
.subscribe-form button { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; color: var(--ink); background: var(--lime); border: 0; border-radius: 11px; font-size: .78rem; font-weight: 800; cursor: pointer; transition: transform .2s,background .2s; }
.subscribe-form button:hover { background: var(--white); transform: translateY(-1px); }
.form-status { min-height: 18px; margin: 9px 0 0; color: var(--lime); font-size: .75rem; }
.footer-cta { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); font-size: .9rem; font-weight: 700; text-decoration: none; transition: color .2s,border-color .2s,gap .2s; }
.footer-cta:hover { gap: 24px; color: var(--lime); border-color: var(--lime); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-column h3 { margin: 0 0 10px; color: var(--white); font-family: "DM Sans",sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-contact { position: relative; padding: 0; color: #98a29c; background: none; border: 0; font-size: .88rem; text-decoration: none; cursor: pointer; transition: color .2s,transform .2s; }
.footer-column a::after, .footer-contact::after { content: ""; position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.footer-column a:hover, .footer-contact:hover { color: var(--white); transform: translateX(3px); }
.footer-column a:hover::after, .footer-contact:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-bottom { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; max-width: 1390px; margin: clamp(70px,9vw,120px) auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: #747f78; font-size: .76rem; }
.footer-signature { text-align: center; }
.footer-signature span { color: var(--lime); }
.back-to-top { justify-self: end; display: inline-flex; align-items: center; gap: 10px; color: #98a29c; font-size: .76rem; font-weight: 700; text-decoration: none; transition: color .2s; }
.back-to-top span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; transition: transform .25s; }
.back-to-top:hover { color: var(--white); }
.back-to-top:hover span { transform: translateY(-4px); }
.footer-brand, .footer-column, .footer-bottom { opacity: 0; transform: translateY(24px); }
.site-footer.is-visible .footer-brand, .site-footer.is-visible .footer-column, .site-footer.is-visible .footer-bottom { animation: footer-rise .7s forwards cubic-bezier(.2,.8,.2,1); }
.site-footer.is-visible .footer-column:nth-child(1) { animation-delay: .08s; }
.site-footer.is-visible .footer-column:nth-child(2) { animation-delay: .16s; }
.site-footer.is-visible .footer-column:nth-child(3) { animation-delay: .24s; }
.site-footer.is-visible .footer-bottom { animation-delay: .3s; }

.contact-modal {
  width: min(92vw, 520px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
}
.contact-modal::backdrop {
  background: rgba(7, 12, 9, .72);
  backdrop-filter: blur(12px);
  animation: backdrop-in .25s ease both;
}
.contact-modal[open] { animation: modal-in .4s cubic-bezier(.2,.8,.2,1) both; }
.modal-shell {
  position: relative;
  padding: clamp(34px, 7vw, 58px);
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .35);
}
.modal-shell::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 190px;
  height: 190px;
  background: var(--lime);
  border-radius: 50%;
  opacity: .7;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.modal-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 18px;
  font-size: 1.55rem;
  transform: rotate(-5deg);
}
.contact-modal h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.modal-copy { margin: 20px 0 28px; color: var(--muted); line-height: 1.65; }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 7px; }
.form-row label { color: #3f4943; font-size: .76rem; font-weight: 800; }
.form-row input, .form-row textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; outline: 0; resize: vertical; transition: border-color .2s,box-shadow .2s,background .2s; }
.form-row input:focus, .form-row textarea:focus { background: var(--white); border-color: var(--green); box-shadow: 0 0 0 4px rgba(7,135,57,.1); }
.form-row input::placeholder, .form-row textarea::placeholder { color: #9ba39e; }
.send-message { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 15px 17px; color: var(--white); background: var(--ink); border: 0; border-radius: 13px; font-weight: 800; cursor: pointer; transition: background .2s,transform .2s; }
.send-message:hover { background: var(--green-dark); transform: translateY(-2px); }
.contact-status { color: var(--green); text-align: center; }
.phone-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 14px;
  align-items: center;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  border-radius: 18px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.phone-link:hover { background: var(--green-dark); transform: translateY(-3px); }
.phone-label { color: #aeb6b1; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.phone-link strong { grid-column: 1; font-family: "Manrope", sans-serif; font-size: 1.2rem; }
.phone-arrow { grid-column: 2; grid-row: 1 / 3; font-size: 1.6rem; }
.modal-note { margin: 16px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes visual-arrive {
  from { opacity: 0; transform: perspective(1200px) rotateY(-8deg) translateX(40px); }
  to { opacity: 1; transform: perspective(1200px) rotateY(0) translateX(0); }
}
@keyframes card-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes footer-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-plate { width: 100%; }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .food-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .food-card:last-child .card-art { height: 100%; min-height: 320px; }
}

@media (max-width: 700px) {
  .site-header { height: 68px; }
  nav { max-width: calc(100vw - 92px); gap: 2px; overflow-x: auto; scrollbar-width: none; }
  nav::-webkit-scrollbar { display: none; }
  nav a { flex: 0 0 auto; padding-inline: 9px; font-size: .78rem; }
  .contact-trigger { flex: 0 0 auto; padding: 9px 12px; font-size: .78rem; }
  .hero { padding-top: 58px; gap: 42px; }
  h1 { font-size: clamp(3.25rem, 15vw, 5rem); }
  .hero-plate { aspect-ratio: 1.32 / 1; border-width: 6px; border-radius: 20px; }
  .hero-plate::before { top: 10px; right: 10px; font-size: .58rem; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading .eyebrow { margin-bottom: 0; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card:last-child { grid-column: auto; display: block; }
  .food-card:last-child .card-art, .card-art { height: 245px; min-height: 0; }
  .about { grid-template-columns: 1fr; gap: 70px; }
  .footer-main { grid-template-columns: 1fr; gap: 58px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-signature { display: none; }
}

@media (max-width: 480px) {
  .subscribe-form { align-items: stretch; flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .back-to-top { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-copy > *, .hero-plate, .food-card, .contact-modal[open], .contact-modal::backdrop, .footer-brand, .footer-column, .footer-bottom { animation: none !important; }
  .footer-brand, .footer-column, .footer-bottom { opacity: 1; transform: none; }
}
