:root {
  --pink: #f5c7cf;
  --soft-pink: #fff2f4;
  --rose: #c92f62;
  --deep-rose: #6b1735;
  --white: #fffaf9;
  --line: rgba(107, 23, 53, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-pink);
  color: var(--deep-rose);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255, 242, 244, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.logo-word {
  position: relative;
  display: inline-block;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.heart-i {
  position: relative;
  display: inline-block;
}

.heart-i::before {
  position: absolute;
  top: -0.26em;
  left: 50%;
  width: 0.34em;
  height: 0.31em;
  background: var(--rose);
  color: var(--rose);
  line-height: 1;
  content: "";
  transform: translateX(-50%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 27S1.8 18.5 1.8 9.7C1.8 4.6 5.2 1 9.6 1c2.7 0 5 1.4 6.4 3.7C17.4 2.4 19.7 1 22.4 1c4.4 0 7.8 3.6 7.8 8.7C30.2 18.5 16 27 16 27Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 27S1.8 18.5 1.8 9.7C1.8 4.6 5.2 1 9.6 1c2.7 0 5 1.4 6.4 3.7C17.4 2.4 19.7 1 22.4 1c4.4 0 7.8 3.6 7.8 8.7C30.2 18.5 16 27 16 27Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.logo-word .heart-i::before {
  top: -0.12em;
  width: 0.36em;
  height: 0.33em;
}

.pinksy-word .heart-i::before {
  top: -0.18em;
  width: 0.34em;
  height: 0.31em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a,
.button,
footer,
.section-heading p,
.waitlist p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  padding-top: 68px;
  background: var(--pink);
}

.hero-collage {
  display: grid;
  grid-template-columns: 0.78fr 0.52fr;
  grid-template-rows: 1fr 0.54fr;
  gap: 10px;
  height: 552px;
  padding: 28px 0 28px 32px;
  align-self: center;
}

.hero-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--pink);
}

.hero-hanging {
  grid-row: 1 / span 2;
  object-position: center top;
}

.hero-models {
  object-position: center 18%;
}

.hero-detail {
  object-position: center center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px;
  text-align: center;
}

.hero-text p,
.waitlist p,
.section-heading p {
  margin: 0;
  color: var(--rose);
}

.coming-soon {
  margin-top: 4px;
}

h1 {
  margin: 0;
  color: var(--rose);
  line-height: 0.95;
}

.slogan-lockup {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: min(100%, 380px);
  padding: 8px 0 0;
}

.slogan-lockup::before,
.slogan-lockup::after {
  position: absolute;
  color: rgba(201, 47, 98, 0.28);
  font-size: 34px;
  line-height: 1;
  content: "♥";
}

.slogan-lockup::before {
  top: 12px;
  left: 12px;
  transform: rotate(-14deg);
}

.slogan-lockup::after {
  right: 18px;
  bottom: 14px;
  transform: rotate(12deg);
}

.slogan-small {
  color: var(--deep-rose);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.slogan-small:last-child {
  margin-top: 14px;
}

.pink-word {
  position: relative;
  display: inline-block;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 7.8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: lowercase;
  text-shadow: 0 10px 24px rgba(107, 23, 53, 0.08);
}

.pinksy-word {
  position: relative;
  display: inline-block;
  padding-left: 1px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45em;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.72;
  text-transform: lowercase;
  transform: translateY(0.08em);
}

.drop-slogan {
  margin: 4px 0 2px;
  color: var(--rose);
  font-family: Lobster, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(107, 23, 53, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: var(--white);
  background: var(--rose);
  cursor: pointer;
}

.button:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
}

.first-drop {
  padding: 58px 32px 76px;
  background: var(--soft-pink);
  scroll-margin-top: 68px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 24px;
}

.heart-palette {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(107, 23, 53, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heart-palette span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.heart {
  font-size: 32px;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(107, 23, 53, 0.12);
}

.heart.blush {
  color: #ffc9d2;
}

.heart.rose-heart {
  color: #df4f77;
}

.drop-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.set-card {
  margin: 0;
}

.set-stack {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 34px 34px;
  background: #ffffff;
}

.set-stack img {
  display: block;
  width: min(100%, 360px);
  object-fit: contain;
}

.set-top {
  max-height: 255px;
}

.set-bottom {
  max-height: 315px;
  margin-top: 18px;
}

.set-card figcaption {
  margin-top: 12px;
  color: rgba(107, 23, 53, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist {
  min-height: 46vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 72px 32px;
  text-align: center;
  background: var(--pink);
}

.waitlist img {
  width: min(260px, 72vw);
  height: auto;
}

form {
  display: flex;
  width: min(480px, 100%);
  gap: 10px;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(107, 23, 53, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--deep-rose);
  background: rgba(255, 255, 255, 0.62);
  font: inherit;
  outline: none;
}

input::placeholder {
  color: rgba(107, 23, 53, 0.38);
}

input:focus {
  border-color: var(--rose);
}

.success-message {
  display: none;
}

form.is-submitted {
  display: none;
}

form.is-submitted + .success-message {
  display: block;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  color: rgba(107, 23, 53, 0.58);
  background: var(--soft-pink);
  border-top: 1px solid var(--line);
}

.waitlist-page {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--pink);
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 20px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-collage {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 180px;
    padding: 20px;
  }

  .hero-hanging {
    grid-row: 1 / span 2;
  }

  .hero-text {
    min-height: 260px;
    padding: 34px 22px 44px;
  }

  .first-drop,
  .waitlist {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-bottom: 10px;
  }

  .heart-palette {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .drop-grid {
    gap: 20px;
  }
}

@media (max-width: 520px) {
  nav a:first-child {
    display: none;
  }

  form {
    flex-direction: column;
  }

  .drop-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-template-rows: 220px 150px;
    gap: 8px;
    padding: 16px;
  }

  .drop-slogan {
    font-size: clamp(26px, 8vw, 34px);
  }

  .pink-word {
    font-size: clamp(72px, 22vw, 96px);
  }

  .set-stack {
    min-height: 470px;
    padding: 24px;
  }

  .button {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}
