/* Lan Hương Beauty — layout: diagonal hero, bento, horizontal product rail */

:root {
  --c-ink: #1a1412;
  --c-cream: #faf6f0;
  --c-blush: #e8c4b8;
  --c-terra: #c45c3e;
  --c-sage: #5a7a6a;
  --c-gold: #b8956a;
  --c-card: #fffefb;
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 40px rgba(26, 20, 18, 0.08);
  --shadow-float: 0 20px 50px rgba(196, 92, 62, 0.15);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--c-terra);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--c-sage);
}

.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;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--c-terra);
  color: #fff;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 20, 18, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--c-ink);
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-terra), var(--c-gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-8deg);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-text em {
  font-style: normal;
  color: var(--c-terra);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--c-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  margin-top: 6px;
}

.nav-toggle-bar::after {
  margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--c-ink);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--c-terra);
  transition: width 0.3s var(--ease-out);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--c-terra);
  color: #fff;
  box-shadow: var(--shadow-float);
}

.btn-primary:hover {
  background: #a84d32;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(26, 20, 18, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--c-terra);
  border-color: var(--c-terra);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 2rem 1.25rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 4rem);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-sage);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero h1 span {
  color: var(--c-terra);
  display: inline-block;
  transform: skewX(-4deg);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 32ch;
  color: rgba(26, 20, 18, 0.75);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  background: var(--c-card);
  border-radius: 999px;
  border: 1px solid var(--c-blush);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-img-main {
  clip-path: polygon(8% 0, 100% 4%, 92% 100%, 0 96%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-img-main img {
  width: 100%;
  aspect-ratio: 4/5;
}

.hero-img-float {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid var(--c-cream);
}

.hero-img-float--a {
  width: 38%;
  bottom: 8%;
  left: -6%;
  transform: rotate(-6deg);
  z-index: 2;
}

.hero-img-float--b {
  width: 32%;
  top: 12%;
  right: -4%;
  transform: rotate(8deg);
  z-index: 2;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--c-blush));
  opacity: 0.35;
  clip-path: ellipse(80% 100% at 50% 100%);
}

/* Section heads */
.section-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 2rem;
  padding: 0 1.25rem;
}

.section-head--offset {
  padding-left: clamp(1.25rem, 8vw, 6rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

/* Bento */
.bento {
  padding: 4rem 1.25rem 5rem;
  background: linear-gradient(160deg, var(--c-card) 0%, var(--c-cream) 60%);
}

.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-cell {
  position: relative;
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--shadow-soft);
}

.bento-cell--wide {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  min-height: 320px;
}

.bento-cell--wide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.bento-cell--accent {
  background: var(--c-sage);
  color: #fff;
}

.bento-cell--accent h3 {
  color: #fff;
}

.bento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(26, 20, 18, 0.75));
  color: #fff;
}

.bento-overlay h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.bento-overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.bento-overlay--compact {
  padding: 1rem;
}

.bento-icon {
  font-size: 1.5rem;
  color: var(--c-terra);
  margin-bottom: 0.75rem;
}

.bento-cell h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.bento-cell p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(26, 20, 18, 0.7);
}

.bento-cell:not(.bento-cell--wide) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Products */
.products {
  padding: 4rem 0 5rem;
  background: var(--c-ink);
  color: var(--c-cream);
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.products-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  align-self: start;
}

.products-sidebar h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1rem;
  color: #fff;
}

.products-sidebar p {
  color: rgba(250, 246, 240, 0.7);
  margin: 0 0 1.5rem;
}

.products-sidebar .section-num {
  color: var(--c-blush);
}

.products-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--c-terra) transparent;
}

.products-track::-webkit-scrollbar {
  height: 6px;
}

.products-track::-webkit-scrollbar-thumb {
  background: var(--c-terra);
  border-radius: 3px;
}

.product-card {
  flex: 0 0 min(300px, 78vw);
  scroll-snap-align: start;
  background: var(--c-card);
  color: var(--c-ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
}

.product-card--tall .product-img img {
  aspect-ratio: 3/4;
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  aspect-ratio: 4/5;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-terra);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.25rem;
}

.product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.product-desc {
  font-size: 0.88rem;
  color: rgba(26, 20, 18, 0.65);
  margin: 0 0 0.75rem;
}

.product-price {
  font-weight: 700;
  color: var(--c-terra);
  margin: 0;
}

