/* ═══════════════════════════════════════════════════════════════
   SNATCH — Mobile-First Landing Page CSS
   Design: dark, editorial, Cormorant Garamond + DM Sans
   Target: 375px viewport → tablet → desktop
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --black:   #0A0A0A;
  --grey-1:  #111111;
  --grey-2:  #1A1A1A;
  --grey-3:  #2E2E2E;
  --grey-4:  #4A4A4A;
  --grey-5:  #8A8A8A;
  --cream:   #F5F0E8;
  --coral:   #FF2D55;
  --coral-d: rgba(255, 45, 85, 0.12);
  --coral-g: rgba(255, 45, 85, 0.35);
  --white:   #FFFFFF;
  --ff-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w:    1100px;
  --page-pad: 24px;
}

/* ── BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font-family: inherit; }

/* ── SELECTION & SCROLLBAR ──────────────────────────────────── */
::selection { background: var(--coral); color: var(--white); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

/* ── FOCUS STATES ───────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--page-pad);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
.nav-logo span { color: var(--coral); }

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  color: var(--grey-5);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }

/* Hamburger — visible on mobile */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--coral); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-drawer { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION — mobile-first
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 80px var(--page-pad) 0;
  overflow: hidden;
}

/* Background: layered gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,45,85,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--grey-1) 0%, var(--black) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.012) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.012) 80px
    );
}

/* Phone mockup — CSS only */
.hero-phone {
  position: relative;
  z-index: 2;
  width: min(260px, 68vw);
  flex-shrink: 0;
  margin-bottom: -24px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-phone-bezel {
  background: var(--grey-2);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 10px 8px 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 24px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(255,45,85,0.08);
}

/* Swipe card stack inside bezel */
.swipe-stack {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--grey-3);
}

/* Bottom card — slightly behind */
.swipe-card-bot {
  position: absolute;
  inset: 6%;
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-3deg) scale(0.94);
  opacity: 0.4;
}
.swipe-card-bot .card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1c0a14 0%, #2a1a20 60%, #0d080a 100%);
}
.swipe-card-bot .card-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,45,85,0.5);
  line-height: 1;
}
.swipe-card-bot .card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.swipe-card-bot .card-info-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.swipe-card-bot .card-info-loc {
  font-size: 0.65rem;
  color: var(--grey-5);
  margin-top: 2px;
}

/* Top card — swipe target */
.swipe-card-top {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
}
.swipe-card-top .card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a0510 0%, #280818 50%, #0f080c 100%);
}
.swipe-card-top .card-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16%;
}
.swipe-card-top .card-silhouette {
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,80,120,0.6) 0%, rgba(180,30,80,0.4) 40%, transparent 70%),
              linear-gradient(160deg, #2a0a18 0%, #1a0510 100%);
  border-radius: 50% 50% 46% 46%;
  position: relative;
}
.swipe-card-top .card-silhouette::before {
  content: '';
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(255,100,130,0.7) 0%, rgba(180,40,90,0.4) 50%, transparent 70%);
  border-radius: 50%;
}
.swipe-card-top .card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.swipe-card-top .card-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.swipe-card-top .card-bio {
  font-size: 0.62rem;
  color: rgba(245,240,232,0.7);
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Swipe action hint badges */
.swipe-badge {
  position: absolute;
  top: 14px;
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1.5px solid;
  z-index: 2;
}
.swipe-badge-yup {
  right: 10px;
  color: #00C853;
  border-color: #00C853;
  background: rgba(0,200,83,0.12);
  animation: pulse 2s ease-in-out infinite;
}
.swipe-badge-nope {
  left: 10px;
  color: #FF3B30;
  border-color: #FF3B30;
  background: rgba(255,59,48,0.12);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,83,0); }
  50%       { box-shadow: 0 0 0 6px rgba(0,200,83,0); }
}

/* Swipe arrow icon on top card edge */
.swipe-arrow-right {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(0,200,83,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceRight 1.5s ease-in-out infinite;
  opacity: 0;
}
.swipe-arrow-right::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid rgba(0,200,83,0.7);
  border-top: 1.5px solid rgba(0,200,83,0.7);
  transform: rotate(45deg) translate(-1px, 1px);
}
@keyframes bounceRight {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.8; }
  50%       { transform: translateY(-50%) translateX(6px); opacity: 1; }
}

