/* ============================================
   My Yellow Duck — Website Styles
   A modern, friendly, playful plush & lifestyle brand
   ============================================ */

:root {
  --yellow: #FFCD3C;
  --yellow-soft: #FFE9A8;
  --yellow-pale: #FFF8E4;
  --orange: #F7891E;
  --orange-dark: #E06D06;
  --cream: #FFFBF2;
  --brown: #6B4A1F;
  --brown-deep: #4A3216;
  --blue: #3E5CE0;
  --pink: #FFB6D5;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 30px rgba(224, 109, 6, 0.12);
  --shadow-pop: 0 6px 0 rgba(180, 84, 0, 0.35);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-head: 'Baloo 2', 'Fredoka', sans-serif;
  --font-body: 'Quicksand', 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown-deep);
  background: var(--cream);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--orange-dark);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--orange);
  background: var(--yellow-pale);
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  border: 2px dashed var(--yellow);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}

.section-lede {
  max-width: 640px;
  color: var(--brown);
  font-size: 1.1rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 100px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 0 rgba(180,84,0,0.35); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 3px 0 rgba(180,84,0,0.35); }

.btn-secondary {
  background: var(--white);
  color: var(--orange-dark);
  border: 2px solid var(--yellow);
}
.btn-secondary:hover { background: var(--yellow-pale); transform: translateY(-3px); }

.btn-light {
  background: var(--white);
  color: var(--orange-dark);
}
.btn-light:hover { transform: translateY(-3px); }

/* ---------- Decorative floating ducks ---------- */
.float-deco {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  animation: bob 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

/* ---------- Hero confetti accents ----------
   Purely decorative brand "confetti" (hearts + sparkle), echoing the
   heart/paw motif scattered across the official banner artwork. Fills
   the empty gutter beside the hero copy so the section doesn't feel
   lopsided on wide screens. Hidden on small screens where there's no
   spare space for it. */
.hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.confetti-heart, .confetti-sparkle, .confetti-dot {
  position: absolute;
  filter: drop-shadow(0 6px 10px rgba(224,109,6,0.18));
  animation: bob 6s ease-in-out infinite;
}
.confetti-dot {
  width: 16px; height: 16px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.7;
}
@media (max-width: 980px) {
  .hero-confetti { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 251, 242, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 6px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--orange-dark);
}
.brand img { height: 128px; width: auto; display: block; transition: height 0.3s ease; }
.site-header.scrolled .brand img { height: 96px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brown-deep);
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--orange-dark);
  border-radius: 3px;
  transition: 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 168px;
  background: radial-gradient(circle at 80% 10%, var(--yellow-soft) 0%, var(--cream) 55%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy .section-eyebrow { background: var(--white); }
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 22px;
}
.hero-copy h1 span { color: var(--yellow); -webkit-text-stroke: 1.5px var(--orange-dark); }
.hero-copy p {
  font-size: 1.18rem;
  color: var(--brown);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-social { display: flex; align-items: center; gap: 14px; }
.hero-social span { font-family: var(--font-head); font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--orange-dark);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.social-icons a:hover { background: var(--orange); color: var(--white); transform: translateY(-4px); }

.hero-art { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-art .blob {
  position: absolute;
  width: 92%; height: 92%;
  background: var(--yellow);
  border-radius: 61% 39% 55% 45% / 47% 45% 55% 53%;
  z-index: 1;
  animation: morph 10s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 61% 39% 55% 45% / 47% 45% 55% 53%; }
  50% { border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
}
.hero-art img.hero-main-duck {
  position: relative;
  z-index: 2;
  width: 68%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 50%;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-soft), 0 20px 30px rgba(224,109,6,0.3);
}
.hero-art .sparkle {
  position: absolute;
  z-index: 3;
  font-size: 1.8rem;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--orange-dark);
}
.hero-stats div span { font-size: 0.9rem; color: var(--brown); }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 0.85rem;
  font-family: var(--font-head);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2.4s ease-in-out infinite;
  z-index: 2;
}

/* ---------- Wave divider ---------- */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: auto; display: block; }

/* ---------- About / brand story ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-art { position: relative; }
.about-art img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.about-art .badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(-8deg);
  line-height: 1.3;
}
.about-copy p { color: var(--brown); margin-bottom: 18px; }
.about-copy p:last-of-type { margin-bottom: 28px; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.feature-pills li {
  background: var(--yellow-pale);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
}

/* ---------- Values / Crafted with heart ---------- */
.values { background: var(--yellow-pale); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 18px 34px rgba(224,109,6,0.18); }
.value-card .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { color: var(--brown); font-size: 0.98rem; }

