/* ============================================================
   Iniminimo Landing Page v4 — index-v4.css
   Modern patterns: dot grids, bento, marquee, glassmorphism
   ============================================================ */

/* === @font-face === */
@font-face {
  font-family: 'Galyon';
  src: url('../fonts/Galyon-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Galyon';
  src: url('../fonts/Galyon-Book-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Holiday Journey';
  src: url('../fonts/HolidayJourneyRegular-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* === Design Tokens === */
:root {
  --blue: #0040ea;
  --blue-dark: #0a1a5c;
  --blue-mid: #162da5;
  --orange: #ff8345;
  --pink: #ffccf5;
  --green: #07aa6f;
  --yellow: #ffe26f;
  --sky: #f0f9fc;
  --cream: #fff7ea;
  --ink: #1f2450;
  --ink-light: rgba(31, 36, 80, 0.55);

  --ff-title: 'Galyon', Georgia, serif;
  --ff-body: 'Holiday Journey', 'Comic Sans MS', cursive;
  --ff-ui: 'Poppins', system-ui, sans-serif;
  --ff-accent: 'Sniglet', cursive;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.24);

  --shell-max: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* === Shared === */
.shell {
  width: min(var(--shell-max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
}

/* === Noise Overlay === */
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
}
.page-noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* === Dot Grid Pattern === */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.dot-grid--light {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
}

/* === Scroll Reveal === */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === Skip Link === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--green);
  color: #fff;
  padding: 10px 20px;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* === Eyebrow === */
.eyebrow {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.55;
}
.eyebrow--light { color: #fff; opacity: 0.6; }

/* === Section Header === */
.section-header {
  margin-bottom: 56px;
}
.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.section-header h2 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--ff-ui);
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* === Buttons === */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
}
.pill-btn:hover {
  transform: scale(1.04);
}
.pill-btn:active {
  transform: scale(0.98);
}
.pill-btn--primary {
  background: var(--green);
  color: var(--pink);
  box-shadow: 0 4px 16px rgba(7, 170, 111, 0.3);
}
.pill-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(7, 170, 111, 0.4);
}
.pill-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 500;
}
.pill-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.pill-btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}
.pill-btn--nav {
  background: var(--green);
  color: var(--pink);
  font-size: 0.82rem;
  padding: 9px 22px;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero-section {
  background: var(--blue);
  color: #fff;
  padding: 16px 0 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(7, 170, 111, 0.15);
  top: -200px;
  right: -100px;
}
.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 131, 69, 0.1);
  bottom: -200px;
  left: -100px;
}

/* Nav — centered logo like v3 */
.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0 20px;
  position: relative;
  z-index: 10;
}

.nav-logo-link {
  justify-self: center;
}
.nav-logo {
  width: clamp(260px, 30vw, 440px);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-self: start;
}
.nav-links a {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  justify-self: end;
}

/* Hero split grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 40px 0 60px;
  flex: 1;
}

.hero-copy {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-copy h1 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}

.accent-pill {
  display: inline-block;
  background: var(--green);
  padding: 0 20px 4px;
  border-radius: var(--radius-pill);
  color: var(--pink);
  font-family: var(--ff-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-2deg);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(7, 170, 111, 0.3);
  margin: 0 6px;
  vertical-align: middle;
  line-height: 1.3;
}

.hero-sub {
  font-family: var(--ff-ui);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* Hero stage — single video card like v3 */
.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-card {
  background: #fff;
  border-radius: 22px;
  padding: 8px;
  transform: rotate(3deg);
  box-shadow: var(--shadow-xl);
  width: 380px;
  position: relative;
  z-index: 2;
}

.video-card__frame {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(140deg, var(--yellow) 0%, var(--orange) 60%, #e05020 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-card__play {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-card__badge {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.65rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-card__label {
  text-align: center;
  padding: 10px 8px 6px;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink);
}

