/* ===================================================================
   LumieWorld — Concept Redesign
   Pure-black luxury canvas, lit entirely by the glow of the LumiPets.
=================================================================== */

:root {
  --black: #000000;
  --panel: #07070a;
  --panel-2: #0c0c10;
  --ink: #f4f1ec;
  --ink-dim: rgba(244, 241, 236, 0.62);
  --ink-faint: rgba(244, 241, 236, 0.34);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);

  /* Signature LumiPet glow palette (r,g,b) */
  --magenta: 255, 46, 154;
  --teal: 46, 230, 214;
  --amber: 255, 180, 61;
  --violet: 162, 89, 255;
  --sky: 79, 182, 255;
  --ember: 255, 122, 69;

  /* Active ambient glow — animated by JS as you scroll past each pet */
  --glow: 255, 46, 154;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1320px;
  --gutter: clamp(24px, 6vw, 100px);
  --radius: 22px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input { font: inherit; }

::selection { background: rgba(var(--glow), 0.35); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(var(--glow), 0.45); border-radius: 10px; transition: background 0.6s var(--ease); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.italic { font-style: italic; font-weight: 400; }

/* ---------- Layout helpers ---------- */
section { position: relative; padding: clamp(96px, 14vw, 200px) var(--gutter); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: rgba(var(--glow), 0.9);
  box-shadow: 0 0 10px rgba(var(--glow), 0.8);
  transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(56px, 9vw, 120px);
  text-align: center;
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }

.section-title {
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 450;
}

.section-sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-dim);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 17px 34px;
  border-radius: 999px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
  white-space: nowrap;
}
.btn span { position: relative; z-index: 1; }
.btn-primary {
  background: var(--ink);
  color: #0a0a0c;
  box-shadow: 0 0 0 0 rgba(var(--glow), 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(var(--glow), 0.65);
  background: #fff;
}
.btn-glow {
  background: rgba(var(--glow), 0.14);
  color: var(--ink);
  border: 1px solid rgba(var(--glow), 0.5);
  box-shadow: 0 0 24px -4px rgba(var(--glow), 0.45) inset, 0 0 18px -6px rgba(var(--glow), 0.5);
}
.btn-glow:hover { background: rgba(var(--glow), 0.24); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: rgba(var(--glow), 0.6); background: rgba(var(--glow), 0.08); }
.btn-ghost .arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.btn-ghost:hover .arrow { transform: translateX(5px); }
.btn-small { padding: 12px 24px; font-size: 0.85rem; }

@media (max-width: 720px) {
  .btn-small { display: none; }
}

/* ===================================================================
   Ambient lighting system — the LumiPets light up the whole page
=================================================================== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  mix-blend-mode: screen;
  transition: background 1.2s var(--ease);
  will-change: transform, opacity;
}
.blob-a {
  width: 56vw; height: 56vw;
  top: -18vw; left: -14vw;
  background: radial-gradient(circle, rgba(var(--glow), 0.9), transparent 70%);
  animation: drift-a 38s ease-in-out infinite;
}
.blob-b {
  width: 46vw; height: 46vw;
  bottom: -16vw; right: -12vw;
  background: radial-gradient(circle, rgba(var(--glow), 0.7), transparent 70%);
  animation: drift-b 46s ease-in-out infinite;
  opacity: 0.28;
}
.blob-c {
  width: 34vw; height: 34vw;
  top: 38vh; left: 50%;
  background: radial-gradient(circle, rgba(var(--glow), 0.55), transparent 72%);
  animation: drift-c 52s ease-in-out infinite;
  opacity: 0.18;
}
@keyframes drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8vw, 10vh) scale(1.15); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-9vw, -8vh) scale(1.1); }
}
@keyframes drift-c {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-46%, -6vh) scale(1.2); }
}
.ambient-grain {
  position: absolute;
  inset: -200px;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.7) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

/* Custom cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow), 0.16), transparent 65%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: background 1s var(--ease), opacity 0.4s ease;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

/* Once js/effects.js spins up the canvas ring + particle-trail cursor,
   the OS arrow steps aside everywhere — links and buttons included. */
html.custom-cursor,
html.custom-cursor * {
  cursor: none;
}

/* Make sure real content sits above the ambient layer */
header, main, footer { position: relative; z-index: 2; }

/* ===================================================================
   Header
=================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px var(--gutter);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgb(var(--glow));
  box-shadow: 0 0 16px 3px rgba(var(--glow), 0.85), 0 0 40px 8px rgba(var(--glow), 0.35);
  transition: background 0.8s var(--ease), box-shadow 0.8s var(--ease);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}
.logo-text em { font-style: italic; font-weight: 300; opacity: 0.7; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  position: relative;
  padding: 10px 18px;
  font-size: 0.92rem;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color 0.4s ease;
  overflow: hidden;
}
.main-nav a span { position: relative; z-index: 1; }
.main-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--glow), 0.12);
  border-radius: 999px;
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::before { transform: scale(1); opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s ease; }

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ===================================================================
   Hero
=================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px var(--gutter) 80px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.85), transparent 60%),
    radial-gradient(ellipse 70% 70% at 85% 0%, rgba(0,0,0,0.6), transparent 55%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 450;
  margin-bottom: 28px;
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line span { display: inline-block; will-change: transform; }
.hero-title .italic {
  background: linear-gradient(92deg, rgb(var(--glow)) 0%, #fff 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 0.8s var(--ease);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 76px; }

.hero-proof { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgb(var(--glow));
  transition: color 0.8s var(--ease);
}
.proof-item span { font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.02em; }
.proof-divider { width: 1px; height: 34px; background: var(--line); }

.scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.scroll-cue i {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(var(--glow), 0.9), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue i::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #fff);
  animation: cue-fall 2.2s ease-in-out infinite;
}
@keyframes cue-fall {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

@media (max-width: 720px) {
  .hero { padding-top: 140px; padding-bottom: 56px; }
  .hero-proof { gap: 14px 28px; margin-bottom: 8px; }
  .proof-divider { display: none; }
  .scroll-cue { display: none; }
}

/* ===================================================================
   Empathy
=================================================================== */
.empathy { padding-top: clamp(80px, 12vw, 160px); padding-bottom: clamp(80px, 12vw, 160px); }
.empathy-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.empathy-title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: 32px;
}
.empathy-title em { font-style: italic; color: rgb(var(--glow)); transition: color 0.8s var(--ease); }
.empathy-body {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 680px;
  margin: 0 auto 36px;
}
.empathy-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}
.glow-arrow {
  display: inline-block;
  color: rgb(var(--glow));
  transition: color 0.8s var(--ease), transform 0.4s var(--ease);
  margin-left: 6px;
}

