/* ════════════════════════════════════════════════
   Animal Restaurant — Landing Page
   Kawaii forest aesthetic · Soft pastel palette
   Fonts: Baloo 2 (headings) · Nunito (body)
   ════════════════════════════════════════════════ */

:root {
  --rose:        #FFB7C5;
  --rose-light:  #FFE8EE;
  --rose-deep:   #D4607A;
  --green:       #5B8A68;
  --green-dark:  #3D6B52;
  --green-light: #E8F2EB;
  --cream:       #FFF8F0;
  --gold:        #F5C842;
  --orange:      #FF8C52;
  --lavender:    #B098D0;
  --lav-light:   #EDE8F5;
  --brown:       #3D2B1F;
  --brown-mid:   #6B4C3B;

  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;

  --shadow-s: 0 4px 20px rgba(61,43,31,.07);
  --shadow-m: 0 8px 40px rgba(61,43,31,.11);
  --shadow-h: 0 16px 48px rgba(61,43,31,.17);

  --ease: .25s ease;
  --ease-slow: .4s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Layout helpers ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-eyebrow {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 48px;
}

.text-center { text-align: center; }

/* ── Reveal animations ── */
[data-reveal] { transition: opacity .6s ease, transform .6s ease; }

/* ── Keyframes ── */
@keyframes float {
  0%,100% { transform: translateY(0)    rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(-4deg); }
  66%      { transform: translateY(-5px)  rotate(4deg); }
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-14px) scale(1.04); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(7px); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: rgba(255,248,240,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,43,31,.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: padding var(--ease);
}

.nav.scrolled .nav-container { padding: 12px 24px; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  transition: color var(--ease);
}

.nav.scrolled .nav-brand { color: var(--brown); }

.nav-brand img {
  border-radius: 10px;
  transition: transform var(--ease);
}
.nav-brand:hover img { transform: rotate(-6deg) scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  font-size: .93rem;
  color: rgba(255,248,240,.88);
  transition: color var(--ease);
}

.nav.scrolled .nav-links a { color: var(--brown); }
.nav-links a:hover,
.nav.scrolled .nav-links a:hover { color: var(--green); }

.nav-btn {
  background: var(--green) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav-btn:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--brown); }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(30,18,8,.55) 0%,
    rgba(45,80,55,.5)  45%,
    rgba(50,30,15,.65) 100%
  );
}

/* Floating decorative elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.deco-item {
  position: absolute;
  font-size: 1.5rem;
  opacity: .55;
  animation: float 6s ease-in-out infinite;
}
.deco-paw1  { top: 14%;  left: 7%;   font-size: 1.9rem; animation-delay: 0s;   }
.deco-star1 { top: 22%;  right: 11%; font-size: 1.1rem; animation-delay: 1s;   color: var(--gold); opacity: .75; }
.deco-star2 { bottom:33%; left: 14%; font-size: .85rem; animation-delay: 2.2s; color: var(--gold); opacity: .65; }
.deco-heart { top: 58%;  right: 7%;  font-size: 1.4rem; animation-delay: 1.4s; color: var(--rose); }
.deco-paw2  { bottom:18%; right:19%; font-size: 1.1rem; animation-delay: .6s;  opacity: .4; }
.deco-leaf  { top: 42%;  left: 4%;   font-size: 1.6rem; animation-delay: 3s;   opacity: .55; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,248,240,.72);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.22);
  margin-bottom: 22px;
  animation: floatSlow 5s ease-in-out infinite;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
  margin-bottom: 22px;
  animation: float 5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
  margin-bottom: 18px;
  opacity: 0;
  animation: heroIn .8s ease .3s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,248,240,.82);
  line-height: 1.7;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroIn .8s ease .5s forwards;
}

/* Social proof pill */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 22px;
  border-radius: 50px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroIn .8s ease .7s forwards;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .87rem;
  color: rgba(255,248,240,.88);
  font-weight: 600;
}
.proof-sep { color: rgba(255,248,240,.38); }

/* Download buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroIn .8s ease .9s forwards;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  border: 2px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: white;
  min-width: 172px;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.dl-btn:hover {
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.dl-btn--apple { border-color: rgba(255,255,255,.28); }

.dl-icon { width: 26px; height: 26px; flex-shrink: 0; }

.dl-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.dl-text small {
  font-size: .68rem;
  opacity: .72;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}
.dl-text strong {
  font-size: .98rem;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
}

/* Scroll hint */
.hero-scroll-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  color: rgba(255,248,240,.65);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--ease);
}
.hero-scroll-cta:hover { color: white; }

/* ════════════════════════════════════════════════
   STORY
   ════════════════════════════════════════════════ */
.story { background: var(--cream); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.story-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .5s ease;
}
.story-img-wrap:hover img { transform: scale(1.03); }

.story-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: white;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-s);
}
.story-badge img { border-radius: 8px; }
.story-badge div { display: flex; flex-direction: column; }
.story-badge span { font-size: .68rem; color: var(--brown-mid); }
.story-badge strong { font-family: var(--font-head); font-size: .88rem; color: var(--brown); }

.story-text .section-title { margin-bottom: 18px; }

.story-lead {
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 14px;
  line-height: 1.72;
}
.story-text p { color: var(--brown-mid); margin-bottom: 30px; }

.story-stats {
  display: flex;
  gap: 28px;
}
.sstats-item { display: flex; flex-direction: column; gap: 3px; }
.sstats-num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.sstats-label { font-size: .78rem; color: var(--brown-mid); font-weight: 600; }

