/* ============================================================
   PAVLOVA LOS ANGELES — style.css
   Mobile-first · Luxury dessert brand
   Palette: warm white / cream / beige / blush / gold / espresso
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --white:        #FDFAF7;
  --cream:        #F5EAD8;
  --beige:        #EDD5C3;
  --blush:        #E8C5C5;
  --gold:         #C4976A;
  --gold-light:   #D4B088;
  --espresso:     #2A2218;
  --espresso-2:   #3D3028;
  --warm-gray:    #6B5D4F;
  --light-gray:   #A09888;
  --border:       #E5DDD5;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --radius:   2px;
  --shadow:   0 2px 16px rgba(42, 34, 24, 0.08);
  --shadow-lg:0 8px 40px rgba(42, 34, 24, 0.14);
  --transition: 0.3s ease;

  --max-w:    1200px;
  --max-w-sm: 760px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(38px, 5.5vw, 62px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
em { font-style: italic; color: var(--gold); }
p { color: var(--warm-gray); line-height: 1.75; }
strong { font-weight: 500; color: var(--espresso); }

.body-lg { font-size: 17px; line-height: 1.8; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label--light { color: var(--gold-light); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad  { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--espresso); }
.section-cta   { background: linear-gradient(155deg, var(--cream) 0%, var(--beige) 100%); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-sub { font-size: 16px; max-width: 440px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--espresso);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--espresso-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 34, 24, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 10px;
  background: var(--espresso);
  color: var(--white);
}
.btn-nav:hover { background: var(--espresso-2); }

.btn-card {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 1.5px;
}
.btn-card:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}

.btn-gold {
  background: var(--gold-light);
  color: var(--espresso);
  padding: 16px 44px;
  font-size: 12px;
}
.btn-gold:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 151, 106, 0.35);
}

.btn-lg  { padding: 17px 44px; font-size: 12px; }
.btn-full { width: 100%; padding: 16px; font-size: 12px; }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled {
  background: rgba(253, 250, 247, 0.96);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1400px;
  margin: 0 auto;
  transition: padding var(--transition);
}
#nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.nav-logo {
  font-family: var(--font-head);
  font-size: 21px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 36px;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--espresso); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(253, 250, 247, 0.98);
  border-top: 1px solid var(--border);
  padding: 20px 32px 28px;
  backdrop-filter: blur(16px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--espresso); }
.nav-mobile .btn-primary {
  border-bottom: none;
  margin-top: 20px;
  text-align: center;
  padding: 14px;
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--espresso);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease,
              background var(--transition), box-shadow var(--transition);
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta:hover {
  background: var(--espresso-2);
  box-shadow: 0 12px 40px rgba(42, 34, 24, 0.25);
}

/* ── IMAGE PLACEHOLDERS ── */
/* Remove these and use real product photos in production */
.img-placeholder {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.hero-placeholder {
  aspect-ratio: 4 / 5;
  background: radial-gradient(ellipse at 60% 40%, #EDD5C3 0%, #D4B088 50%, #C4976A 100%);
}
.hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}
.pavlova-ring {
  width: min(260px, 60%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 0 60px rgba(255,255,255,0.2),
    0 0 80px rgba(196,151,106,0.3);
}
.about-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--beige) 0%, var(--blush) 100%);
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 120px 32px 80px;
  background: linear-gradient(155deg, var(--white) 0%, var(--cream) 55%, var(--beige) 100%);
  text-align: center;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
#hero h1 { margin-bottom: 18px; }
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.delivery-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius);
}
.hero-visual { width: 100%; max-width: 420px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
#about h2 { margin-bottom: 18px; }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-top: 36px;
}
.pillar { border-top: 1px solid var(--border); padding-top: 14px; }
.pillar h4 { font-size: 10px; letter-spacing: 2px; margin-bottom: 6px; }
.pillar p  { font-size: 14px; line-height: 1.6; }