/* Hero floating decorations */
.hero-float {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}
.hero-float--a {
  width: 80px;
  top: -10px;
  right: -20px;
  transform: rotate(12deg);
  animation: float-a 6s ease-in-out infinite;
}
.hero-float--b {
  width: 64px;
  bottom: 30px;
  left: -10px;
  transform: rotate(-8deg);
  animation: float-b 7s ease-in-out infinite;
}
.hero-float--c {
  width: 72px;
  top: 40px;
  left: 60px;
  transform: rotate(6deg);
  animation: float-c 5s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-14px); }
}
@keyframes float-b {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-10px); }
}
@keyframes float-c {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-12px); }
}

/* ============================================================
   2. MOMENTS RAIL
   ============================================================ */
.moments-section {
  background: var(--sky);
  padding: 80px 0;
}

.moments-section .section-header h2 {
  color: var(--blue);
}

/* Vertical scrolling columns */
.columns-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 680px;
  margin-inline: auto;
  max-width: 1000px;
  padding: 0 20px;
}

/* Top/bottom fade masks */
.columns-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 3;
  pointer-events: none;
}
.columns-fade--top {
  top: 0;
  background: linear-gradient(to bottom, var(--sky), transparent);
}
.columns-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--sky), transparent);
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.column-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.column-track--up {
  animation: col-up var(--duration, 18s) linear infinite;
}
.column-track--down {
  animation: col-down var(--duration, 22s) linear infinite;
}

@keyframes col-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes col-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Edge fades (for testimonial marquee) */
.rail-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.rail-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--green), transparent);
}
.rail-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--green), transparent);
}

/* Moment cards */
.moment-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-spring);
}
.moment-card:hover {
  transform: scale(1.03);
}

.moment-card__icon {
  flex: 1;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.moment-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-card span {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 14px;
  text-align: center;
  display: block;
}

.moment-card--blue   { background: var(--blue); }
.moment-card--blue span { color: #fff; }
.moment-card--pink   { background: var(--pink); }
.moment-card--pink span { color: var(--green); }
.moment-card--orange { background: var(--orange); }
.moment-card--orange span { color: #fff; }
.moment-card--green  { background: var(--green); }
.moment-card--green span { color: var(--pink); }
.moment-card--yellow { background: var(--yellow); }
.moment-card--yellow span { color: var(--orange); }

/* ============================================================
   3. HOW IT WORKS — Bento Grid
   ============================================================ */
.how-section {
  background: var(--cream);
  padding: 100px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-4px);
}

/* Large card spans full width on top row */
.bento-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 36px;
}

/* Glowing border effect — border-only glow that follows cursor */
.glow-border {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  background: conic-gradient(
    from var(--glow-angle, 0deg) at 50% 50%,
    var(--pink) 0deg,
    var(--yellow) 72deg,
    var(--green) 144deg,
    #66b3ff 216deg,
    var(--orange) 288deg,
    var(--pink) 360deg
  );
  filter: blur(8px);
}
/* Cut out the inside so only a border ring remains */
.glow-border::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: inherit;
}
/* Inner fill matches card background */
.bento-card--blue .glow-border::after  { background: var(--blue); }
.bento-card--green .glow-border::after { background: var(--green); }
.bento-card--orange .glow-border::after { background: var(--orange); }
.bento-card--pink .glow-border::after  { background: var(--pink); }

[data-glow]:hover .glow-border {
  opacity: 1;
}
/* Ensure card content stays above the glow */
[data-glow] > *:not(.glow-border) {
  position: relative;
  z-index: 2;
}