/* Phone notch */
.phone-notch {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.phone-notch-dot {
  width: 48px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 0 48px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 12vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--grey-5);
  max-width: 380px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Desktop hero: side-by-side */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 100px var(--page-pad) 80px;
    min-height: 100svh;
    gap: 60px;
  }
  .hero-bg {
    background:
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,45,85,0.07) 0%, transparent 60%),
      var(--black);
  }
  .hero-phone {
    width: 280px;
    margin-bottom: 0;
    order: 2;
    animation: floatCard 6s ease-in-out infinite;
  }
  .hero-content {
    text-align: left;
    padding: 0;
    order: 1;
    flex: 1;
    max-width: 520px;
  }
  .hero-sub { margin-left: 0; }
  .nav-sticky { padding: 18px 48px; }
}
@media (min-width: 1024px) {
  .hero-phone { width: 300px; }
  .hero-headline { font-size: clamp(3.5rem, 6vw, 7rem); }
}

/* ══════════════════════════════════════════════════════════════
   WAITLIST CTA STRIP
   ══════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--grey-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px var(--page-pad);
}
.cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-strip-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
}
.cta-strip-headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  text-align: center;
}

/* Waitlist form */
.waitlist-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.waitlist-form:focus-within { border-color: var(--coral); }
.waitlist-form input {
  flex: 1;
  background: var(--grey-2);
  border: none;
  color: var(--cream);
  font-size: 0.875rem;
  padding: 13px 16px;
  outline: none;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--grey-4); }
.waitlist-form button {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 13px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  font-family: var(--ff-sans);
}
.waitlist-form button:hover { opacity: 0.88; }
.waitlist-form button:active { opacity: 0.7; }

/* Form states */
.waitlist-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #00C853;
  font-size: 0.9rem;
  font-weight: 500;
}
.waitlist-success.visible { display: flex; }
.waitlist-form.hidden { display: none; }
.waitlist-error {
  font-size: 0.8rem;
  color: #FF453A;
  display: none;
}
.waitlist-error.visible { display: block; }

/* Count badge */
.cta-count {
  font-size: 0.72rem;
  color: var(--grey-5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-count-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s infinite;
}

/* ══════════════════════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════════════════════ */
section { padding: 80px var(--page-pad); }
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-body {
  color: var(--grey-5);
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 520px;
}

@media (min-width: 768px) {
  section { padding: 100px 48px; }
  .cta-strip { padding: 32px 48px; }
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS (FEATURES)
   ══════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--black); }
.how-sub {
  color: var(--grey-5);
  font-size: 0.9rem;
  max-width: 440px;
  margin: 16px 0 56px;
  line-height: 1.7;
}

.steps-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-width: 500px;
}
.step-card {
  background: var(--grey-1);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.04);
  border-left: 2px solid transparent;
  transition: border-left-color 0.25s, background 0.25s;
  position: relative;
}
.step-card:hover { border-left-color: var(--coral); background: var(--grey-2); }

.step-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,45,85,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  user-select: none;
}
.step-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,45,85,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--grey-5);
  font-size: 0.875rem;
  line-height: 1.7;
}
.step-card p strong { color: var(--cream); font-weight: 500; }

/* Connector line: desktop only */
.step-connector {
  display: none;
}

