:root {
  --pink: #e85d82;
  --pink-strong: #b8325b;
  --pink-soft: #fff6f8;
  --pink-muted: #f5c7d2;
  --gold: #c89545;
  --gold-soft: #f4e1c1;
  --ink: #241b1d;
  --text: #67565a;
  --line: #f0dce1;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(105, 69, 76, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #f38ca6);
  font-size: 13px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--text);
  font-size: 14px;
}

.site-nav a,
.header-cta {
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.header-cta:hover {
  color: var(--pink-strong);
  transform: translateY(-1px);
}

.header-cta {
  color: var(--pink-strong);
  font-weight: 800;
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) 0 52px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 660px;
  font-size: clamp(42px, 7vw, 78px);
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  overflow-wrap: anywhere;
}

.hero-text,
.section-heading p,
.social-proof p {
  color: var(--text);
  font-size: 17px;
}

.hero-text {
  max-width: 590px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
}

.button.primary {
  color: var(--white);
  background: var(--pink-strong);
  box-shadow: 0 12px 28px rgba(184, 50, 91, 0.28);
}

.handle {
  color: var(--text);
  font-weight: 800;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-tile,
.visual {
  min-height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tile-large {
  min-height: 220px;
}

.hero-gallery .product-tile:nth-child(2),
.hero-gallery .product-tile:nth-child(4) {
  transform: translateY(34px);
}

.tile-gold {
  background: radial-gradient(circle at 70% 20%, #fff 0 14%, transparent 15%), linear-gradient(135deg, #f7ebe4, var(--gold));
}

.tile-pink {
  background: radial-gradient(circle at 28% 25%, #fff 0 12%, transparent 13%), linear-gradient(135deg, var(--pink-muted), #fff 58%, var(--gold-soft));
}

.tile-soft {
  background: radial-gradient(circle at 52% 42%, #fff 0 16%, transparent 17%), linear-gradient(135deg, #fff, #ead3d8);
}

.tile-warm {
  background: radial-gradient(circle at 28% 62%, #fff 0 10%, transparent 11%), linear-gradient(135deg, #f2ddd4, #9f6845);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.benefits article {
  padding: 22px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.benefits article:last-child {
  border-right: 0;
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits span {
  margin-top: 4px;
  color: var(--text);
}

.categories,
.highlights,
.social-proof,
.final-cta {
  padding: 74px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading.compact {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.category-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card,
.highlight-card {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card span {
  color: var(--pink-strong);
  font-size: 13px;
  font-weight: 800;
}

.category-card strong,
.highlight-card h3 {
  margin: 0;
  font-size: 21px;
}

.category-card small,
.highlight-card p {
  color: var(--text);
  font-size: 14px;
}

.highlight-card .visual {
  min-height: 170px;
  margin-bottom: 16px;
  box-shadow: none;
}

.social-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin-top: 24px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 26px;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .social-proof {
    grid-template-columns: 1fr;
  }

  .benefits,
  .category-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-gallery {
    gap: 10px;
  }

  .product-tile,
  .visual {
    min-height: 128px;
  }

  .tile-large {
    min-height: 172px;
  }

  .benefits,
  .category-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .categories,
  .highlights,
  .social-proof,
  .final-cta {
    padding: 54px 0;
  }

  .benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefits article:last-child {
    border-bottom: 0;
  }

  .section-heading.compact {
    display: block;
  }
}