/* ===================================================================
   Gallery — pet spotlights
=================================================================== */
.gallery { padding-bottom: clamp(40px, 8vw, 80px); }

.pet-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.pet-spotlight:last-child { border-bottom: none; }
.pet-spotlight.reverse { grid-template-columns: 1fr 1.05fr; }
.pet-spotlight.reverse .pet-media { order: 2; }
.pet-spotlight.reverse .pet-info { order: 1; }

.pet-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
}
/* The product photography ships on a soft studio-white backdrop — rather than
   fight that, we lean into it: each LumiPet sits in its own warm "softbox"
   portal, and its signature color escapes the frame to light up the void
   around it. This is the literal "light from the pets" effect on a card scale. */
.pet-media-glow {
  position: absolute;
  inset: -22%;
  background: radial-gradient(circle at 50% 55%, rgba(var(--pet-rgb, var(--glow)), 0.6), transparent 64%);
  filter: blur(60px);
  opacity: 0.8;
  z-index: 0;
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.08); }
}
.pet-media::after {
  /* the softbox card itself */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  background: radial-gradient(120% 130% at 50% 28%, #fbf8f4 0%, #efe9e1 55%, #ddd5ca 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 50px 110px -28px rgba(var(--pet-rgb, var(--glow)), 0.65),
    0 0 0 1px rgba(var(--pet-rgb, var(--glow)), 0.18);
  transition: box-shadow 0.6s var(--ease);
}
.pet-media img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 34px rgba(40, 30, 50, 0.28));
  position: relative;
  z-index: 2;
  transition: transform 0.7s var(--ease);
}
.pet-spotlight:hover .pet-media img { transform: scale(1.06) translateY(-6px); }
.pet-spotlight:hover .pet-media::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 60px 130px -26px rgba(var(--pet-rgb, var(--glow)), 0.8),
    0 0 0 1px rgba(var(--pet-rgb, var(--glow)), 0.32);
}

.pet-info { max-width: 480px; }
.pet-tag {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--pet-rgb, var(--glow)), 0.95);
  margin-bottom: 16px;
  transition: color 0.6s var(--ease);
}
.pet-info h3 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}
.pet-info p { color: var(--ink-dim); font-size: 1.05rem; }

@media (max-width: 880px) {
  .pet-spotlight, .pet-spotlight.reverse {
    grid-template-columns: 1fr;
  }
  .pet-spotlight.reverse .pet-media,
  .pet-spotlight.reverse .pet-info,
  .pet-spotlight .pet-media,
  .pet-spotlight .pet-info { order: initial; }
  .pet-media { aspect-ratio: 4 / 3; }
}

