/* ═══════════════════════════════════════
   VARIABLES
═══════════════════════════════════════ */
:root {
  --navy:       #0F1F3D;
  --navy-mid:   #1A3161;
  --slate:      #5A6D82;
  --slate-light:#7A91A8;
  --gold:       #F0A500;
  --gold-light: #FFD166;
  --cream:      #FFF8EE;
  --cream-alt:  #EFE5D0;
  --white:      #FFFFFF;
  --dark:       #111827;

  --font-head: 'Prompt', 'Sarabun', sans-serif;
  --font-body: 'Sarabun', sans-serif;

  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-xl:   48px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px  rgba(0,0,0,0.10);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.20);
  --shadow-gold: 0 8px 32px rgba(240,165,0,0.35);
}

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

html { scroll-behavior: smooth; }

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

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

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

.section-intro {
  text-align: center;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(90,109,130,0.12);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.section-label.light {
  color: var(--gold-light);
  background: rgba(255,209,102,0.14);
}

.section-h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-h2.light { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 580px;
  margin: 0 auto 0;
  line-height: 1.75;
}
.section-lead.light { color: rgba(255,255,255,0.72); }

.text-gold { color: var(--gold); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 14px 40px rgba(240,165,0,0.5);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-sm  { font-size: 0.875rem; padding: 10px 20px; }
.btn-lg  { font-size: 1.1rem;   padding: 18px 38px; }

/* ═══════════════════════════════════════
   STICKERS
═══════════════════════════════════════ */
.sticker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  line-height: 1.35;
  text-align: center;
}
.sticker-tilt-left  { transform: rotate(-3deg); }
.sticker-tilt-right { transform: rotate(3deg);  }
.sticker-sm { font-size: 0.75rem; padding: 7px 13px; }

/* ═══════════════════════════════════════
   PILLS
═══════════════════════════════════════ */
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.20);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   WAVES
═══════════════════════════════════════ */
.wave-down,
.wave-up {
  display: block;
  line-height: 0;
  overflow: hidden;

  margin-bottom: -2px;
  margin-top: -2px;
}
.wave-down svg,
.wave-up   svg { width: 100%; height: 80px; display: block; }

/* Safari sub-pixel gap fix: this wave has no inline background so a 1px
   sliver shows between the SVG edge and the section below in Safari */
.wave-up.navy {
  transform: translateZ(0);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(15,31,61,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  padding: 12px 36px;
}

.nav-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, #1f4588 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 110px 28px 120px;
}

/* floating fish decorations */
.hero-deco {
  position: absolute;
  font-size: 5rem;
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}
.fish-1 { top: 18%;    left: 0; font-size: 6rem;   animation: swim-rtl 84s linear infinite;  animation-delay: -30s; }
.fish-2 { top: 52%;    left: 0; font-size: 4rem;   animation: swim-rtl 66s linear infinite;  animation-delay: -18s; }
.fish-3 { bottom: 22%; left: 0; font-size: 3.5rem; animation: swim-rtl 102s linear infinite; animation-delay: -12s; }
/* pair fish — offset by half cycle for seamless continuous swimming */
.fish-4 { top: 30%;    left: 0; font-size: 5rem;   animation: swim-rtl 84s linear infinite;  animation-delay: -72s; }
.fish-5 { top: 65%;    left: 0; font-size: 3.5rem; animation: swim-rtl 66s linear infinite;  animation-delay: -51s; }
.fish-6 { bottom: 8%;  left: 0; font-size: 4.5rem; animation: swim-rtl 102s linear infinite; animation-delay: -63s; }
/* third fish per lane — fills remaining gaps (1/3 cycle offset from fish-1/2/3) */
.fish-7 { top: 22%;    left: 0; font-size: 5.5rem; animation: swim-rtl 84s linear infinite;  animation-delay: -2s;  }
.fish-8 { top: 58%;    left: 0; font-size: 4.5rem; animation: swim-rtl 66s linear infinite;  animation-delay: -40s; }
.fish-9 { bottom: 15%; left: 0; font-size: 3rem;   animation: swim-rtl 102s linear infinite; animation-delay: -80s; }