.product-price span {
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(26, 20, 18, 0.5);
}

/* Ingredients mosaic */
.ingredients {
  padding: 5rem 1.25rem;
}

.ingredients-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.ingredients-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0;
}

.ingredients-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.ingredient-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ingredient-visual--large {
  grid-row: span 2;
}

.ingredient-visual img {
  width: 100%;
  aspect-ratio: 3/4;
}

.ingredient-visual--small img {
  aspect-ratio: 5/4;
}

.ingredient-visual figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  background: var(--c-card);
  color: var(--c-sage);
  font-weight: 600;
}

.ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ingredient-item {
  padding: 1.25rem 1.5rem;
  background: var(--c-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-blush);
  transition: border-color 0.3s, transform 0.3s;
}

.ingredient-item:hover {
  border-color: var(--c-terra);
  transform: translateX(6px);
}

.ingredient-item--highlight {
  background: linear-gradient(135deg, #fff5eb, var(--c-card));
  border-left-color: var(--c-terra);
}

.ingredient-name {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.ingredient-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(26, 20, 18, 0.7);
}

.ingredient-visual--small {
  grid-column: 3;
  grid-row: 2;
}

/* Ritual */
.ritual {
  padding: 4rem 1.25rem;
  background: var(--c-blush);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.ritual-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ritual-images {
  position: relative;
  min-height: 380px;
}

.ritual-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.ritual-img--1 {
  width: 75%;
  margin-left: auto;
  clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
}

.ritual-img--2 {
  position: absolute;
  width: 48%;
  bottom: 0;
  left: 0;
  border: 5px solid var(--c-cream);
  transform: rotate(4deg);
}

.ritual-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 1.25rem;
}

.ritual-steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.ritual-steps li {
  margin-bottom: 0.75rem;
}

.ritual-note {
  font-size: 0.88rem;
  color: rgba(26, 20, 18, 0.65);
  font-style: italic;
}

/* Testimonials */
.testimonials {
  padding: 5rem 1.25rem;
}

.testimonials-head {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.testimonials-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.testimonial-deck {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--c-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card--shift {
  transform: translateY(2rem);
  background: linear-gradient(145deg, #fff, var(--c-blush));
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--c-cream);
}

.testimonial-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.testimonial-card cite {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--c-sage);
  font-weight: 600;
}

/* Gallery */
.gallery {
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  animation: gallery-scroll 40s linear infinite;
  width: max-content;
}

.gallery-track img {
  width: 280px;
  height: 200px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

@keyframes gallery-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-track:hover {
  animation-play-state: paused;
}

/* Contact */
.contact {
  padding: 4rem 1.25rem;
  background: var(--c-card);
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-form {
  background: var(--c-cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin: 0 0 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(26, 20, 18, 0.15);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--c-terra);
  outline-offset: 2px;
}

.form-consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.form-consent input {
  width: auto;
  margin: 0.25rem 0 0;
}

.form-consent label {
  margin: 0;
  font-weight: 400;
}

.form-status {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.success {
  color: var(--c-sage);
}

.form-status.error {
  color: #b33;
}

/* Legal */
.legal {
  padding: 3rem 1.25rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.legal-columns article {
  padding: 1.5rem;
  background: var(--c-card);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--c-gold);
}

.legal-columns h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.legal-columns p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(26, 20, 18, 0.75);
}

/* Footer */
.site-footer {
  background: var(--c-ink);
  color: rgba(250, 246, 240, 0.8);
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--c-blush);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-disclaimer {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  opacity: 0.6;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 480px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  z-index: 200;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.85rem;
  min-width: 200px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    min-height: 360px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-cell--wide {
    grid-column: span 2;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar {
    position: static;
  }

  .ingredients-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .ingredient-visual--large {
    grid-row: span 1;
  }

  .ingredient-visual--small {
    grid-column: 1 / -1;
  }

  .ritual-inner {
    grid-template-columns: 1fr;
  }

  .legal-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--c-cream);
    padding: 1rem;
    border-bottom: 1px solid rgba(26, 20, 18, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-cell--wide {
    grid-column: span 1;
  }

  .ingredients-mosaic {
    grid-template-columns: 1fr;
  }

  .testimonial-deck {
    grid-template-columns: 1fr;
  }

  .testimonial-card--shift {
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-img-float--a {
    left: 0;
    width: 42%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
