:root {
  --ink: #2b2522;
  --muted: #6e625c;
  --line: #eadfd8;
  --paper: #fffaf6;
  --soft: #f7ece6;
  --rose: #d96f77;
  --sage: #8b9c7a;
  --coral: #e87c68;
  --ivory: #d7c6aa;
  --plum: #72506e;
  --amber: #c4874e;
  --shadow: 0 22px 60px rgba(72, 52, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body:not(.is-ready) {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff6ef;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__panel {
  width: min(420px, 100%);
  text-align: center;
}

.loader__mark,
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.loader__bar {
  height: 4px;
  margin: 24px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaded7;
}

.loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--sage), var(--amber));
  transform: translateX(-100%);
  animation: loadbar 5s linear forwards;
}

.loader p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@keyframes loadbar {
  to {
    transform: translateX(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(234, 223, 216, 0.74);
  background: rgba(255, 250, 246, 0.9);
  backdrop-filter: blur(18px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.footer__links a,
.section__header a,
.back-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer__links a:hover,
.section__header a:hover,
.back-link:hover {
  color: var(--rose);
}

.header-action {
  justify-self: end;
  min-width: 116px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f4e3dc;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.78) 38%, rgba(255, 250, 246, 0.12) 72%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  align-self: center;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 64px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: clamp(48px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  margin: 0;
  font-size: 20px;
}

.hero__copy {
  width: min(520px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: #fffdfb;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
}

.trust-strip span,
.journal-grid p,
.care-list p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.split-section,
.feature-band,
.product-detail {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section--tight {
  padding-top: clamp(46px, 6vw, 76px);
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section__header a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  box-shadow: 0 12px 36px rgba(72, 52, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(217, 111, 119, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card__visual {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background: #f7ede7;
}

.product-card__visual::before,
.detail-media::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  content: "";
}

.product-card__glow,
.detail-media__halo {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(8px);
}

.product-card__shape,
.detail-media__shape {
  position: relative;
  display: block;
  width: 44%;
  max-width: 160px;
  min-width: 108px;
  aspect-ratio: 0.42;
  border-radius: 999px;
  box-shadow: inset 16px 18px 28px rgba(255, 255, 255, 0.36), inset -16px -18px 28px rgba(87, 58, 50, 0.12), 0 26px 60px rgba(73, 52, 44, 0.2);
  transform: rotate(23deg);
}

.product-card__shape::after,
.detail-media__shape::after {
  position: absolute;
  right: 16%;
  bottom: 10%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.product-card__visual--rose,
.detail-media--rose {
  background: radial-gradient(circle at 32% 20%, #fff, #f7ddd8 48%, #e9b7b4);
}

.product-card__visual--sage,
.detail-media--sage {
  background: radial-gradient(circle at 32% 20%, #fff, #e4ead8 48%, #b8c1a4);
}

.product-card__visual--coral,
.detail-media--coral {
  background: radial-gradient(circle at 32% 20%, #fff, #f8ddd2 48%, #efae9c);
}

.product-card__visual--ivory,
.detail-media--ivory {
  background: radial-gradient(circle at 32% 20%, #fff, #f5eddd 48%, #d9c8ab);
}

.product-card__visual--plum,
.detail-media--plum {
  background: radial-gradient(circle at 32% 20%, #fff, #ead9e4 48%, #b192aa);
}

.product-card__visual--amber,
.detail-media--amber {
  background: radial-gradient(circle at 32% 20%, #fff, #f4dfbb 48%, #d7a069);
}

.product-card__visual--rose .product-card__shape,
.detail-media--rose .detail-media__shape { background: linear-gradient(145deg, #f8c7c5, #cf6f75); }
.product-card__visual--sage .product-card__shape,
.detail-media--sage .detail-media__shape { background: linear-gradient(145deg, #d6dfc4, #8ea078); }
.product-card__visual--coral .product-card__shape,
.detail-media--coral .detail-media__shape { background: linear-gradient(145deg, #ffd1bf, #e36e5f); }
.product-card__visual--ivory .product-card__shape,
.detail-media--ivory .detail-media__shape { background: linear-gradient(145deg, #fff7ea, #d8c8a9); }
.product-card__visual--plum .product-card__shape,
.detail-media--plum .detail-media__shape { background: linear-gradient(145deg, #dec4d4, #6f4b67); }
.product-card__visual--amber .product-card__shape,
.detail-media--amber .detail-media__shape { background: linear-gradient(145deg, #f6d69b, #c8874c); }

.product-card__body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f7ece6;
  color: #9e574f;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.product-card__meta strong {
  color: var(--ink);
  font-size: 18px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
  background: #2b2522;
  color: #fff8f2;
}

.feature-band .eyebrow {
  color: #f2aca7;
}

.feature-band p:last-child {
  margin: 0;
  color: #dbcfc7;
  font-size: 18px;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(28px, 6vw, 86px);
}

.editorial p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.care-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.care-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
  background: #fffdfb;
}

.care-list span {
  color: var(--rose);
  font-weight: 900;
}

.care-list p,
.journal-grid p {
  margin: 8px 0 0;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.journal-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
}

.journal-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fffdfb;
}

.footer p {
  max-width: 360px;
  margin: 10px 0 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  min-height: calc(100svh - 74px);
}

.detail-media {
  position: relative;
  display: grid;
  min-height: min(620px, 70svh);
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-media__shape {
  width: min(34%, 190px);
  max-width: none;
  min-width: 136px;
  transform: rotate(19deg);
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.detail-copy h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.detail-copy__summary {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 28px;
}

.detail-price strong {
  font-size: 30px;
}

.detail-price span {
  color: var(--muted);
  font-size: 14px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  font-weight: 700;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-grid div {
  padding: 16px;
  background: #fffdfb;
}

.spec-grid span,
.spec-grid strong {
  display: block;
}

.spec-grid span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-grid--compact .product-card {
  min-height: 430px;
}

.product-card--compact .product-card__visual {
  min-height: 230px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.72) 52%, rgba(255, 250, 246, 0.18) 100%);
  }

  .hero__content {
    align-self: start;
    padding-top: 64px;
  }

  .trust-strip,
  .product-grid,
  .journal-grid,
  .feature-band,
  .split-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .section__header {
    align-items: start;
    flex-direction: column;
  }

  .detail-media {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 26px;
  }

  .header-action {
    min-width: 104px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 710px;
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding: 44px 0 96px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero__copy,
  .feature-band p:last-child,
  .detail-copy__summary {
    font-size: 16px;
  }

  .hero__actions,
  .detail-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip div {
    min-height: auto;
  }

  .product-card {
    min-height: 480px;
  }

  .product-card__visual {
    min-height: 260px;
  }

  .care-list article,
  .feature-list,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-content: start;
  }
}
