/* ==========================================================================
   Hosting Lovers — Editorial Romantic
   Design system: warm cream, coral signature, Fraunces + Manrope
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* palette */
  --coral: #E85D75;
  --coral-soft: #FFD2DB;
  --coral-deep: #B83D5A;
  --cream: #FAF5EE;
  --cream-warm: #F3E9D9;
  --cream-deep: #EDE0CC;
  --charcoal: #1C1B1A;
  --ink: #2B2825;
  --muted: #7A6E63;
  --gold: #C9A875;
  --line: rgba(28, 27, 26, 0.08);
  --line-strong: rgba(28, 27, 26, 0.14);
  --card: #FFFFFF;

  /* shadow */
  --shadow-sm: 0 2px 10px rgba(28, 27, 26, 0.04);
  --shadow-md: 0 10px 40px rgba(28, 27, 26, 0.08);
  --shadow-lg: 0 30px 80px rgba(28, 27, 26, 0.12);
  --shadow-coral: 0 16px 50px rgba(232, 93, 117, 0.28);

  /* type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* spacing */
  --section: clamp(5rem, 9vw, 8rem);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 36px;
  --radius-pill: 100px;

  /* ease */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-long: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* subtle grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
::selection { background: var(--coral); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--charcoal);
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5.25rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.4rem; letter-spacing: -0.015em; line-height: 1.25; }
h4 { font-size: 1.1rem; font-weight: 600; }

em {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--coral);
  font-weight: 500;
}

p { color: var(--ink); }
.muted { color: var(--muted); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Eyebrow label (reused) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--coral);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(232, 93, 117, 0.36);
  background: var(--coral-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  transform: translateY(-3px);
}
.btn-filled-dark {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-filled-dark:hover {
  background: var(--ink);
  transform: translateY(-3px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  padding: 0.7rem 0;
  background: rgba(250, 245, 238, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo .heart { color: var(--coral); font-size: 1.1em; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-pill);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--coral); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(340px, 85vw);
  background: var(--cream);
  padding: 6rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-long);
  z-index: 99;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
}
.mobile-menu a:hover { color: var(--coral); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 11rem 0 6rem;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

/* floating decorative shapes */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
}
.blob-coral { background: var(--coral-soft); }
.blob-gold { background: rgba(201, 168, 117, 0.35); }
.blob-warm { background: rgba(243, 233, 217, 0.8); }

.blob-1 { width: 520px; height: 520px; top: -10%; right: -8%; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; bottom: -15%; left: -10%; animation-delay: -4s; }
.blob-3 { width: 320px; height: 320px; top: 30%; left: 40%; animation-delay: -8s; opacity: 0.28; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.06); }
  66% { transform: translate(-20px,30px) scale(0.96); }
}

