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

:root {
  /* Glass palette */
  --glass-white:    rgba(255, 255, 255, 0.12);
  --glass-white-md: rgba(255, 255, 255, 0.18);
  --glass-white-hi: rgba(255, 255, 255, 0.28);
  --glass-border:   rgba(255, 255, 255, 0.30);
  --glass-border-hi:rgba(255, 255, 255, 0.55);
  --glass-shadow:   0 8px 32px rgba(0, 0, 0, 0.25);
  --glass-shadow-lg:0 20px 60px rgba(0, 0, 0, 0.35);

  /* Surfaces (light sections) */
  --surface:        #f8f4f0;
  --surface-card:   #ffffff;
  --card-border:    rgba(0, 0, 0, 0.06);
  --card-shadow:    0 2px 20px rgba(0,0,0,0.07);
  --card-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  /* Colors */
  --rose:      #e8a4a0;
  --rose-dark: #c5726a;
  --sage:      #a8c5a0;
  --lavender:  #c5b8e8;
  --blush:     #ffd5cc;

  /* Text */
  --text-light: rgba(255,255,255,0.95);
  --text-muted-light: rgba(255,255,255,0.65);
  --text-dark:  #2d2420;
  --text-muted-dark: #7a6b68;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sintony', system-ui, sans-serif;
  background: var(--surface);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   NAV — Liquid glass
=========================== */
.nav {
  position: fixed;
  top: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 2rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-links a:hover { color: rgba(0,0,0,1); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 30%;
  transform: scale(1);
}

@keyframes subtleZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08); }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 245, 240, 0.18) 0%,
    rgba(255, 250, 248, 0.06) 45%,
    rgba(255, 240, 235, 0.16) 100%
  );
}

/* Radial vignette — soft white-warm */
.blur-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 52% 48%,
    transparent 28%,
    rgba(255, 235, 225, 0.20) 55%,
    rgba(255, 220, 205, 0.55) 78%,
    rgba(255, 210, 195, 0.80) 100%
  );
  pointer-events: none;
}

/* Frosted blur edges — warm white */
.blur-edge {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.blur-top {
  top: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(210, 175, 160, 0.88) 0%, transparent 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.blur-bottom {
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(205, 168, 152, 0.92) 0%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

.blur-left {
  top: 0; bottom: 0; left: 0;
  width: 22%;
  background: linear-gradient(to right, rgba(210, 172, 155, 0.88) 0%, transparent 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.blur-right {
  top: 0; bottom: 0; right: 0;
  width: 22%;
  background: linear-gradient(to left, rgba(210, 172, 155, 0.88) 0%, transparent 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

/* Large background name text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(100px, 22vw, 280px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Top image clipped to baby shape — sits above text to mask it */
.hero-top-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 30%;
  z-index: 3;
  pointer-events: none;
  /* Ellipse clip centered on the baby */
  clip-path: ellipse(32% 46% at 28% 50%);
  /* Soft feathered edge using mask */
  -webkit-mask-image: radial-gradient(ellipse 32% 46% at 28% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 32% 46% at 28% 50%, black 55%, transparent 100%);
}

/* Depth orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  animation: orbDrift ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e8a090, transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 12s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d4907a, transparent 70%);
  bottom: 0; right: 100px;
  animation-duration: 15s;
  animation-delay: 2s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e8c4a0, transparent 70%);
  top: 50%; left: 50%;
  animation-duration: 10s;
  animation-delay: 1s;
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

/* Hero layout */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

/* ===== GLASS PRIMITIVES ===== */
.glass-chip {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Hero glass panel */
.hero-glass-panel {
  background: none;
  border: none;
  border-radius: 0;
  padding: 2.5rem 2rem;
  box-shadow: none;
  position: relative;
}


.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: rgba(255,255,255,0.97);
  margin-bottom: 0.4rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,220,210,0.95);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  min-width: 58px;
}

.countdown-num {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,0.95);
}

.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.countdown-sep {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}

/* Progress */
.progress-section {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-label, .progress-pct {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.progress-pct { color: rgba(255,220,210,0.9); font-weight: 500; }

.progress-track {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 99px;
  overflow: visible;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sage), var(--rose), var(--lavender));
  position: relative;
  animation: progressGrow 2s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow: 0 0 12px rgba(232, 164, 160, 0.6);
}

@keyframes progressGrow {
  from { width: 0% !important; }
}

.progress-glow {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px 4px rgba(255,255,255,0.4);
}

/* Size badge */
.size-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  animation: fadeUp 0.8s 0.5s ease both;
  white-space: nowrap;
}

.size-icon { font-size: 1.25rem; }

.size-text {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.6);
}

.size-text strong { color: rgba(0,0,0,0.85); }

/* ===========================
   HERO VISUAL (right col)
=========================== */
.hero-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.4s ease both;
}

.glass-card-visual {
  position: relative;
  background: var(--glass-white);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--glass-shadow-lg), inset 0 1px 0 var(--glass-border-hi);
  overflow: hidden;
}