/* ════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════ */
.features {
  background: linear-gradient(135deg, #FFE6EE 0%, #FFF0E4 45%, #E6F0E9 100%);
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}

.features-wave, .features-wave-bottom {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
}
.features-wave        { top: -1px; }
.features-wave-bottom { bottom: -1px; }
.features-wave svg,
.features-wave-bottom svg { width: 100%; height: 60px; }

.features .section-eyebrow { color: var(--rose-deep); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-s);
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
  border-color: var(--rose);
}

.feat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}
.feat-icon svg { width: 60px; height: 60px; }

.feat-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 9px;
}
.feat-card p {
  font-size: .88rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════ */
.gallery {
  background: var(--cream);
  overflow: hidden;
  padding-bottom: 60px;
}
.gallery .section-eyebrow { color: var(--lavender); }
.gallery .section-title   { margin-bottom: 36px; }

.gallery-scroll-wrapper {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 18px;
  padding: 12px 24px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: 288px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.gallery-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-h);
}
.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--rose);
  color: var(--rose-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-s);
  transition: background var(--ease), color var(--ease), transform var(--ease);
  z-index: 10;
}
.gallery-btn:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-50%) scale(1.06);
}
.gallery-btn svg { width: 18px; height: 18px; }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 14px;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  opacity: .3;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all var(--ease);
}
.gallery-dot.active {
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════
   VIDEO SECTION
   ════════════════════════════════════════════════ */
.video-section {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--lav-light) 100%);
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
}
.vsection-wave-top, .vsection-wave-bot {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
}
.vsection-wave-top         { top: -1px; }
.vsection-wave-bot         { bottom: -1px; }
.vsection-wave-top svg,
.vsection-wave-bot svg     { width: 100%; height: 60px; }

.video-section .section-eyebrow { color: var(--green); }
.video-section .section-title   { margin-bottom: 36px; }

.video-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: start;
}

/* Lazy video embed pattern */
.video-lazy {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--brown);
}
.video-lazy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.video-lazy:hover img { transform: scale(1.04); }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
  transition: transform var(--ease), filter var(--ease);
}
.video-play svg { width: 100%; height: 100%; }
.video-lazy:hover .video-play {
  transform: translate(-50%,-50%) scale(1.15);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5));
}
.video-lazy iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg,rgba(40,20,10,.68) 0%,transparent 100%);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.video-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.video-thumb-item .video-lazy { border-radius: var(--r-sm); }
.video-thumb-item p {
  margin-top: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brown);
  padding: 0 2px;
}

/* ════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════ */
.reviews { background: var(--cream); }
.reviews .section-eyebrow { color: var(--lavender); }
.reviews .section-title   { margin-bottom: 40px; }

.ratings-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.rating-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}
.rating-stars { display: flex; gap: 2px; }
.rating-platform {
  font-size: .75rem;
  font-weight: 600;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.rating-divider {
  width: 1px;
  height: 56px;
  background: rgba(61,43,31,.13);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-s);
  border-top: 4px solid var(--rose);
  transition: transform var(--ease), box-shadow var(--ease);
}
.review-card:nth-child(2) { border-top-color: var(--green); }
.review-card:nth-child(3) { border-top-color: var(--lavender); }
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-h);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-card blockquote {
  font-style: italic;
  color: var(--brown-mid);
  line-height: 1.65;
  margin-bottom: 14px;
  font-size: .93rem;
}
.review-card cite {
  font-size: .78rem;
  color: var(--green);
  font-style: normal;
  font-weight: 600;
}

/* ════════════════════════════════════════════════
   DOWNLOAD CTA
   ════════════════════════════════════════════════ */
.download {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.download-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 35%, #7FB892 65%, #4A6B55 100%);
}
.download-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,200,66,.22) 0%, transparent 68%);
  border-radius: 50%;
}
.download-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -8%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,183,197,.18) 0%, transparent 68%);
  border-radius: 50%;
}

.download .container { position: relative; z-index: 1; }

.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.download-icon {
  width: 96px; height: 96px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  margin-bottom: 22px;
  animation: float 4s ease-in-out infinite;
}
.download-sub {
  color: rgba(255,248,240,.68);
  font-size: .88rem;
  margin-top: -32px;
  margin-bottom: 34px;
}

/* override hero-btns opacity animation in download context */
.download .hero-btns {
  opacity: 1 !important;
  animation: none !important;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--brown);
  color: rgba(255,248,240,.65);
  padding: 40px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,248,240,.1);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,248,240,.9);
}
.footer-brand img { border-radius: 8px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,248,240,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,248,240,.55);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.footer-social a:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-2px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; }
.footer-link {
  font-size: .78rem;
  color: var(--rose);
  transition: color var(--ease);
}
.footer-link:hover { color: white; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-thumbs { flex-direction: row; }
  .video-thumb-item { flex: 1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,248,240,.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform var(--ease-slow);
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--brown) !important; font-size: 1.2rem; }
  .nav-btn { padding: 10px 28px !important; }
  .nav-toggle { display: flex; }

  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-img-wrap img { height: 300px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feat-card { padding: 24px 20px; }

  /* Gallery */
  .gallery-item { width: 252px; }
  .gallery-item img { height: 180px; }

  /* Video */
  .video-thumbs { flex-direction: column; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .rating-divider { display: none; }
  .ratings-row { gap: 20px; }

  /* Download */
  .hero-btns { flex-direction: column; align-items: center; }
  .dl-btn { width: 100%; max-width: 252px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-logo { width: 88px; height: 88px; }
  .hero-proof { flex-direction: column; gap: 7px; }
  .proof-sep { display: none; }
  .story-stats { flex-direction: column; gap: 14px; }
  .section-title { font-size: 1.75rem; }
  .features-grid { grid-template-columns: 1fr; }
}
