:root{
  --pink:#ff5ab3;
  --hot-pink:#ff2f9a;
  --soft-pink:#ffd9ec;
  --blush:#fff4f8;
  --cream:#fffaf3;
  --cherry:#ff4f70;
  --lavender:#c9b7ff;
  --blue:#a9e8ff;
  --ink:#3b1d2d;
  --muted:#7a5b6d;
  --white:#fff;
  --shadow: 0 24px 70px rgba(255, 90, 179, .18);
  --radius: 34px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Nunito", system-ui, -apple-system, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, #ffe8f4 0 18%, transparent 36%),
    radial-gradient(circle at 90% 20%, #f1e9ff 0 12%, transparent 30%),
    var(--cream);
}

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

.announcement{
  text-align:center;
  padding:10px 18px;
  background:var(--pink);
  color:white;
  font-weight:900;
  letter-spacing:.03em;
  font-size:14px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px clamp(18px, 5vw, 70px);
  background:rgba(255,250,243,.82);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(255,90,179,.12);
}

.brand img{
  width:104px;
  height:58px;
  object-fit:contain;
  mix-blend-mode:multiply;
}

.desktop-nav{
  display:flex;
  gap:28px;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.desktop-nav a:hover{color:var(--hot-pink)}

.nav-toggle{
  display:none;
  border:0;
  background:var(--soft-pink);
  color:var(--ink);
  width:44px;
  height:44px;
  border-radius:50%;
  font-size:22px;
}

.mobile-nav{
  display:none;
  padding:18px;
  background:white;
  border-bottom:1px solid var(--soft-pink);
}
.mobile-nav a{
  display:block;
  padding:14px;
  font-weight:900;
}

.hero{
  min-height:calc(100vh - 118px);
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:42px;
  align-items:center;
  padding:clamp(42px, 7vw, 90px) clamp(18px, 5vw, 70px);
}

.eyebrow{
  color:var(--hot-pink);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:13px;
  margin:0 0 14px;
}

h1,h2,h3{
  font-family:"DM Serif Display", Georgia, serif;
  line-height:.94;
  margin:0;
  font-weight:400;
}

h1{font-size:clamp(56px, 8vw, 116px)}
h2{font-size:clamp(40px, 5.4vw, 76px)}
h3{font-size:34px}

.intro,.section-heading p,.feature-copy p,.world-inner p,.signup-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.hero-actions{
  margin-top:30px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 24px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 12px 30px rgba(255,90,179,.16);
}

.button.primary{
  background:var(--hot-pink);
  color:white;
}

.button.secondary{
  background:white;
  color:var(--hot-pink);
  border:2px solid var(--soft-pink);
}

.hero-art{
  position:relative;
}

.hero-main{
  width:100%;
  border-radius:48px;
  aspect-ratio:1 / .84;
  object-fit:cover;
  box-shadow:var(--shadow);
  border:10px solid white;
}

.sticker{
  position:absolute;
  z-index:2;
  display:grid;
  place-items:center;
  width:82px;
  height:82px;
  border-radius:26px;
  background:white;
  box-shadow:var(--shadow);
  color:var(--pink);
  font-size:42px;
  transform:rotate(-10deg);
}
.sticker-one{left:-22px;top:9%}
.sticker-two{right:-16px;bottom:21%; color:var(--lavender); transform:rotate(12deg)}

.floating-card{
  position:absolute;
  left:34px;
  bottom:-24px;
  background:white;
  padding:18px 22px;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.floating-card span{
  display:block;
  color:var(--pink);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.floating-card strong{font-size:20px}

.marquee{
  overflow:hidden;
  background:white;
  border-block:1px solid rgba(255,90,179,.16);
  color:var(--hot-pink);
  font-weight:900;
}
.marquee div{
  display:flex;
  gap:38px;
  width:max-content;
  padding:18px 0;
  animation:scroll 24s linear infinite;
}
.marquee span{white-space:nowrap}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.section{
  padding:clamp(70px, 8vw, 120px) clamp(18px, 5vw, 70px);
}

.section-heading{
  max-width:760px;
  margin-bottom:38px;
}

.drop-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:18px;
}

.drop-card{
  background:white;
  padding:14px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.drop-card.large{grid-row:span 2}

.drop-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:24px;
}
.drop-card.large img{height:560px}

.drop-card div{padding:18px 8px 8px}
.drop-card p{color:var(--muted);line-height:1.45}
.tag{
  color:var(--pink)!important;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:0 0 8px;
}

.split-feature{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:70px;
  padding:clamp(70px, 8vw, 120px) clamp(18px, 5vw, 70px);
  background:linear-gradient(180deg, transparent, #fff2fa);
}

.image-stack{
  position:relative;
  min-height:560px;
}

.image-stack img{
  position:absolute;
  object-fit:cover;
  border:10px solid white;
  box-shadow:var(--shadow);
}

.stack-one{
  width:62%;
  border-radius:42px;
  left:0;
  top:0;
}

.stack-two{
  width:58%;
  border-radius:42px;
  right:0;
  bottom:0;
}

.text-link{
  display:inline-block;
  margin-top:20px;
  font-weight:900;
  color:var(--hot-pink);
}

.world{
  padding:100px clamp(18px, 5vw, 70px);
}
.world-inner{
  position:relative;
  overflow:hidden;
  text-align:center;
  max-width:1050px;
  margin:auto;
  padding:74px 28px;
  border-radius:54px;
  background:
    radial-gradient(circle at 15% 25%, rgba(169,232,255,.65), transparent 22%),
    radial-gradient(circle at 86% 30%, rgba(201,183,255,.65), transparent 24%),
    var(--white);
  box-shadow:var(--shadow);
}
.world-inner p{max-width:720px;margin:18px auto 0}

.values{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.values div{
  padding:24px;
  border-radius:28px;
  background:var(--blush);
}
.values strong{
  display:block;
  font-family:"DM Serif Display", Georgia, serif;
  font-size:32px;
}
.values span{
  color:var(--muted);
}

.lookbook-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.lookbook-grid img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow);
}

.signup{
  padding:clamp(70px, 8vw, 120px) clamp(18px, 5vw, 70px);
}
.signup-card{
  max-width:880px;
  margin:auto;
  text-align:center;
  padding:clamp(36px, 7vw, 82px);
  border-radius:60px;
  background:var(--pink);
  color:white;
  box-shadow:0 30px 80px rgba(255,47,154,.24);
}
.signup-card .eyebrow,.signup-card p{color:white}
.signup-card p{opacity:.94}

.email-form{
  margin:30px auto 0;
  display:flex;
  gap:10px;
  max-width:560px;
  padding:8px;
  background:white;
  border-radius:999px;
}
.email-form input{
  flex:1;
  min-width:0;
  border:0;
  padding:0 20px;
  font:inherit;
  outline:none;
}
.email-form button{
  border:0;
  padding:16px 22px;
  border-radius:999px;
  background:var(--ink);
  color:white;
  font-weight:900;
  cursor:pointer;
}
.form-note{font-size:14px!important;margin-bottom:0}

.social-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.social-links a{
  background:white;
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
  font-family:"DM Serif Display", Georgia, serif;
  font-size:34px;
}
.social-links span{
  font-family:"Nunito", sans-serif;
  color:var(--pink);
  font-size:16px;
  font-weight:900;
}

.footer{
  text-align:center;
  padding:50px 20px;
  background:white;
}
.footer img{
  width:120px;
  margin:0 auto 10px;
  mix-blend-mode:multiply;
}
.footer p{
  color:var(--hot-pink);
  font-weight:900;
}
.footer-links{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:800;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

@media (max-width: 900px){
  .desktop-nav{display:none}
  .nav-toggle{display:block}
  .mobile-nav.open{display:block}
  .hero,.split-feature{grid-template-columns:1fr}
  .hero{padding-top:36px}
  .drop-grid{grid-template-columns:1fr}
  .drop-card.large{grid-row:auto}
  .drop-card.large img,.drop-card img{height:360px}
  .lookbook-grid{grid-template-columns:1fr 1fr}
  .social-links,.values{grid-template-columns:1fr}
  .image-stack{min-height:480px}
}

@media (max-width: 560px){
  .brand img{width:86px}
  .hero-main{border-radius:32px;border-width:6px}
  .sticker{width:58px;height:58px;font-size:30px;border-radius:18px}
  .floating-card{left:18px;right:18px;bottom:-34px}
  .hero-copy{padding-bottom:12px}
  .email-form{border-radius:26px;flex-direction:column;padding:10px}
  .email-form input{padding:16px}
  .lookbook-grid{grid-template-columns:1fr}
  .lookbook-grid img{height:330px}
  .section,.signup,.world{padding-left:16px;padding-right:16px}
}