.glass-card-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
}

/* Ambient blobs in the visual card */
.amb-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,184,0.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: ambDrift ease-in-out infinite alternate;
}

.amb-bubble:nth-child(2) {
  background: radial-gradient(circle, rgba(197,184,232,0.4), transparent 70%);
  animation-duration: 8s;
}

@keyframes ambDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(10px, -10px); }
}

.womb-container {
  position: relative;
  width: 280px;
  height: 336px;
  margin: 0 auto;
}

.womb-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 16px 48px rgba(232,180,184,0.35));
}

.womb-pulse {
  animation: wombPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wombPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.baby-float {
  animation: babyFloat 4s ease-in-out infinite;
  transform-origin: center;
}

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

.cord-wave {
  stroke-dasharray: 4 4;
  animation: cordAnim 3s linear infinite;
}

@keyframes cordAnim {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -16; }
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  animation: bubbleFloat ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-12px) scale(1.15); opacity: 0.85; }
}

/* Week chip */
.week-chip {
  position: absolute;
  top: -16px;
  right: -16px;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  animation: floatChip 5s ease-in-out infinite;
}

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

.week-chip-num {
  font-family: 'Forum', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1;
}

.week-chip-label {
  font-size: 0.7rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll cue */
.scroll-cue {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   MILESTONES — pinned to hero bottom
=========================== */
.milestones-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 2rem 1.5rem;
}

.milestones-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.milestone-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  opacity: 0.45;
  transition: opacity 0.3s, transform 0.25s;
  position: relative;
}


.milestone-glass.active {
  opacity: 1;
}

.milestone-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.m-icon {
  font-size: 1.2rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.4);
}

.milestone-glass strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.milestone-glass span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
}

/* ===========================
   REGISTRY
=========================== */
.registry {
  padding: 3rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Forum', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  font-weight: 300;
}

/* Registry quick-links */
.registry-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.registry-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  background: white;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.registry-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-lg);
}

.rl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 110px;
}

/* Amazon: 603×182 — wide landscape */
.amazon-icon img {
  width: 80px;
  height: auto;
}

/* Pottery Barn: 652×652 square canvas — crop to text band */
.pb-icon img {
  width: 110px;
  height: 36px;
  object-fit: cover;
  object-position: center 47%;
}

/* Bloomingdale's: 72×11 — very wide, short */
.bloom-icon img {
  width: 110px;
  height: auto;
}

/* Target: bullseye + wordmark — wide landscape */
.target-icon img {
  width: 90px;
  height: auto;
}

.registry-link-card:hover.registry-link-card:nth-child(1) { border-color: rgba(216,74,10,0.25); }
.registry-link-card:hover.registry-link-card:nth-child(2) { border-color: rgba(122,96,53,0.25); }
.registry-link-card:hover.registry-link-card:nth-child(3) { border-color: rgba(183,28,106,0.25); }
.registry-link-card:hover.registry-link-card:nth-child(4) { border-color: rgba(204,0,0,0.25); }

.rl-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.rl-store {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.rl-action {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .registry-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .registry-links { grid-template-columns: 1fr; }
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-muted-dark);
  font-family: 'Sintony', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}

.filter-btn:hover {
  border-color: var(--rose);
  color: var(--text-dark);
  background: rgba(232,164,160,0.06);
}

.filter-btn.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: white;
}

/* Registry grid */
.registry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.25rem;
}

/* Registry card — liquid glass light */
.registry-card {
  background: var(--surface-card);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 320px;
}


.registry-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--card-shadow-lg), 0 0 0 1px rgba(232,164,160,0.2);
}

