@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --blush:    #f5e6e0;
  --rose:     #c9636a;
  --deep:     #6b2737;
  --gold:     #c9a96e;
  --ivory:    #faf7f4;
  --charcoal: #2c2229;
  --muted:    #9e8b8e;
  --white:    #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a0810 0%, #3d1525 40%, #6b2737 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,99,106,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,169,110,.12) 0%, transparent 60%);
  pointer-events: none;
}

.main-background-img {
    position: absolute;
    opacity: .5;
    width: stretch;
}

/* floating petals */
.petal {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50% 0 50% 0;
  opacity: .25;
  animation: drift linear infinite;
}
.petal:nth-child(1)  { left:10%; top:-10px; background:var(--rose);  animation-duration:14s; animation-delay:0s;   width:6px;  height:6px; }
.petal:nth-child(2)  { left:25%; top:-10px; background:var(--gold);  animation-duration:18s; animation-delay:2s;   width:10px; height:10px;}
.petal:nth-child(3)  { left:50%; top:-10px; background:var(--rose);  animation-duration:12s; animation-delay:5s;   width:7px;  height:7px; }
.petal:nth-child(4)  { left:70%; top:-10px; background:var(--gold);  animation-duration:20s; animation-delay:1s;   width:5px;  height:5px; }
.petal:nth-child(5)  { left:85%; top:-10px; background:var(--rose);  animation-duration:16s; animation-delay:8s;   width:9px;  height:9px; }
.petal:nth-child(6)  { left:40%; top:-10px; background:#e8c4c7;      animation-duration:22s; animation-delay:3s;   width:6px;  height:6px; }
.petal:nth-child(7)  { left:60%; top:-10px; background:var(--gold);  animation-duration:15s; animation-delay:7s;   width:8px;  height:8px; }

@keyframes drift {
  0%   { transform: translateY(0)   rotate(0deg)   translateX(0); opacity:.25; }
  50%  { transform: translateY(50vh) rotate(180deg) translateX(30px); opacity:.15; }
  100% { transform: translateY(105vh) rotate(360deg) translateX(-20px); opacity:0; }
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 5% 0 8%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-copy { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-rose {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,99,106,.4);
}

.btn-outline-gold {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(201,169,110,.5);
  color: var(--gold);
  border-radius: 50px;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .05em;
  transition: background .2s, color .2s;
}
.btn-outline-gold:hover {
  background: rgba(201,169,110,.1);
}

/* search card */
.hero-search-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px 30px;
}

.search-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.search-select,
.search-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: var(--white);
  padding: 10px 14px;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  appearance: none;
  transition: border-color .2s;
}
.search-select option { background: var(--deep); color: var(--white); }
.search-select:focus,
.search-input:focus { outline: none; border-color: var(--rose); }

.age-display {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
}

.btn-search-full {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  border: none; border-radius: 12px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .2s, transform .2s;
}
.btn-search-full:hover { opacity: .9; transform: translateY(-1px); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #ede5e7;
}
.trust-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: 1px solid #ede5e7;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid #ede5e7;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.trust-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.trust-text span {
  font-size: .8rem;
  color: var(--muted);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 16px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-divider span { color: var(--gold); font-size: 1rem; }

/* ── WHY US ── */
.why-section {
  padding: 90px 5%;
  background: var(--ivory);
}
.why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-copy .feature-list { list-style: none; margin-top: 24px; }
.why-copy .feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #ede5e7;
  font-size: .9rem;
  line-height: 1.6;
  color: #5a4a4e;
}
.why-copy .feature-list li:last-child { border-bottom: none; }
.check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--rose);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .7rem;
  margin-top: 1px;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%; border-radius: 20px;
  display: block;
}
.why-stat-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--deep);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(107,39,55,.3);
}
.why-stat-badge .stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.why-stat-badge .stat-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: 4px;
}

/* ── STEPS ── */
.steps-section {
  padding: 90px 5%;
  background: var(--white);
}
.steps-grid {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 16.6%; right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose) 30%, var(--gold) 70%, transparent);
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), #ede0dd);
  border: 2px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--deep);
  position: relative; z-index: 1;
  background: var(--white);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--deep);
  margin-bottom: 10px;
}
.step-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── VISION / MISSION ── */
.vm-section {
  padding: 90px 5%;
  background: linear-gradient(135deg, #1a0810 0%, #3d1525 100%);
  position: relative; overflow: hidden;
}
.vm-section::before {
  content: '♡';
  position: absolute;
  font-size: 400px;
  opacity: .03;
  color: var(--white);
  top: -80px; right: -60px;
  pointer-events: none;
  line-height: 1;
}
.vm-grid {
  max-width: 800px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.vm-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
}
.vm-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.vm-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 90px 5%;
  background: var(--blush);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-deep {
  padding: 15px 40px;
  background: var(--deep);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}
.btn-deep:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(107,39,55,.3);
}
.btn-gold {
  padding: 15px 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,169,110,.4);
}

/* ── BROWSE SECTION ── */
.browse-section {
  padding: 90px 5%;
  background: var(--ivory);
}
.browse-card {
  max-width: 900px; margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(107,39,55,.07);
  border: 1px solid #ede5e7;
}
.browse-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.browse-form-grid .form-full { grid-column: 1 / -1; }
.field-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.browse-select,
.browse-range {
  width: 100%;
  border: 1.5px solid #ede5e7;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--ivory);
  appearance: none;
  transition: border-color .2s;
}
.browse-select:focus { outline: none; border-color: var(--rose); }
.age-range-wrap { display: flex; align-items: center; gap: 12px; }
.age-range-wrap input[type=range] { flex: 1; accent-color: var(--rose); }
.age-range-val {
  font-size: .85rem;
  color: var(--rose);
  font-weight: 500;
  white-space: nowrap;
}
.btn-find {
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  color: var(--white);
  border: none; border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.btn-find:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,99,106,.35);
}

/* ── FOOTER STRIP ── */
.footer-strip {
  background: var(--charcoal);
  padding: 40px 5%;
  text-align: center;
}
.footer-strip h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-strip p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── RANGE SLIDER ── */
input[type=range] {
  -webkit-appearance: none;
  background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--rose) var(--pct, 20%), #ede5e7 var(--pct, 20%));
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(201,99,106,.4);
  margin-top: -7px;
  cursor: pointer;
}

@media(max-width:900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 5% 40px; }
  .why-grid   { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .vm-grid    { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid #ede5e7; }
  .browse-form-grid { grid-template-columns: 1fr 1fr; }
  .why-stat-badge { display: none; }
}