:root {
  --mist: #f7f1ed;
  --porcelain: #fbfaf8;
  --nude: #d9b9aa;
  --graphite: #262321;
  --smoke: #8e8782;
}

* {
  box-sizing: border-box;
}

html {
  text-rendering: geometricPrecision;
}

body {
  min-width: 0;
}

img {
  display: block;
}

::selection {
  background: rgba(217, 185, 170, 0.45);
}

:focus-visible {
  outline: 1px solid rgba(38, 35, 33, 0.7);
  outline-offset: 4px;
}

.eyebrow {
  color: rgba(38, 35, 33, 0.48);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.6;
  text-transform: uppercase;
}

.section-title {
  color: var(--graphite);
  font-size: clamp(2.15rem, 4vw, 4.7rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-copy {
  color: rgba(38, 35, 33, 0.66);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4.5vw, 4rem);
  margin: 0 auto;
  max-width: 90rem;
  min-height: min(46rem, calc(100vh - 5rem));
  padding: clamp(2.4rem, 5vw, 4.8rem) clamp(1.25rem, 4vw, 3rem);
}

.hero-copy {
  max-width: 38rem;
  z-index: 1;
}

.hero-copy h1 {
  color: var(--ink, #151311);
  font-size: clamp(3.4rem, 8vw, 7.9rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
  margin-top: 1rem;
  text-wrap: balance;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(38, 35, 33, 0.66);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1.35rem;
  max-width: 34rem;
}

.hero-media,
.poster-frame,
.product-still {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(247, 241, 237, 0.2)),
    var(--mist);
  border: 1px solid rgba(38, 35, 33, 0.06);
  overflow: hidden;
}

.hero-media {
  aspect-ratio: 16 / 11;
  min-height: 24rem;
  position: relative;
}

.hero-media img,
.poster-frame img,
.product-still img {
  height: auto;
  object-fit: contain;
  transition: transform 900ms ease;
  width: 100%;
}

.hero-composite {
  background:
    radial-gradient(circle at 78% 78%, rgba(217, 185, 170, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(247, 241, 237, 0.34)),
    var(--mist);
}

.hero-model {
  filter: saturate(0.96);
}

.hero-product-card {
  background: #f7f7f5;
  border: 1px solid rgba(38, 35, 33, 0.08);
  bottom: clamp(0.8rem, 2.4vw, 1.5rem);
  box-shadow: 0 18px 42px rgba(38, 35, 33, 0.14);
  left: clamp(0.85rem, 2.4vw, 1.6rem);
  max-width: min(38%, 18.5rem);
  padding: clamp(0.35rem, 0.9vw, 0.55rem);
  position: absolute;
  right: auto;
  z-index: 2;
}

.hero-product-card img {
  display: block;
  height: auto;
  mix-blend-mode: normal;
  opacity: 1;
  object-fit: contain;
  width: 100%;
}

.hero-media:hover img,
.poster-frame:hover img,
.product-still:hover img {
  transform: scale(1.015);
}

.brand-strip {
  border-block: 1px solid rgba(38, 35, 33, 0.06);
  color: rgba(38, 35, 33, 0.48);
  display: grid;
  font-size: 0.72rem;
  font-weight: 400;
  gap: 1rem;
  letter-spacing: 0.22em;
  padding: 1rem 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.poster-frame {
  aspect-ratio: 16 / 11;
}

.silhouette-card {
  align-content: center;
  background: rgba(251, 250, 248, 0.72);
  border: 1px solid rgba(38, 35, 33, 0.06);
  display: grid;
  min-height: 9.5rem;
  padding: clamp(1.25rem, 2.4vw, 1.95rem);
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    transform 280ms ease;
}

.silhouette-card:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(38, 35, 33, 0.12);
  transform: translateY(-2px);
}

.silhouette-card span {
  color: rgba(38, 35, 33, 0.42);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.silhouette-card h3 {
  color: var(--graphite);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-top: 1.15rem;
}

.silhouette-card p {
  color: rgba(38, 35, 33, 0.6);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 0.85rem;
}

.nav-link {
  position: relative;
  transition: color 260ms ease;
}

.nav-link::after {
  background: currentColor;
  bottom: -0.42rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  width: 100%;
}

.nav-link:hover {
  color: rgba(38, 35, 33, 0.95);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-minimal,
.button-primary,
.button-secondary {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 3rem;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    color 280ms ease,
    transform 280ms ease;
  white-space: nowrap;
}

.button-minimal {
  border: 1px solid rgba(38, 35, 33, 0.12);
  border-radius: 999px;
  color: rgba(38, 35, 33, 0.7);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 0.75rem 1.15rem;
  text-transform: uppercase;
}

.button-primary {
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: 999px;
  color: var(--porcelain);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  padding: 0.95rem 1.55rem;
  text-transform: uppercase;
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(38, 35, 33, 0.16);
  border-radius: 999px;
  color: rgba(38, 35, 33, 0.76);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  padding: 0.95rem 1.55rem;
  text-transform: uppercase;
}

.button-minimal:hover,
.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  background: #171513;
}

.button-secondary:hover,
.button-minimal:hover {
  border-color: rgba(38, 35, 33, 0.34);
  color: rgba(38, 35, 33, 0.95);
}

.stat-value {
  color: var(--graphite);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

.stat-label {
  color: rgba(38, 35, 33, 0.52);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.image-frame {
  border: 1px solid rgba(38, 35, 33, 0.06);
  overflow: hidden;
}

.quiet-card,
.feature-card,
.set-card,
.step-card {
  background: rgba(251, 250, 248, 0.72);
  border: 1px solid rgba(38, 35, 33, 0.06);
}

.quiet-card {
  padding: clamp(1.25rem, 2.3vw, 1.8rem);
}

.quiet-card h3,
.feature-card h3,
.set-card h3 {
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.quiet-card p,
.feature-card p,
.set-card p {
  color: rgba(38, 35, 33, 0.58);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 0.9rem;
}

.feature-card {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
}

.feature-card img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.product-still {
  aspect-ratio: 4 / 3;
}

.feature-card div {
  padding: 0 0.65rem 0.8rem;
}

.method-row {
  align-items: start;
  border-top: 1px solid rgba(38, 35, 33, 0.1);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 3rem 1fr;
  padding-top: 1.05rem;
}

.method-row span,
.step-card span,
.set-label {
  color: rgba(38, 35, 33, 0.42);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.method-row p {
  color: rgba(38, 35, 33, 0.72);
  font-weight: 300;
  line-height: 1.7;
}

.shade-chip {
  align-items: center;
  border: 1px solid rgba(38, 35, 33, 0.08);
  border-radius: 999px;
  color: rgba(38, 35, 33, 0.68);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 300;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
}

.shade-chip::before {
  background: var(--shade);
  border: 1px solid rgba(38, 35, 33, 0.08);
  border-radius: 999px;
  content: "";
  height: 0.9rem;
  width: 0.9rem;
}

.set-card {
  padding: clamp(1.25rem, 2.4vw, 1.95rem);
}

.step-card {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 3.5rem 1fr;
  padding: clamp(1.1rem, 2.3vw, 1.65rem);
}

.step-card p {
  color: rgba(38, 35, 33, 0.66);
  font-weight: 300;
  line-height: 1.75;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 300;
  list-style: none;
  padding: 1.25rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 300;
  transition: transform 240ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: rgba(38, 35, 33, 0.58);
  font-weight: 300;
  line-height: 1.75;
  padding-bottom: 1.15rem;
}

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

@media (min-width: 900px) {
  .hero-section {
    grid-template-columns: 0.88fr 1.12fr;
  }

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

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .section-title {
    letter-spacing: -0.035em;
  }

  main > section:not(.hero-section):not(.brand-strip) {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .hero-section {
    gap: 1.35rem;
    min-height: auto;
    padding-bottom: 1.75rem;
    padding-top: 1.35rem;
    padding-inline: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3rem);
    letter-spacing: -0.04em;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 1rem;
  }

  .hero-copy .mt-8 {
    margin-top: 1.4rem !important;
  }

  .hero-copy dl {
    gap: 0.6rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
  }

  .button-primary,
  .button-secondary,
  .button-minimal {
    min-height: 2.65rem;
  }

  .hero-media {
    aspect-ratio: auto;
    display: grid;
    gap: 0.85rem;
    min-height: 0;
    overflow: visible;
  }

  .hero-model {
    aspect-ratio: 4 / 5;
    background: var(--mist);
    border: 1px solid rgba(38, 35, 33, 0.06);
  }

  .hero-product-card {
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 0.45rem;
    position: static;
    right: auto;
  }

  .poster-frame,
  .product-still {
    aspect-ratio: 4 / 5;
  }

  .brand-strip {
    gap: 0.65rem;
    padding-inline: 1rem;
    padding-block: 0.8rem;
  }

  main > section:not(.hero-section):not(.brand-strip) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .silhouette-card {
    min-height: auto;
  }

  .hero-media img,
  .poster-frame img,
  .product-still img {
    object-fit: contain !important;
  }

  .feature-card img {
    aspect-ratio: auto;
    object-fit: contain !important;
  }
}