.card-purchased::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
  pointer-events: none;
  z-index: 5;
}
.card-purchased:hover {
  transform: none;
  box-shadow: var(--card-shadow);
  cursor: default;
}

.card-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--img-a, #f5f5f5), var(--img-b, #eeeeee));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-img svg { width: 90px; height: 90px; }

.card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  z-index: 6;
}

/* Store badges */
.card-meta-row {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  z-index: 3;
}

.purchased-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  background: #4a7c6f;
  color: #fff;
}

.partial-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  background: #fff8e1;
  color: #f57f17;
}

.card-store {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.amazon-badge   { background: #ff9900; color: #fff; }
.pb-badge       { background: #2b3666; color: #fff; }
.bloom-badge    { background: #000; color: #fff; }
.target-badge   { background: #cc0000; color: #fff; }

.card-name {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.35rem;
}

.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-price {
  font-family: 'Forum', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.card-status-tag {
  font-family: 'Sintony', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.35rem 0.8rem;
}
.card-status-price {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.card-status-progress {
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
}
.card-status-purchased {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 4px;
  background: #4a7c6f;
  color: #fff;
  border: none;
}
.card-status-contrib {
  color: #2d2d2d;
  background: #fff;
  border: 1px solid transparent;
}

/* Contribution pill */
.contrib-pill-wrap {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.contrib-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contrib-partial {
  background: rgba(255,255,255,0.88);
  color: #333;
  border: 1px solid rgba(255,255,255,0.6);
}

.contrib-complete {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.registry-card:hover .contrib-pill-wrap {
  display: none;
}

.card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  opacity: 0;
  transform: translate(4px, -4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.registry-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===========================
   CONTRIBUTE SECTION
=========================== */
.contribute {
  padding: 5rem 2rem 3rem;
  background: var(--bg);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.contribute-inner {
  width: 100%;
}

.contribute-card {
  display: grid;
  grid-template-columns: 260px 1px 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

.contribute-submit-row {
  grid-column: 1 / -1;
  padding: 0 2rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.5rem;
}

/* QR side */
.contribute-qr {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.5);
}

.qr-frame {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-label {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  text-align: center;
  line-height: 1.5;
}

/* QR Tabs */
.qr-tabs {
  display: flex;
  gap: 0.25rem;
  background: rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 0.25rem;
  margin-bottom: 1.25rem;
}
.qr-tab {
  flex: 1;
  padding: 0.4rem 0.75rem;
  border: none;
  border-radius: 7px;
  background: transparent;
  font-family: 'Sintony', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.qr-tab.active {
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.qr-panel { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.qr-panel-hidden { display: none; }

.venmo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s;
  width: 100%;
}
.venmo-badge:hover { opacity: 1; }
.venmo-badge svg {
  width: 72px;
  height: 18px;
}
.zelle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  width: 100%;
}
.zelle-badge svg { width: 60px; height: 18px; }

/* Divider */
.contribute-divider {
  width: 1px;
  background: rgba(0,0,0,0.07);
  margin: 2rem 0;
}

/* Form side */
.contribute-form-wrap {
  padding: 2.5rem 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted-dark);
}

/* Amount pills */
.amount-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.amount-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.amount-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.15);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.amount-pill input:checked + span {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

.amount-pill span:hover {
  border-color: var(--text-dark);
}

/* Custom amount pill */
.amount-pill-custom {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.18s ease;
  overflow: hidden;
  height: 38px;
}
.amount-pill-custom:hover {
  border-color: var(--text-dark);
}
.amount-pill-custom.active {
  border-color: var(--text-dark);
  background: var(--text-dark);
}
.custom-pill-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0 1.2rem;
  white-space: nowrap;
  transition: color 0.18s, padding 0.2s;
  user-select: none;
}
.amount-pill-custom.active .custom-pill-label {
  color: #fff;
  padding: 0 0.6rem 0 0.9rem;
}
.custom-pill-input {
  width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  padding: 0;
  transition: width 0.2s ease, padding 0.2s ease;
  -moz-appearance: textfield;
}
.custom-pill-input::-webkit-outer-spin-button,
.custom-pill-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.amount-pill-custom.active .custom-pill-input {
  width: 70px;
  padding: 0 0.9rem 0 0;
}

/* Select */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  font-family: 'Sintony', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s;
}

.select-wrap select:focus {
  border-color: var(--text-dark);
}

.select-chevron {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted-dark);
  pointer-events: none;
}

/* Textarea */
textarea {
  width: 100%;
  appearance: none;
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Sintony', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  resize: vertical;
  outline: none;
  transition: border-color 0.18s;
  line-height: 1.55;
}

textarea:focus {
  border-color: var(--text-dark);
}

textarea::placeholder {
  color: var(--text-muted-dark);
  opacity: 0.7;
}

/* Submit button */
.contribute-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Sintony', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  margin-top: 0.5rem;
}

.contribute-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.contribute-btn:active {
  transform: translateY(0);
}

/* Success state */
.contribute-success {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  z-index: 10;
}

.contribute-success.visible {
  display: flex;
  animation: fadeIn 0.35s ease;
}

.success-inner {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 380px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.success-title {
  font-family: 'Forum', Georgia, serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.success-msg {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.success-back {
  background: none;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  font-family: 'Sintony', sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.18s;
}

.success-back:hover {
  border-color: var(--text-dark);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   SKELETON LOADING
=========================== */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.skeleton-card {
  pointer-events: none;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.skeleton-img {
  flex: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-body {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-line.short { width: 40%; }
.skeleton-line.long  { width: 75%; }

/* ===========================
   RESPONSIVE
=========================== */

/* Tablet */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 2rem;
  }

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

  .womb-container { width: 240px; height: 288px; }

  .registry { padding: 4rem 1.5rem; }

  .registry-links { grid-template-columns: 1fr; gap: 0.75rem; }

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

  .contribute-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .contribute-qr {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .qr-frame { width: 120px; height: 120px; flex-shrink: 0; }

  .contribute-divider { display: none; }

  .contribute-form-wrap { padding: 1.5rem; }

  .contribute-submit-row { padding: 0 1.5rem 1.5rem; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Nav */
  .nav-inner { margin: 0.5rem 0.75rem 0; padding: 0.5rem 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.78rem; }

  /* Hero */
  .hero {
    min-height: 90svh;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .hero-content {
    padding: 5rem 1.25rem 1.5rem;
    flex: 1;
    align-items: center;
    justify-content: center;
  }
  .hero-glass-panel { text-align: center; width: 100%; }

  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-subtitle { font-size: 0.85rem; }

  .progress-label, .progress-pct { font-size: 0.72rem; }
  .progress-track { height: 5px; }

  .size-badge { padding: 0.45rem 0.9rem; }
  .size-text { font-size: 0.75rem; }

  /* Milestones — horizontal scroll row, no clipping */
  .milestones-bar {
    position: relative;
    bottom: auto;
    padding: 0 0 1rem;
  }
  .milestones-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  .milestones-inner::-webkit-scrollbar { display: none; }
  .milestone-glass {
    flex: 0 0 auto;
    width: 140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.65rem 0.75rem;
  }
  .milestone-glass strong { font-size: 0.75rem; }
  .milestone-glass span { font-size: 0.65rem; }
  .m-icon { font-size: 1.2rem; }

  /* Registry */
  .registry { padding: 3rem 1rem; max-width: 100%; }
  .section-title { font-size: 1.8rem; }
  .section-sub { font-size: 0.82rem; }

  .filter-bar { gap: 0.4rem; flex-wrap: wrap; }
  .filter-btn { font-size: 0.72rem; padding: 0.4rem 0.8rem; }

  .registry-links { grid-template-columns: 1fr; gap: 0.6rem; }
  .registry-link-card { padding: 0.85rem 1rem; }

  .registry-grid { grid-template-columns: 1fr; gap: 1rem; }
  .registry-card { height: 280px; }

  /* Contribute */
  .contribute { padding: 3rem 1rem 5rem; max-width: 100%; }

  .contribute-card { border-radius: 14px; }

  .contribute-qr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .qr-frame { width: 150px; height: 150px; }

  .contribute-form-wrap { padding: 1.25rem 1rem; }

  .amount-pills { gap: 0.5rem; }
  .amount-pill span { padding: 0.45rem 1rem; font-size: 0.85rem; }

  .contribute-submit-row { padding: 0 1rem 1.25rem; }
  .contribute-btn { font-size: 0.85rem; padding: 0.8rem 1rem; }

  /* Success overlay */
  .success-title { font-size: 1.6rem; }
  .success-msg { font-size: 0.85rem; }
}