@media (min-width: 640px) {
  .steps-rail {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 16px;
  }
  .step-card {
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 2px solid transparent;
  }
  .step-card:hover { border-top-color: var(--coral); border-left-color: transparent; }
  .step-num { top: 12px; right: 16px; font-size: 3.5rem; }
}
@media (min-width: 768px) {
  .steps-rail { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════════════════════════════ */
.problem {
  background: var(--grey-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.problem-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-width: 900px;
}
.problem-card {
  background: var(--grey-2);
  padding: 28px 24px;
  border-left: 2px solid transparent;
  transition: border-left-color 0.3s;
}
.problem-card:hover { border-left-color: var(--coral); }
.problem-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.problem-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.problem-card p {
  color: var(--grey-4);
  font-size: 0.875rem;
  line-height: 1.7;
}
@media (min-width: 640px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card { padding: 36px 28px; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════════════════════ */
.pricing {
  background: var(--grey-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '$7.99';
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%) rotate(-6deg);
  font-family: var(--ff-serif);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255,45,85,0.03);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.pricing-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: var(--max-w);
}
.pricing-callout {}
.pricing-big {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
}
.pricing-big--dim  { color: rgba(255,45,85,0.55); }
.pricing-big--dimmer {
  color: rgba(255,45,85,0.25);
  margin-bottom: 28px;
}
.pricing-sub {
  color: var(--grey-4);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
}
.pricing-sub strong { color: var(--cream); font-weight: 500; }

/* Comparison table */
.compare-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 12px;
}
.compare-intro {
  color: var(--grey-4);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.compare-table {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 100px 120px;
  padding: 12px 16px;
  gap: 8px;
}
.compare-head {
  background: rgba(255,45,85,0.07);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-5);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.compare-head > div:first-child { color: transparent; }
.compare-row {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }

.compare-feature { font-size: 0.85rem; color: var(--grey-5); }
.compare-yes { font-size: 0.8rem; color: var(--coral); font-weight: 500; }
.compare-no {
  font-size: 0.8rem;
  color: var(--grey-3);
  text-decoration: line-through;
  text-decoration-color: rgba(255,45,85,0.35);
}
.compare-mixed { font-size: 0.8rem; color: var(--grey-4); }

.compare-kicker {
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--grey-4);
  font-style: italic;
}

@media (min-width: 640px) {
  .compare-head,
  .compare-row { grid-template-columns: 1fr 130px 180px; }
  .pricing-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }
  .pricing-callout { flex: 0 0 auto; }
  .pricing-compare { flex: 1; }
}
@media (min-width: 900px) {
  .pricing-inner { gap: 80px; }
  .pricing-inner { flex-direction: row; }
}

/* ══════════════════════════════════════════════════════════════
   VIBE / LIFESTYLE SECTION
   ══════════════════════════════════════════════════════════════ */
.vibe { background: var(--black); }
.vibe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 48px;
}
.vibe-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--grey-2);
}
.vibe-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
  transition: transform 0.5s, filter 0.3s;
}
.vibe-card:hover .vibe-card-img {
  transform: scale(1.04);
  filter: brightness(0.45) saturate(1);
}
.vibe-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
}
.vibe-card-label h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.vibe-card-label p { font-size: 0.75rem; color: var(--grey-5); margin-top: 3px; }

@media (min-width: 640px) {
  .vibe-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   CLOSING / FOOTER CTA
   ══════════════════════════════════════════════════════════════ */
.closing {
  background: var(--grey-1);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.closing h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.closing h2 em { color: var(--coral); font-style: italic; }
.closing p {
  color: var(--grey-4);
  font-size: 0.9rem;
  max-width: 360px;
  margin: 0 auto 40px;
}
.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--coral);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px var(--page-pad);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream);
}
footer p { color: var(--grey-4); font-size: 0.72rem; }
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 32px 48px;
  }
}

/* ══════════════════════════════════════════════════════════════
   STICKY BOTTOM MOBILE CTA
   ══════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px var(--page-pad);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.mobile-cta-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-cta-bar-inner a {
  display: block;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--ff-sans);
  flex: 1;
  transition: opacity 0.15s;
}
.mobile-cta-bar-inner a:active { opacity: 0.8; }
.mobile-cta-text {
  flex: 0 0 auto;
}
.mobile-cta-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--cream);
  font-weight: 500;
}
.mobile-cta-text span {
  font-size: 0.7rem;
  color: var(--grey-5);
}

@media (max-width: 480px) {
  .mobile-cta-bar { display: block; }
  /* Pad the bottom of body so footer isn't hidden */
  body { padding-bottom: 80px; }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — entrance on scroll
   ══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeUp 0.6s ease-out both;
}
.animate-in:nth-child(1) { animation-delay: 0ms; }
.animate-in:nth-child(2) { animation-delay: 80ms; }
.animate-in:nth-child(3) { animation-delay: 160ms; }
.animate-in:nth-child(4) { animation-delay: 240ms; }

/* Only animate when reduced-motion is off */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