/* ── PRODUCT GRID (mobile: horizontal scroll) ── */
.product-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  cursor: grab;
}
.product-grid:active { cursor: grabbing; }
.product-grid::-webkit-scrollbar { height: 3px; }
.product-grid::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.product-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.product-card {
  flex: 0 0 clamp(260px, 76vw, 300px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 210px;
  background: linear-gradient(135deg, var(--ca, #EDD5C3), var(--cb, #C4976A));
}
.product-img.has-photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}
.product-body { padding: 22px 22px 20px; }
.product-body h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.product-desc       { font-size: 13px; line-height: 1.65; margin-bottom: 12px; }
.product-ingredients{ font-size: 12px; color: var(--light-gray); margin-bottom: 5px; }
.product-allergen   { font-size: 11px; color: var(--light-gray); font-style: italic; margin-bottom: 18px; }
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.product-price {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: var(--espresso);
}

/* ── CUSTOM CAKES (dark section) ── */
.custom-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.custom-h2 { color: var(--white); margin-bottom: 18px; }
.custom-h2 em { color: var(--gold-light); }
.custom-sub {
  color: rgba(253, 250, 247, 0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 250, 247, 0.6);
  border: 1px solid rgba(253, 250, 247, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}
.tag:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.why-item { text-align: center; }
.why-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--gold);
}
.why-item h4 { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
.why-item p  { font-size: 14px; line-height: 1.65; }

/* ── HOW TO ORDER ── */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 28px 24px;
}
.step-arrow {
  font-size: 20px;
  color: var(--border);
  transform: rotate(90deg);
  line-height: 1;
  padding: 4px 0;
}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
.step p  { font-size: 14px; max-width: 190px; margin: 0 auto; }

/* ── REVIEWS (mobile: horizontal scroll) ── */
.reviews-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.reviews-grid::-webkit-scrollbar { height: 3px; }
.reviews-grid::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.reviews-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.review-card {
  flex: 0 0 clamp(260px, 78vw, 300px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--espresso);
  font-style: italic;
  margin-bottom: 18px;
}
.reviewer {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--espresso);
}
.reviewer span {
  display: block;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--light-gray);
  margin-top: 3px;
  font-size: 11px;
}

/* ── INSTAGRAM GALLERY ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 32px;
}
.ig-tile {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--ia, #EDD5C3), var(--ib, #C4976A));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: opacity var(--transition);
  overflow: hidden;
}
.ig-tile.has-photo {
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
}
.ig-tile:hover { opacity: 0.82; }
.ig-follow { text-align: center; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--espresso);
  text-align: left;
  gap: 20px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 22px;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 240px; padding-bottom: 22px; }
.faq-answer p { font-size: 15px; line-height: 1.8; }

/* ── FINAL CTA ── */
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
#contact h2 { margin-bottom: 18px; }
.cta-sub { font-size: 17px; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
}
.footer-nav,
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a,
.footer-contact a,
.footer-contact p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(42, 34, 24, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-overlay:not([hidden]) { pointer-events: all; }
.modal-overlay.open { opacity: 1; }

.modal {
  background: var(--white);
  max-width: 560px;
  width: 100%;
  max-height: 92svh;
  overflow-y: auto;
  padding: 44px 40px;
  position: relative;
  border-radius: var(--radius);
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-thumb { background: var(--border); }

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 18px;
  color: var(--light-gray);
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--espresso); }
.modal h3 { margin: 8px 0 12px; }
.modal-sub { font-size: 15px; margin-bottom: 28px; }

/* Form */
.custom-form { display: flex; flex-direction: column; gap: 16px; }
.form-row    { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--espresso);
  border-radius: var(--radius);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 96px; }
.modal-note {
  font-size: 13px;
  text-align: center;
  margin-top: 18px;
  color: var(--light-gray);
}
.modal-note a { color: var(--gold); }
.modal-note a:hover { text-decoration: underline; }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 1;
  transform: none;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE — TABLET (≥ 640px) ── */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — DESKTOP (≥ 900px) ── */
@media (min-width: 900px) {
  /* Nav */
  .nav-links { display: flex; }
  .nav-toggle { display: none; }

  /* Hero: side by side */
  #hero {
    flex-direction: row;
    text-align: left;
    padding: 120px 80px 80px;
    gap: 80px;
  }
  .hero-content { flex: 1; max-width: 520px; }
  .hero-ctas    { justify-content: flex-start; }
  .delivery-badges { justify-content: flex-start; }
  .hero-sub { margin-left: 0; }
  .hero-visual { flex: 1; max-width: none; }
  .hero-placeholder { aspect-ratio: 3 / 4; }
  .pavlova-ring { width: min(320px, 55%); }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }

  /* Product grid: 5 columns, no scroll */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
  .product-card { flex: none; }

  /* Reviews: 5 columns */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
  .review-card { flex: none; }

  /* Why: 4 per row */
  .why-grid { grid-template-columns: repeat(4, 1fr); }

  /* Steps: horizontal */
  .steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .step-arrow { transform: none; padding: 0; margin-top: 30px; }

  /* Instagram: 6 columns */
  .ig-grid { grid-template-columns: repeat(6, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }

  .section-pad { padding: 100px 0; }
}

/* ── RESPONSIVE — WIDE (≥ 1100px) ── */
@media (min-width: 1100px) {
  .nav-inner { padding: 22px 60px; }

  /* Product cards: slightly more room */
  .product-body h3 { font-size: 17px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}