.bento-card--blue  { background: var(--blue); color: #fff; }
.bento-card--green { background: var(--green); color: #fff; }
.bento-card--orange { background: var(--orange); color: #fff; }
.bento-card--pink  { background: var(--pink); color: var(--ink); }

.bento-tag {
  display: inline-block;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.bento-card--pink .bento-tag {
  background: rgba(31, 36, 80, 0.08);
  border-color: rgba(31, 36, 80, 0.12);
}

.bento-num {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.bento-card--pink .bento-num {
  color: rgba(31, 36, 80, 0.06);
}

.bento-card h3 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 10px;
}
.bento-card--large h3 {
  font-size: 2rem;
}

.bento-card p {
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.8;
}

.bento-card__content {
  position: relative;
  z-index: 1;
}

/* Arc visual inside the large card — sits in right column */
.bento-card__visual {
  margin-top: 0;
}
.arc-visual {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.arc-step {
  flex: 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.arc-step--1 {
  height: 60px;
  background: var(--green);
  color: #fff;
}
.arc-step--2 {
  height: 90px;
  background: var(--orange);
  color: #fff;
}
.arc-step--3 {
  height: 70px;
  background: var(--yellow);
  color: var(--ink);
}

/* ============================================================
   4. VALUES — Feature Grid
   ============================================================ */
.values-section {
  background: var(--sky);
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  border: 1px solid rgba(31, 36, 80, 0.06);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card h3 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.value-card p {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ============================================================
   5. TESTIMONIALS — Marquee Ticker
   ============================================================ */
.testimonials-section {
  background: var(--green);
  color: #fff;
  padding: 100px 0;
}

.testimonials-section .section-header h2 {
  color: #fff;
}
.testimonials-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.marquee-track--left {
  animation: marquee-left 45s linear infinite;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease-spring), border-color 0.25s ease;
}
.testimonial-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.testimonial-card__stars {
  font-size: 0.85rem;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: var(--ff-title);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 0.8rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

/* ============================================================
   6. CTA — Centered with floats
   ============================================================ */
.cta-section {
  background: var(--blue);
  color: #fff;
  padding: 140px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 131, 69, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.cta-floats {
  position: absolute;
  inset: -80px -160px;
  pointer-events: none;
}

.cta-float {
  position: absolute;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}
.cta-float--a {
  width: 180px;
  top: -20px;
  right: -40px;
  transform: rotate(-10deg);
  animation: float-a 6s ease-in-out infinite;
}
.cta-float--b {
  width: 120px;
  bottom: -10px;
  right: 40px;
  transform: rotate(8deg);
  animation: float-b 7s ease-in-out infinite;
}
.cta-float--c {
  width: 100px;
  bottom: 20px;
  left: -20px;
  transform: rotate(-6deg);
  animation: float-c 5.5s ease-in-out infinite;
}

/* ============================================================
   7. FOOTER
   ============================================================ */
.footer-section {
  background: var(--cream);
  padding: 32px 0;
  border-top: 1px solid rgba(31, 36, 80, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  width: clamp(120px, 14vw, 170px);
  height: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--ink-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stage { justify-content: center; }
  .video-card { width: 300px; transform: rotate(0deg); }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-card--large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .columns-grid { grid-template-columns: repeat(2, 1fr); }
  .columns-grid .column-track:last-child { display: none; }
}

@media (max-width: 760px) {
  .hero-section { min-height: auto; }
  .hero-content { padding: 40px 0 60px; }
  .hero-content h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 0.95rem; }

  .site-nav { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-logo-link { justify-self: start; }
  .nav-logo { width: clamp(160px, 40vw, 240px); }
  .pill-btn--nav { font-size: 0.75rem; padding: 8px 16px; }

  .moments-section { padding: 60px 0; }
  .how-section,
  .values-section,
  .testimonials-section { padding: 72px 0; }
  .cta-section { padding: 80px 0; }

  .section-header { margin-bottom: 36px; }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .testimonial-card { flex: 0 0 300px; }

  .columns-grid { grid-template-columns: 1fr; }
  .columns-wrapper { max-height: 500px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .pill-btn--lg {
    width: 100%;
    max-width: 280px;
  }
  .cta-floats { display: none; }
}

/* === 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;
  }
  .column-track--up,
  .column-track--down,
  .marquee-track--left {
    animation: none !important;
  }
}