/* ---------- Meet the family / characters ---------- */
.family { background: var(--white); }
.family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.family-card {
  position: relative;
  background: linear-gradient(160deg, var(--yellow-soft), var(--yellow-pale));
  border-radius: var(--radius-lg);
  padding: 34px 26px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.family-card:hover { transform: translateY(-10px) rotate(-1deg); }
.family-card img {
  width: 78%;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 16px rgba(224,109,6,0.2));
}
.family-card img.photo-frame {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 20px;
  border: 6px solid var(--white);
  filter: none;
  box-shadow: 0 12px 20px rgba(224,109,6,0.22);
}
.family-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.family-card p { color: var(--brown); font-size: 0.95rem; }
.family-card .tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--white);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
}
.family-card.center-card {
  background: linear-gradient(160deg, var(--orange), var(--orange-dark));
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.family-card.center-card h3 { color: var(--white); }
.family-card.center-card p { color: var(--yellow-pale); margin-bottom: 20px; }

/* ---------- Shop / products ---------- */
.shop { background: var(--yellow-pale); }
.shop-tabs {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin: 36px 0 44px;
}
.shop-tab {
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.shop-tab.active, .shop-tab:hover {
  background: var(--orange);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 18px 34px rgba(224,109,6,0.2); }
.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--yellow-pale);
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
  position: relative;
  overflow: hidden; /* safety net: never let a sizing glitch spill into the next card */
}
.product-thumb img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Flex items default to min-width:auto, which stops them shrinking below
     their natural pixel size — on iOS Safari in particular this made product
     photos ignore max-width/max-height and overflow their card. Overriding
     the minimum size to 0 lets the image actually shrink to fit the box. */
  min-width: 0;
  min-height: 0;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.product-info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.product-info h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--brown-deep); }
.product-info span.cat { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.product-info p { font-size: 0.88rem; color: var(--brown); flex: 1; }

.shop-cta { text-align: center; margin-top: 50px; }

/* ---------- Visit us / store gallery ---------- */
.visit { background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
  margin-top: 50px;
}
.visit-grid .g-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.visit-grid .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.visit-grid .g-item:hover img { transform: scale(1.08); }
.visit-grid .g1 { grid-column: span 2; grid-row: span 2; }
.visit-grid .g2 { grid-column: span 2; grid-row: span 1; }
.visit-grid .g3 { grid-column: span 2; grid-row: span 1; }
.visit-grid .g4 { grid-column: span 2; grid-row: span 1; }
.visit-grid .g5 { grid-column: span 2; grid-row: span 2; }
.visit-grid .g6 { grid-column: span 2; grid-row: span 1; }

.visit-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  background: var(--yellow-pale);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.visit-note p { color: var(--brown); flex: 1; min-width: 220px; }

/* ---------- Newsletter / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin: 0 auto;
  max-width: 1220px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -160px; right: -80px;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.cta-banner p { color: var(--yellow-pale); max-width: 480px; }
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}
.cta-form input,
.cta-form textarea {
  padding: 15px 20px;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
}
.cta-form input { border-radius: 999px; }
.cta-form textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 90px;
  max-height: 220px;
}
.cta-form input:focus,
.cta-form textarea:focus { outline: 3px solid var(--yellow); }
.cta-captcha-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}
.cta-error {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--white);
}
.cta-success {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px 26px;
}
.cta-success p { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-deep);
  color: var(--yellow-pale);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 64px; width: auto; }
.footer-brand span { font-family: var(--font-head); font-size: 1.15rem; color: var(--white); }
.footer-col p { color: rgba(255,251,242,0.7); font-size: 0.95rem; max-width: 280px; }
.footer-col h4 {
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,251,242,0.78); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,251,242,0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,251,242,0.75); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 50px; height: 50px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 900;
  cursor: pointer;
  border: none;
  font-size: 1.3rem;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-dark); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(74, 50, 22, 0.9);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-close {
  position: absolute; top: 26px; right: 30px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: none; border: none;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-social, .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-art { max-width: 480px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: repeat(4, 1fr); }
  .visit-grid .g1, .visit-grid .g5 { grid-column: span 2; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .brand img { height: 80px; }
  .site-header.scrolled .brand img { height: 64px; }
  .hero { padding-top: 120px; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .values-grid { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .visit-grid .g-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .cta-banner { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-form { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