@keyframes fish-float {
  0%, 100% { transform: translateY(0) rotate(0deg);   }
  50%       { transform: translateY(-22px) rotate(6deg); }
}

@keyframes swim-rtl {
  0%   { transform: translateX(110vw)  translateY(0px)   rotate(0deg);  }
  12%  { transform: translateX(80vw)   translateY(-22px) rotate(-7deg); }
  25%  { transform: translateX(50vw)   translateY(0px)   rotate(0deg);  }
  37%  { transform: translateX(20vw)   translateY(22px)  rotate(7deg);  }
  50%  { transform: translateX(-12vw)  translateY(0px)   rotate(0deg);  }
  62%  { transform: translateX(-44vw)  translateY(-22px) rotate(-7deg); }
  75%  { transform: translateX(-74vw)  translateY(0px)   rotate(0deg);  }
  87%  { transform: translateX(-104vw) translateY(22px)  rotate(7deg);  }
  100% { transform: translateX(-130vw) translateY(0px)   rotate(0deg);  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}
.hero-sub strong { color: var(--gold-light); }
.hero-sub em     { font-style: normal; opacity: 0.7; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* hero image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  animation: img-float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.55));
}
@keyframes img-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
}

.sticker-on-img {
  position: absolute;
  bottom: 12px;
  right: -8px;
  font-size: 1rem;
  padding: 12px 18px;
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}
.scroll-arrow {
  font-size: 1.1rem;
  animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(7px); }
}

/* ═══════════════════════════════════════
   PROBLEM
═══════════════════════════════════════ */
.section-problem { background: var(--cream); text-align: center; }

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

.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  border: 2.5px solid transparent;
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.compare-bad  { border-color: #FFCDD2; background: #FFFAFA; }
.compare-good { border-color: #C8E6C9; background: #FAFFFE; }

.compare-icon { font-size: 2.8rem; margin-bottom: 16px; }

.compare-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--dark);
}

.compare-card ul { display: flex; flex-direction: column; gap: 11px; }
.compare-card li {
  font-size: 0.93rem;
  color: #555;
  padding-left: 18px;
  position: relative;
}
.compare-bad  li::before { content: "✕"; position: absolute; left: 0; color: #E53935; font-weight: 700; }
.compare-good li::before { content: "✓"; position: absolute; left: 0; color: #2E7D32; font-weight: 700; }

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--slate);
  background: var(--cream-alt);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 auto;
}

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

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

.story-body {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 32px;
}

.no-list { display: flex; flex-direction: column; gap: 15px; }

.no-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.88);
}
.badge-no  { font-size: 1rem; flex-shrink: 0; }
.badge-yes { font-size: 1rem; flex-shrink: 0; color: var(--gold-light); }

.story-visual { position: relative; }
.story-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.story-sticker {
  position: absolute;
  bottom: -14px;
  left: -18px;
}

/* fish callout */
.fish-compare {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.fish-compare-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(240,165,0,0.08);
  border: 2px solid rgba(240,165,0,0.30);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
}

.fish-deco-big {
  font-size: 7rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 8px 24px rgba(240,165,0,0.25));
}

.fish-compare-text { flex: 1; }

.fish-compare-text h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.fish-compare-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  margin-bottom: 22px;
}
.fish-compare-text strong { color: var(--gold-light); font-weight: 700; }

.fish-compare-quote {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0 !important;
}

@media (max-width: 680px) {
  .fish-compare-inner {
    flex-direction: column;
    padding: 36px 28px;
    gap: 24px;
    text-align: center;
  }
  .fish-deco-big { font-size: 5rem; }
}

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */
.section-benefits { background: var(--cream); text-align: center; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  border: 2.5px solid var(--cream-alt);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(240,165,0,0.18);
}

.benefit-icon { font-size: 3.2rem; margin-bottom: 22px; }

.benefit-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.72;
}

/* ═══════════════════════════════════════
   FEEDING GUIDE
═══════════════════════════════════════ */
.section-feeding { background: var(--navy-mid); text-align: center; }

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

.step-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  padding: 44px 26px 36px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  user-select: none;
}

.step-emoji { font-size: 3.2rem; margin-bottom: 18px; }

.step-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.72;
}

