
:root{
  --bg:#fffafc;
  --surface:#ffffff;
  --text:#251f22;
  --muted:#7c6e74;
  --line:#f0e4e8;
  --pink:#ff5b7f;
  --pink-dark:#ec456a;
  --pink-soft:#fff0f4;
  --shadow:0 18px 50px rgba(88,45,58,.09);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 85% 3%, rgba(255,91,127,.08), transparent 22rem),
    var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
img,video{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
button,a{-webkit-tap-highlight-color:transparent}

.section-shell{
  width:min(calc(100% - 40px), var(--max));
  margin-inline:auto;
}

.topbar{
  width:min(calc(100% - 40px), var(--max));
  margin:0 auto;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:inline-flex;
  align-items:flex-start;
  gap:5px;
  line-height:1;
}
.brand-name{
  font-family:Georgia,"Times New Roman",serif;
  font-size:29px;
  font-weight:700;
  letter-spacing:-.6px;
}
.brand-heart{
  color:var(--pink);
  font-size:23px;
  transform:translateY(-3px);
}

.btn{
  border-radius:999px;
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 24px;
  font-weight:750;
  font-size:15px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary,.btn-small{
  color:white;
  background:var(--pink);
  box-shadow:0 12px 30px rgba(255,91,127,.22);
}
.btn-primary:hover,.btn-small:hover{background:var(--pink-dark)}
.btn-small{min-height:42px;padding:0 18px;font-size:14px}

.hero{
  min-height:calc(100svh - 76px);
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(340px,.98fr);
  align-items:center;
  gap:clamp(36px,6vw,84px);
  padding:34px 0 72px;
}
.hero-media{
  aspect-ratio:4/5;
  max-height:760px;
}
.media-card{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#f5edf0;
  border:1px solid rgba(80,45,55,.05);
  box-shadow:var(--shadow);
}
.hero-copy{max-width:520px}
.eyebrow{
  margin-bottom:14px;
  color:var(--pink);
  font-size:12px;
  font-weight:850;
  letter-spacing:.18em;
}
.eyebrow-light{color:rgba(255,255,255,.8)}
h1,h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.045em;
  font-weight:700;
}
h1{
  font-size:clamp(54px,7vw,92px);
  line-height:.96;
}
h2{
  font-size:clamp(36px,4vw,58px);
  line-height:1;
}
.lead{
  max-width:420px;
  margin:24px 0 28px;
  color:var(--muted);
  font-size:clamp(18px,2vw,23px);
  line-height:1.5;
}
.microcopy{
  margin:13px 0 0;
  color:var(--muted);
  font-size:13px;
}

.gallery{padding:84px 0 0}
.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}
.section-note{color:var(--muted);font-size:14px}
.media-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.media-grid .media-card{aspect-ratio:4/5}
.media-card-video::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(to top,rgba(0,0,0,.18),transparent 30%);
}
.video-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
  color:#fff;
  background:rgba(20,20,20,.52);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  padding:7px 10px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
}

.cta-band{
  margin-top:76px;
  min-height:250px;
  padding:48px 54px;
  border-radius:30px;
  color:white;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.2), transparent 16rem),
    linear-gradient(135deg,#ff6b8d,#f04c72);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  box-shadow:0 24px 70px rgba(255,91,127,.22);
}
.cta-band h2{margin-bottom:12px}
.cta-band p{
  margin:0;
  max-width:560px;
  color:rgba(255,255,255,.85);
  line-height:1.6;
}
.btn-light{
  flex:0 0 auto;
  background:#fff;
  color:#db3d62;
  box-shadow:0 14px 28px rgba(119,31,53,.15);
}
.continuation{padding-top:76px}

.final-cta{
  text-align:center;
  padding:118px 20px 112px;
}
.final-cta p{
  margin:18px auto 28px;
  max-width:520px;
  color:var(--muted);
  line-height:1.6;
}
.heart-mark{
  display:block;
  margin-bottom:16px;
  color:var(--pink);
  font-size:34px;
}
.final-cta .btn{min-width:245px}

.footer{
  min-height:84px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:13px;
  padding-bottom:max(10px,env(safe-area-inset-bottom));
}

.sticky-cta{display:none}

@media (max-width:820px){
  body{padding-bottom:78px}
  .section-shell,.topbar{width:min(calc(100% - 28px),var(--max))}
  .topbar{min-height:64px}
  .brand-name{font-size:25px}
  .topbar .btn-small{display:none}

  .hero{
    min-height:0;
    display:block;
    padding:8px 0 54px;
  }
  .hero-media{
    aspect-ratio:4/5;
    max-height:none;
    border-radius:22px;
  }
  .hero-copy{
    margin-top:28px;
    max-width:none;
  }
  h1{font-size:clamp(48px,15vw,72px)}
  .lead{margin:15px 0 22px;font-size:18px}
  .hero-copy .btn{width:100%}
  .microcopy{text-align:center}

  .gallery{padding-top:58px}
  .section-heading{
    align-items:flex-start;
    margin-bottom:20px;
  }
  .section-note{display:none}
  h2{font-size:42px}
  .media-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .media-grid .media-card{aspect-ratio:4/5}

  .cta-band{
    width:min(calc(100% - 28px),var(--max));
    margin-top:58px;
    padding:34px 26px;
    min-height:0;
    border-radius:24px;
    display:block;
  }
  .cta-band h2{font-size:46px}
  .cta-band p{margin-bottom:24px}
  .cta-band .btn{width:100%}

  .continuation{padding-top:58px}
  .final-cta{padding:88px 0 72px}
  .final-cta .btn{width:100%}
  .footer{min-height:74px}

  .sticky-cta{
    position:fixed;
    left:14px;
    right:14px;
    bottom:max(12px,env(safe-area-inset-bottom));
    z-index:50;
    min-height:56px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:#fff;
    background:var(--pink);
    box-shadow:0 14px 35px rgba(109,31,49,.28);
    font-weight:850;
  }
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important}
}