/* ===================================================================
   Features
=================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--panel);
  padding: clamp(32px, 4vw, 48px) clamp(26px, 3vw, 36px);
  transition: background 0.5s ease;
}
.feature-card:hover { background: var(--panel-2); }
.feature-index {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgb(var(--glow));
  margin-bottom: 28px;
  transition: color 0.8s var(--ease);
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 14px; font-weight: 500; }
.feature-card p { color: var(--ink-dim); font-size: 0.97rem; }

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Story / Lifestyle
=================================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: clamp(80px, 12vw, 180px);
  padding-bottom: clamp(80px, 12vw, 180px);
}
.story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}
.story-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.92);
  transform: scale(1.01);
}
.story-media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 35%, rgba(var(--glow), 0.32));
  mix-blend-mode: screen;
  transition: background 1s var(--ease);
}
.story-content .story-body { color: var(--ink-dim); margin-bottom: 22px; font-size: 1.05rem; max-width: 520px; }
.story-content .btn-ghost { margin-top: 12px; }

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; }
}

/* ===================================================================
   Trusted / Press marquee
=================================================================== */
.trusted { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }
.trusted-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 36px;
}
.trusted-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.trusted-track {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  animation: marquee 38s linear infinite;
}
.trusted-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 0.5s ease;
}
.trusted-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================================
   Testimonials
=================================================================== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.quote-card {
  position: relative;
  background: linear-gradient(160deg, var(--panel-2), #000);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 3.5vw, 44px);
  transition: border-color 0.6s var(--ease), transform 0.5s var(--ease);
}
.quote-card:hover { border-color: rgba(var(--glow), 0.4); transform: translateY(-6px); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: rgb(var(--glow));
  margin-bottom: 6px;
  transition: color 0.8s var(--ease);
}
.quote-card blockquote { color: var(--ink-dim); font-size: 1rem; margin-bottom: 22px; }
.quote-card figcaption { font-size: 0.86rem; color: var(--ink-faint); letter-spacing: 0.04em; }

@media (max-width: 980px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Shop / Lands grid
=================================================================== */
.land-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
}
.land-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(34px, 4vw, 46px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease);
}
.land-card:hover { transform: translateY(-8px); border-color: rgba(var(--pet-rgb), 0.55); }
.land-glow {
  position: absolute;
  inset: auto -30% -60% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--pet-rgb), 0.45), transparent 70%);
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transform: scale(0.85);
}
.land-card:hover .land-glow { opacity: 1; transform: scale(1.05); }
.land-name { font-family: var(--font-display); font-size: 1.5rem; position: relative; z-index: 1; }
.land-desc { color: var(--ink-dim); font-size: 0.92rem; position: relative; z-index: 1; }
.land-arrow {
  position: relative; z-index: 1;
  margin-top: auto;
  align-self: flex-start;
  font-size: 1.1rem;
  color: rgb(var(--pet-rgb));
  transform: translateX(0);
  transition: transform 0.4s var(--ease);
  padding-top: 18px;
}
.land-card:hover .land-arrow { transform: translateX(8px); }

@media (max-width: 980px) {
  .land-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .land-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   Newsletter / Final CTA
=================================================================== */
.newsletter {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.newsletter-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 120%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(var(--glow), 0.28), transparent 65%);
  filter: blur(80px);
  z-index: -1;
  transition: background 1s var(--ease);
}
.newsletter-title {
  font-size: clamp(2.1rem, 5.6vw, 3.6rem);
  margin-bottom: 22px;
}
.newsletter-sub { color: var(--ink-dim); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.newsletter-form input {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 17px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  outline: none;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.newsletter-form input::placeholder { color: var(--ink-faint); }
.newsletter-form input:focus { border-color: rgba(var(--glow), 0.6); background: rgba(255,255,255,0.05); }
.newsletter-note { font-size: 0.85rem; color: var(--ink-faint); }

/* ===================================================================
   Footer
=================================================================== */
.site-footer {
  padding: clamp(64px, 8vw, 110px) var(--gutter) 36px;
  border-top: 1px solid var(--line-soft);
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 56px;
}
.footer-brand p { color: var(--ink-faint); margin-top: 14px; max-width: 280px; font-size: 0.94rem; }
.footer-links { display: flex; gap: clamp(40px, 6vw, 90px); flex-wrap: wrap; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 12px; transition: color 0.3s ease, transform 0.3s ease; }
.footer-col a:hover { color: rgb(var(--glow)); transform: translateX(4px); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}
.footer-bottom p { color: var(--ink-faint); font-size: 0.82rem; max-width: 560px; }
.footer-social { display: flex; gap: 22px; }
.footer-social a { font-size: 0.85rem; color: var(--ink-dim); transition: color 0.3s ease; }
.footer-social a:hover { color: rgb(var(--glow)); }

@media (max-width: 720px) {
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===================================================================
   Scroll-reveal base states (animated via GSAP in main.js)
=================================================================== */
/* Only hidden once JS confirms it can animate them back in — keeps content
   visible by default if scripts fail to load (progressive enhancement). */
html.js-ready [data-reveal] { opacity: 0; transform: translateY(36px); }
.pet-media-glow,
.story-media-glow { will-change: opacity; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
