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

:root {
  --white: #ffffff;
  --off: #f8f8f6;
  --lg: #eeeeec;
  --mg: #c4c4c0;
  --border: rgba(28, 32, 30, 0.08);
  --dark: #111111;
  --mid: #666660;
  --light: #aaa9a4;
  --wash: #e7f0f0;
  --sage: #dbe5df;
  --rose: #f6dbe4;
  --mint: #dceee7;
  --gold: #eadfc4;
  --glass: rgba(255, 255, 255, .64);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background:
    linear-gradient(115deg, rgba(220, 238, 231, .72), transparent 34%),
    linear-gradient(245deg, rgba(246, 219, 228, .78), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf8 45%, #fff7fa 100%);
  color: var(--dark);
  overflow-x: hidden;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 72px;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0.5px solid var(--border);
  box-shadow: 0 10px 30px rgba(19, 27, 24, .05);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: .05em;
  transition: color .25s, transform .25s;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--dark);
  transform: translateY(-1px);
}

.nav-cta,
.btn-p,
.btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: var(--sans);
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.nav-cta {
  background: linear-gradient(135deg, #111, #343434);
  color: var(--white);
  border: none;
  min-height: 38px;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: .04em;
  box-shadow: 0 10px 22px rgba(17, 17, 17, .14);
}

.nav-cta:hover,
.btn-p:hover {
  background: linear-gradient(135deg, #2a2a2a, #050505);
  transform: translateY(-2px);
}

main {
  padding-top: 72px;
}

@supports (content-visibility: auto) {
  main > section:not(:first-child),
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
  }
}

.page-hero {
  min-height: 62vh;
  padding: 7rem 5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 5rem;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .88), rgba(248, 251, 248, .62)),
    linear-gradient(135deg, rgba(220, 238, 231, .72), rgba(246, 219, 228, .42));
  border-bottom: 0.5px solid var(--border);
}

.page-hero.compact {
  min-height: 44vh;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

h1,
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: .92;
  margin-bottom: 1.4rem;
}

.lead {
  max-width: 620px;
  color: var(--mid);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.hero-media {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-media::before,
.hero-media::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .05);
}

.hero-media::before {
  width: min(42vw, 520px);
  height: min(42vw, 520px);
}

.hero-media::after {
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  border-color: rgba(0, 0, 0, .03);
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: min(78%, 520px);
  max-height: 440px;
  object-fit: contain;
  filter: none;
  transition: transform .35s ease;
}

.hero-media:hover img {
  transform: translateY(-8px) scale(1.015);
}

.sec {
  padding: 5rem;
}

.product-showcase {
  min-height: calc(100vh - 72px);
  padding-top: clamp(4.6rem, 8vw, 7.5rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .38)),
    linear-gradient(135deg, rgba(220, 238, 231, .45), rgba(246, 219, 228, .42) 58%, rgba(234, 223, 196, .36));
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-head .section-title {
  margin-bottom: 0;
}

.section-copy {
  color: var(--mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  padding: 1.2rem 1.3rem;
  border: 0.5px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .52);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(29, 38, 35, .06);
}

.sec.alt {
  background: var(--off);
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  margin-bottom: 2.5rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 2px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.product-card,
.review-card,
.policy-card {
  background: rgba(255, 255, 255, .68);
  border: 0.5px solid var(--border);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(28, 35, 32, .07);
}

.product-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .5)),
    linear-gradient(135deg, rgba(220, 238, 231, .42), rgba(246, 219, 228, .28));
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.product-card-grey {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(246, 247, 244, .58)),
    linear-gradient(135deg, rgba(238, 238, 234, .76), rgba(134, 134, 129, .18));
}

.product-card-black {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(244, 244, 241, .54)),
    linear-gradient(135deg, rgba(91, 91, 91, .22), rgba(7, 7, 7, .12));
}

.product-card-pink {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 247, 250, .62)),
    linear-gradient(135deg, rgba(255, 216, 226, .76), rgba(210, 140, 161, .18));
}

.product-card:hover {
  border-color: rgba(17, 17, 17, .14);
  box-shadow: 0 22px 44px rgba(27, 35, 32, .1);
  transform: translateY(-8px);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.6rem;
  transition: transform .35s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.card-kicker {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: .8rem;
}

.card-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: .75rem;
  position: relative;
}

.color-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: .9rem;
  position: relative;
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, .5), 0 4px 10px rgba(0, 0, 0, .1);
  flex: 0 0 auto;
}

.color-dot-grey {
  background: linear-gradient(135deg, #eeeeea, #868681);
}

.color-dot-black {
  background: linear-gradient(135deg, #5b5b5b, #070707);
}

.color-dot-pink {
  background: linear-gradient(135deg, #ffd8e2, #d28ca1);
}

.set-price {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-top: 1.25rem;
}

.card-text,
.policy-card p,
.review-card p {
  color: var(--mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 1px;
  background: var(--border);
}

.detail-list li {
  background: var(--white);
  padding: 1.3rem 1.5rem;
  color: var(--mid);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

.detail-list strong {
  display: block;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: .3rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.btn-p,
.btn-s {
  min-height: 44px;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: .05em;
  box-shadow: 0 8px 18px rgba(28, 35, 32, .07);
}

.btn-p {
  background: linear-gradient(135deg, #111, #343434);
  color: var(--white);
}

.btn-s {
  background: rgba(255, 255, 255, .36);
  color: var(--dark);
  border: 0.5px solid rgba(0, 0, 0, .12);
}

.btn-s:hover {
  background: rgba(255, 255, 255, .74);
  transform: translateY(-2px);
}

.dark-band {
  background:
    linear-gradient(135deg, #101211, #1e1f1d 55%, #2a2226),
    linear-gradient(90deg, rgba(220, 238, 231, .18), rgba(246, 219, 228, .16));
  color: var(--white);
  padding: 5rem;
}

.dark-band .eyebrow {
  color: rgba(255, 255, 255, .25);
}

.dark-band .section-title {
  color: var(--white);
}

.dark-band .card,
.dark-band .policy-card {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.dark-band .card-text,
.dark-band .policy-card p {
  color: rgba(255, 255, 255, .48);
}

.dark-band .set-price {
  color: var(--white);
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.form-grid label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  margin-top: .45rem;
  border: 0.5px solid var(--border);
  background: var(--white);
  min-height: 46px;
  padding: 12px 14px;
  font-family: var(--sans);
  color: var(--dark);
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background: linear-gradient(135deg, #111, #1c1c1a);
  color: rgba(255, 255, 255, .45);
  padding: 3rem 5rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: var(--stagger, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(255, 255, 255, .78);
  letter-spacing: .06em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .78);
}

@media (max-width: 1100px) {
  nav {
    padding: 0 2rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .page-hero,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 5rem 2rem 3rem;
    gap: 2rem;
  }

  .sec,
  .dark-band,
  .site-footer {
    padding: 3rem 2rem;
  }

  .product-showcase {
    padding-top: 4rem;
  }
}

@media (max-width: 820px) {
  nav {
    height: auto;
    min-height: 62px;
    padding: .7rem 1rem;
    align-items: flex-start;
    gap: .8rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: .25rem;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 11px;
  }

  main {
    padding-top: 104px;
  }

  .page-hero,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 320px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn-p,
  .btn-s {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
