/* ---------- Tokens ---------- */
:root {
  --bg: #FDF7F0;
  --bg-warm: #F7EBDC;
  --surface: #FFFFFF;
  --ink: #271928;
  --ink-soft: #625761;
  --pink: #D83F72;
  --pink-deep: #BE2E5E;
  --pink-soft: #FCE6EC;
  --burgundy: #32152D;
  --burgundy-2: #4A1E39;
  --gold: #D4A24C;
  --line: #E9DCD0;
  --shadow-sm: 0 2px 10px rgba(58, 26, 43, 0.07);
  --shadow-md: 0 10px 26px rgba(58, 26, 43, 0.12);
  --shadow-lg: 0 22px 54px rgba(58, 26, 43, 0.20);
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 12px;
  --maxw: 1168px;
  --easing: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(229, 82, 122, 0.35);
}
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(229, 82, 122, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: rgba(255, 255, 255, 0.26);
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.56);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--pink); color: var(--pink); }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 240, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(58, 26, 43, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1;
  gap: 4px;
}
.logo-sugar { color: var(--pink); }
.logo-grand { color: var(--ink); }
.logo-dot { color: var(--ink); font-weight: 500; font-size: 0.58em; margin-left: 2px; }
.logo-heart {
  width: 18px; height: 18px; fill: none; stroke: var(--pink); stroke-width: 1.8;
  margin-left: 6px;
  animation: pulse-heart 1.8s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.primary-nav { display: flex; gap: clamp(24px, 3.2vw, 44px); }
.primary-nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s var(--easing), left .25s var(--easing);
}
.primary-nav a:hover { color: var(--pink); }
.primary-nav a:hover::after { width: 100%; left: 0; }
.nav-cta { display: flex; gap: 14px; }
.nav-toggle {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- Hero — full-bleed banner ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 69vw, 660px);
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 34%;
}
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.06) translate(-0.8%, -0.6%); }
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(253, 247, 240, 0.98) 0%,
      rgba(253, 247, 240, 0.92) 22%,
      rgba(253, 247, 240, 0.60) 43%,
      rgba(253, 247, 240, 0.12) 62%,
      transparent 78%
    ),
    linear-gradient(180deg, rgba(253, 247, 240, 0.22) 0%, transparent 22%, transparent 78%, rgba(253, 247, 240, 0.80) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 58px;
  padding-bottom: 58px;
  width: 100%;
}
.hero-copy { max-width: 500px; }
.hero-title {
  font-size: clamp(47px, 6.2vw, 72px);
  font-weight: 900;
  line-height: .98;
  margin-bottom: 28px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hero-title .accent {
  color: var(--pink);
  background: linear-gradient(90deg, var(--pink), var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 34px;
  display: flex; align-items: flex-start; gap: 16px;
  max-width: 350px;
}
.inline-heart { width: 24px; height: 24px; fill: none; stroke: var(--pink); stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.floating-quote {
  position: absolute;
  right: clamp(34px, 5.6vw, 70px);
  bottom: clamp(92px, 10vw, 132px);
  z-index: 3;
  background: #fff;
  padding: 24px 28px 22px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(58, 26, 43, 0.13);
  max-width: 214px;
  animation: none;
}
.floating-quote p {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 15px;
  margin: 8px 0 14px;
  color: var(--ink);
  line-height: 1.35;
}
.quote-attr {
  font-size: 11px;
  color: var(--pink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-mark {
  width: 18px; height: 18px;
  fill: var(--pink);
  opacity: 0.6;
}
.floating-badge {
  position: absolute;
  left: -16px;
  top: 32px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  animation: float 5.5s ease-in-out 0.5s infinite;
}
.floating-badge svg {
  width: 16px; height: 16px;
  fill: #fff;
  background: var(--pink);
  border-radius: 50%;
  padding: 2px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}
.trust-card p {
  font-size: 12px;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s var(--easing);
}
.trust-card:hover .trust-icon { transform: translateY(-2px); }
.trust-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--pink); stroke-width: 1.25; }
.trust-icon-heart,
.trust-icon-accessibility,
.trust-icon-diamond,
.trust-icon-shield { background: transparent; }
.trust-icon-heart svg,
.trust-icon-accessibility svg,
.trust-icon-diamond svg,
.trust-icon-shield svg { fill: none; stroke: var(--pink); }

/* ---------- Browse / Carousel ---------- */
.browse { padding: 36px 0 34px; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-head h2 { font-size: 23px; font-weight: 800; }
.head-heart { color: var(--pink); font-size: 0.85em; margin-left: 4px; }
.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  transition: gap .2s;
}
.view-all:hover { color: var(--pink-deep); }

.carousel-wrap {
  position: relative;
}
.carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.grand-card {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 174px;
  background: var(--surface);
  border-radius: 9px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(58, 26, 43, 0.08);
  box-shadow: 0 4px 12px rgba(58, 26, 43, 0.07);
  transition: transform .35s var(--easing), box-shadow .35s var(--easing);
}
.grand-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-photo {
  position: relative;
  aspect-ratio: 172 / 173;
  overflow: hidden;
  background: var(--bg-warm);
}
.card-photo img {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 38%;
  --photo-origin: center top;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--photo-x) var(--photo-y);
  transform-origin: var(--photo-origin);
  transform: scale(var(--photo-scale));
  transition: transform .6s var(--easing);
}
.grand-card:hover .card-photo img { transform: scale(calc(var(--photo-scale) * 1.06)); }
.card-photo img[src$="arthur.jpg"] { --photo-y: 8%; }
.card-photo img[src$="franklin.jpg"] { --photo-y: 5%; }
.card-photo img[src$="morty.jpg"] { --photo-y: 5%; }
.card-photo img[src$="hank.jpg"] {
  --photo-scale: 1.22;
  --photo-x: 39%;
  --photo-y: 0%;
}
.card-photo img[src$="lewis.jpg"] { --photo-y: 5%; }
.card-photo img[src$="carmine.jpg"] {
  --photo-scale: 1.34;
  --photo-x: 52%;
  --photo-y: 25%;
  --photo-origin: center center;
}
.fav {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 50%;
  color: var(--pink);
  font-size: 16px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: transform .2s, background .2s, color .2s;
  box-shadow: var(--shadow-sm);
}
.fav:hover { background: var(--pink); color: #fff; transform: scale(1.1); }
.fav.active { background: var(--pink); color: #fff; }
.card-body { padding: 14px 16px 18px; }
.card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px;
}
.verified {
  display: inline-grid; place-items: center;
  width: 16px; height: 16px;
  background: #4A86E8;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}
.loc {
  font-size: 12px;
  color: var(--ink);
  margin: 0 0 9px;
}
.loves {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.loves strong { color: var(--pink); font-weight: 500; }

.carousel-btn {
  position: absolute;
  top: 36%;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 24px;
  color: var(--ink);
  display: grid; place-items: center;
  z-index: 5;
  transition: transform .2s, background .2s, color .2s;
}
.carousel-btn:hover { background: var(--pink); color: #fff; transform: scale(1.08); }
.carousel-btn.prev { left: -18px; }
.carousel-btn.next { right: -18px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.carousel-dots .dot {
  width: 8px; height: 8px;
  background: var(--line);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.carousel-dots .dot.active {
  background: var(--pink);
  width: 8px;
  border-radius: 50%;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  margin: 38px 0 28px;
  position: relative;
}
.cta-grid {
  background:
    radial-gradient(circle at 22% 0%, rgba(216, 63, 114, 0.10), transparent 34%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-2) 100%);
  color: #fff;
  border-radius: 11px;
  padding: 27px 58px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-grid::before,
.cta-grid::after { content: none; }
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 {
  color: #fff;
  font-size: clamp(31px, 4vw, 43px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
}
.accent-light { color: var(--pink); }
.cta-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  margin: 0 0 22px;
  max-width: 300px;
}
.cta-stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 118px;
  justify-content: center;
}
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.22); }
.stat-icon {
  width: 48px; height: 38px;
  border-radius: 0;
  background: transparent;
  display: grid; place-items: center;
}
.stat-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--pink); stroke-width: 1.25; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 31px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0;
  max-width: 145px;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 28px 0 20px; }
.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testi-card {
  background: var(--surface);
  border-radius: 9px;
  padding: 24px 30px;
  border: 1px solid rgba(58, 26, 43, 0.08);
  box-shadow: none;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testi-head img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-head h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  margin: 0 0 2px;
}
.stars { color: var(--pink); font-size: 13px; letter-spacing: 1px; }
.testi-card p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-brand { display: none; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
}
.footer-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 8px 0 4px;
}
.footer-disclaimer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-nav a:hover { color: var(--pink); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: transparent;
  border-radius: 50%;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--pink); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: var(--ink); transition: fill .2s; }
.footer-social a:hover svg { fill: #fff; }
.footer-bottom { display: none; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal.open { display: flex; animation: fade-in .25s ease; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(30, 20, 24, 0.55);
  backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px 30px;
  width: min(440px, 100%);
  box-shadow: var(--shadow-lg);
  animation: pop-in .3s var(--easing);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.modal-panel-invite {
  width: min(480px, 100%);
  background:
    radial-gradient(circle at top right, rgba(212, 162, 76, 0.10), transparent 55%),
    radial-gradient(circle at bottom left, rgba(229, 82, 122, 0.06), transparent 55%),
    #fff;
  border: 1px solid rgba(212, 162, 76, 0.25);
}
.invite-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: linear-gradient(135deg, rgba(212, 162, 76, 0.18), rgba(212, 162, 76, 0.06));
  border: 1px solid rgba(212, 162, 76, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.invite-badge svg { width: 12px; height: 12px; fill: var(--gold); }
@keyframes pop-in {
  from { transform: translateY(12px) scale(.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-close {
  position: absolute; top: 12px; right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  width: 32px; height: 32px;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--bg); color: var(--ink); }
.modal-panel h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.modal-sub {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 22px;
}
.join-form { display: flex; flex-direction: column; gap: 14px; }
.join-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 6px;
}
.join-form input,
.join-form select {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.join-form input:focus,
.join-form select:focus {
  outline: none;
  border-color: var(--pink);
  background: #fff;
}
.form-note {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  margin: 4px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lock-icon { width: 11px; height: 11px; fill: var(--ink-soft); }

/* Social inputs in invitation form */
.socials {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
  margin: 4px 0 4px;
  background: rgba(251, 243, 234, 0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.socials legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 6px;
}
.legend-help {
  font-size: 11px;
  color: var(--ink-soft);
  margin: -4px 0 6px;
  font-weight: 500;
}
.social-input {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.social-input:focus-within { border-color: var(--pink); }
.social-icon {
  display: grid;
  place-items: center;
  width: 40px;
  background: var(--bg);
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.social-icon svg { width: 16px; height: 16px; fill: var(--ink); }
.social-icon.ig svg { fill: #C13584; }
.social-icon.tt svg { fill: #000; }
.social-icon.other svg { fill: var(--ink-soft); }
.social-input input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  font: inherit;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink);
  border-radius: 0;
}
.social-input input:focus { outline: none; background: transparent; }

.success-line {
  color: var(--ink-soft);
  margin: 6px 0 14px;
}
.success-id {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  background: rgba(212, 162, 76, 0.12);
  border: 1px dashed rgba(212, 162, 76, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 12px;
}
.success-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
}
.join-success { text-align: center; padding: 16px 0; }
.success-emoji {
  font-size: 50px;
  margin-bottom: 8px;
  animation: float 2.5s ease-in-out infinite;
}
.join-success h4 {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}
.join-success p { color: var(--ink-soft); margin: 0; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--easing), transform .7s var(--easing);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { gap: 18px; }
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: 12px; }
  .hero { min-height: 610px; }
  .hero-bg img { object-position: 65% 30%; }
  .hero-fade {
    background:
      linear-gradient(90deg,
        rgba(253, 247, 240, 0.98) 0%,
        rgba(253, 247, 240, 0.92) 30%,
        rgba(253, 247, 240, 0.50) 56%,
        transparent 82%
      );
  }
  .hero-copy { max-width: 470px; }
  .floating-quote { right: 28px; bottom: 84px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grand-card { flex: 0 0 calc((100% - 42px) / 4); }
  .cta-grid { grid-template-columns: 1fr; padding: 34px 36px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .site-header {
    background: rgba(253, 247, 240, 0.96);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
  }
  .nav { padding-top: 18px; padding-bottom: 12px; }
  .logo { font-size: 23px; }
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 14px;
  }
  .hero { min-height: 720px; align-items: flex-end; }
  .hero-bg img {
    object-position: 55% 0;
    height: 58%;
  }
  .hero-fade {
    background:
      linear-gradient(180deg,
        rgba(253, 247, 240, 0.02) 0%,
        rgba(253, 247, 240, 0.18) 38%,
        rgba(253, 247, 240, 0.92) 56%,
        var(--bg) 67%,
        var(--bg) 100%
      );
  }
  .hero-content { padding-top: 280px; padding-bottom: 30px; }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(42px, 13.8vw, 58px); margin-bottom: 18px; }
  .hero-tagline { font-size: 15px; margin-bottom: 22px; gap: 12px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 148px; padding-left: 12px; padding-right: 12px; }
  .floating-quote {
    right: 18px;
    top: 184px;
    bottom: auto;
    max-width: 170px;
    padding: 16px 18px;
  }
  .floating-quote p { font-size: 13px; }
  .trust-strip { padding: 22px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-card { align-items: center; }
  .grand-card { flex: 0 0 77%; min-width: 248px; }
  .carousel-btn { display: none; }
  .section-head h2 { font-size: 24px; }
  .section-head { align-items: flex-start; gap: 18px; }
  .view-all { padding-top: 5px; }
  .cta-banner { margin-top: 30px; }
  .cta-grid { padding: 30px 24px; }
  .cta-stats { grid-template-columns: 1fr; gap: 0; }
  .stat + .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 420px) {
  .hero { min-height: 690px; }
  .hero-bg img { height: 52%; object-position: 56% 0; }
  .hero-content { padding-top: 254px; }
  .floating-quote {
    top: 154px;
    right: 14px;
    max-width: 158px;
    padding: 13px 15px;
  }
  .floating-quote p { font-size: 12px; }
  .hero-title { font-size: clamp(39px, 13vw, 50px); }
  .btn-lg { font-size: 14px; }
}