/* decorative SVG sparkles */
.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--coral);
  opacity: 0.7;
  animation: twinkle 3.5s ease-in-out infinite;
}
.sparkle-1 { top: 20%; left: 8%; animation-delay: 0s; }
.sparkle-2 { top: 35%; right: 10%; animation-delay: -1s; width: 14px; height: 14px; }
.sparkle-3 { bottom: 25%; left: 12%; animation-delay: -2s; width: 16px; height: 16px; }
.sparkle-4 { top: 55%; right: 20%; animation-delay: -0.5s; width: 12px; height: 12px; color: var(--gold); }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1.1) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral-deep);
  margin-bottom: 2rem;
}
.hero-headline {
  font-size: clamp(2.75rem, 7vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  max-width: 860px;
  margin: 0 auto;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--coral);
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  margin-bottom: 0.2rem;
}
.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.7;
  z-index: 2;
}
.scroll-hint .line {
  width: 1px;
  height: 34px;
  background: var(--muted);
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ==========================================================================
   HERO IMAGE — active. Swap image by replacing /assets/img/hero.jpg
   ========================================================================== */
.hero {
  background:
    linear-gradient(180deg, rgba(28,27,26,0.30) 0%, rgba(28,27,26,0.25) 45%, rgba(28,27,26,0.60) 100%),
    url('/assets/img/hero.jpg') center/cover no-repeat;
  background-attachment: scroll;
}
.hero-headline { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-headline em { color: #FFB7C5; }
.hero-sub { color: rgba(255,255,255,0.92); text-shadow: 0 1px 20px rgba(0,0,0,0.35); max-width: 600px; }
.hero-eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-stats { border-top-color: rgba(255,255,255,0.22); }
.hero-stat strong { color: #FFC3CF; }
.hero-stat span { color: rgba(255,255,255,0.8); }
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}
.hero .btn-primary { box-shadow: 0 16px 50px rgba(232, 93, 117, 0.5); }
.scroll-hint { color: rgba(255,255,255,0.75); }
.scroll-hint .line { background: rgba(255,255,255,0.65); }
.hero .blob { opacity: 0; } /* image does the atmosphere work now */
.hero .sparkle { color: rgba(255,255,255,0.85); opacity: 0.6; }

@media (max-width: 720px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(28,27,26,0.35) 0%, rgba(28,27,26,0.30) 45%, rgba(28,27,26,0.65) 100%),
      url('/assets/img/hero-mobile.jpg') center/cover no-repeat;
  }
}

/* ---------- Section header ---------- */
.section {
  padding: var(--section) 0;
  position: relative;
}
.section.warm { background: var(--cream-warm); }
.section.deep { background: var(--cream-deep); }

.section-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header.left {
  margin-left: 0;
  text-align: left;
}
.section-header h2 {
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Collections ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.collection-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.collection-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -60%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--coral-soft);
}
.collection-card:hover::before { opacity: 0.5; }
.collection-card > * { position: relative; z-index: 2; }
.collection-card .emoji {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}
.collection-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.collection-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.collection-card .count {
  font-size: 0.82rem;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- Destinations ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.destination-card {
  display: block;
  padding: 2rem 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.destination-card::after {
  content: '→';
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 1.1rem;
  color: var(--coral);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.35s var(--ease);
}
.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.destination-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.destination-card .flag {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.destination-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.destination-card p {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  padding: 1.5rem 0;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Travel styles (pill cloud) ---------- */
.styles-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}
.style-pill {
  padding: 0.85rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.style-pill:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.open {
  border-color: var(--coral-soft);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.faq-q .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq-q .icon::before, .faq-q .icon::after {
  content: '';
  position: absolute;
  background: var(--coral);
  border-radius: 2px;
}
.faq-q .icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-q .icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 1.5px;
  transform: translateX(-50%);
  transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-q .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a-inner {
  padding: 0 1.8rem 1.6rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Newsletter ---------- */
.newsletter {
  padding: var(--section) 0;
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  opacity: 0.25;
  filter: blur(40px);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.newsletter h2 em { color: var(--coral-soft); }
.newsletter p {
  color: rgba(250,245,238,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  padding: 0.35rem;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0.85rem 1.2rem;
  font: inherit;
  color: var(--cream);
  outline: none;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(250,245,238,0.5); }
.newsletter-form button {
  padding: 0.85rem 1.6rem;
  background: var(--coral);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.newsletter-form button:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.footer {
  padding: 4rem 0 2.5rem;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-brand .heart { color: var(--coral); }
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.footer-links a:hover { color: var(--coral-deep); }
.footer-copy {
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 9rem 0 4rem; min-height: auto; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem 3rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); padding: 0.5rem; }
  .newsletter-form button { border-radius: var(--radius-sm); padding: 0.9rem; }
}

@media (max-width: 480px) {
  .collection-card { padding: 2rem 1.5rem; }
  .faq-q { padding: 1.2rem 1.3rem; font-size: 1.02rem; }
  .faq-a-inner { padding: 0 1.3rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