.feeding-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(240,165,0,0.10);
  border: 1.5px solid rgba(240,165,0,0.28);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
  font-size: 0;
}
.feeding-note span { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.feeding-note p    { font-size: 0.88rem; line-height: 1.72; color: rgba(255,255,255,0.75); }
.feeding-note strong { color: var(--gold-light); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.section-faq { background: var(--cream); text-align: center; }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--cream-alt);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  color: var(--dark);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--slate-light);
  transition: transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-item p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.75;
}
.faq-item p strong { color: var(--navy); }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.section-cta {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  padding: 120px 28px;
  position: relative;
  overflow: hidden;
}

.cta-fish-deco {
  position: absolute;
  font-size: 18rem;
  opacity: 0.08;
  right: -2rem;
  top: -2rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.sticker-cta {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 1rem;
}

.section-cta .section-h2 { margin-bottom: 14px; }
.section-cta .section-lead { margin: 0 auto 44px; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 56px 28px;
  text-align: center;
}

.footer-logo {
  height: 54px;
  width: auto;
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer-product {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .benefits-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 680px) {
  .section { padding: 72px 0; }

  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }

  /* hero */
  .hero { padding: 100px 20px 110px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-text  { align-items: center; order: 2; }
  .hero-visual { order: 1; }
  .hero-ctas  { justify-content: center; }
  .hero-pills { justify-content: center; }
  .sticker-on-img { right: 0; bottom: -4px; }

  /* compare */
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .compare-vs { margin: 0 auto; }

  /* story */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-visual { order: -1; }
  .story-sticker { bottom: -10px; left: -10px; }

  /* benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* wave height */
  .wave-down svg,
  .wave-up   svg { height: 50px; }

  /* typography — tighten for small screens */
  .hero-h1                { font-size: 2.25rem; }
  .hero-sub               { font-size: 0.95rem; }
  .section-h2             { font-size: 1.75rem; }
  .fish-compare-text h3   { font-size: 1.75rem; }
  .section-lead           { font-size: 0.95rem; }
  .story-body             { font-size: 0.95rem; }
  .benefit-card           { padding: 32px 20px; }
  .step-card              { padding: 32px 20px 28px; }
}

/* ═══════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--navy);
  height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1.5px solid rgba(240,165,0,0.28);
  border-bottom: 1.5px solid rgba(240,165,0,0.28);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION FLOATING DECORATIONS
═══════════════════════════════════════ */
.section-story  { position: relative; overflow: hidden; }
.section-feeding { position: relative; overflow: hidden; }

.s-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

/* Story section decos — rotate: separates tilt from swim animation */
.sd-1 { top: 8%;    left: 0;    font-size: 5.5rem; opacity: 0.14; animation: swim-rtl 78s linear infinite; animation-delay: -33s; }
.sd-5 { top: 55%;   left: 0;    font-size: 4rem;   opacity: 0.13; animation: swim-rtl 78s linear infinite; animation-delay: -59s; }
.sd-6 { top: 30%;   left: 0;    font-size: 3.5rem; opacity: 0.12; animation: swim-rtl 78s linear infinite; animation-delay: -7s;  }
.sd-2 { bottom: 12%; left: 3%;  font-size: 3.5rem; opacity: 0.12; rotate: -14deg;  animation: fish-swim 11s ease-in-out infinite 1.8s; }
.sd-3 { top: 42%;   right: 8%;  font-size: 2.2rem; opacity: 0.18; rotate: 5deg;    animation: fish-swim 6s  ease-in-out infinite 3.2s; }
.sd-4 { top: 18%;   left: 5%;   font-size: 2.8rem; opacity: 0.13; rotate: -30deg;  animation: fish-swim 9s  ease-in-out infinite 0.8s; }

/* Feeding section decos */
.fd-1 { top: 5%;    right: 3%;  font-size: 4.5rem; opacity: 0.14; rotate: -22deg;  animation: fish-swim 7s  ease-in-out infinite; }
.fd-2 { bottom: 10%; left: 0;   font-size: 3rem;   opacity: 0.15; animation: swim-rtl 60s linear infinite; animation-delay: -18s; }
.fd-5 { top: 28%;    left: 0;   font-size: 3.5rem; opacity: 0.14; animation: swim-rtl 60s linear infinite; animation-delay: -38s; }
.fd-6 { top: 55%;    left: 0;   font-size: 4rem;   opacity: 0.13; animation: swim-rtl 60s linear infinite; animation-delay: -58s; }
.fd-3 { top: 50%;   left: 6%;   font-size: 2rem;   opacity: 0.13; rotate: -8deg;   animation: fish-swim 12s ease-in-out infinite 4s; }
.fd-4 { bottom: 20%; right: 4%; font-size: 2.8rem; opacity: 0.16; rotate: 28deg;   animation: fish-swim 8s  ease-in-out infinite 1.2s; }

/* CTA swimming fish */
.cd-4 { top: 22%;    left: 0;    font-size: 4.5rem; opacity: 0.12; animation: swim-rtl 72s linear infinite; animation-delay: -20s; }
.cd-5 { bottom: 18%; left: 0;    font-size: 3.5rem; opacity: 0.11; animation: swim-rtl 72s linear infinite; animation-delay: -56s; }

/* CTA extra decos */
.cd-1 { bottom: 14%; left: 4%;  font-size: 4rem;   opacity: 0.09; rotate: -16deg;  animation: fish-swim 9s  ease-in-out infinite 0.6s; }
.cd-2 { top: 16%;    left: 9%;  font-size: 3rem;   opacity: 0.07; rotate: 22deg;   animation: fish-swim 7s  ease-in-out infinite 3.4s; }
.cd-3 { top: 58%;   right: 11%; font-size: 2rem;   opacity: 0.11; rotate: -6deg;   animation: fish-swim 8s  ease-in-out infinite 1.8s; }

@keyframes fish-swim {
  0%   { transform: translate(0px,   0px); }
  20%  { transform: translate(18px, -14px); }
  50%  { transform: translate(6px,  -22px); }
  75%  { transform: translate(-16px,-10px); }
  100% { transform: translate(0px,   0px); }
}

@media (max-width: 680px) {
  .s-deco { font-size: 2rem !important; opacity: 0.09 !important; }
  .marquee-track span { font-size: 0.75rem; letter-spacing: 0.09em; }
  .marquee-strip { height: 38px; }
}

/* ═══════════════════════════════════════
   SCROLL CRITTER
═══════════════════════════════════════ */
.scroll-critter {
  position: fixed;
  right: 12px;
  top: 0;
  width: 76px;
  height: 100vh;
  z-index: 99;
  pointer-events: none;
  user-select: none;
}

.scroll-track-line {
  position: absolute;
  top: 64px;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(240,165,0,0.22) 12%,
    rgba(240,165,0,0.22) 88%,
    transparent 100%
  );
  border-radius: 2px;
}

.scroll-cat-wrap {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  will-change: top;
}

.critter-cat {
  display: block;
  width: 60px;
  height: 72px;
  animation: cat-walk 0.72s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(240,165,0,0.28));
}

@keyframes cat-walk {
  0%   { transform: rotate(-8deg) translateY(0px); }
  28%  { transform: rotate(5deg)  translateY(-2px); }
  55%  { transform: rotate(-3deg) translateY(-1px); }
  100% { transform: rotate(-8deg) translateY(0px); }
}

.scroll-fish-end {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.critter-fish {
  width: 56px;
  height: 40px;
  animation: fish-float 2.6s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(240,165,0,0.28));
}

/* excited state — cat near fish */
.cat-near .critter-cat {
  animation: cat-excited 0.38s ease-in-out infinite;
}
.cat-near .critter-fish {
  animation: fish-excited 0.42s ease-in-out infinite;
}

@keyframes cat-excited {
  0%, 100% { transform: rotate(-14deg) scale(1.05); }
  50%       { transform: rotate(14deg)  scale(1.05); }
}
@keyframes fish-excited {
  0%, 100% { transform: scale(1)    rotate(0deg); }
  50%       { transform: scale(1.22) rotate(-18deg); }
}

@media (max-width: 900px) {
  .scroll-critter { width: 44px; right: 4px; }
  .critter-cat    { width: 30px; height: 36px; }
  .critter-fish   { width: 28px; height: 20px; }
}
