:root {
  --ink: #1a1210;
  --espresso: #2d1714;
  --muted: #72564e;
  --paper: #fbf4ee;
  --porcelain: #fffaf6;
  --petal: #f2c7bf;
  --rose: #b85c66;
  --wine: #682a35;
  --clay: #c98269;
  --honey: #c69a61;
  --line: rgba(45, 23, 20, 0.13);
  --white: #fff;
  --max: 1240px;
  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --hero-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", Avenir, "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(45, 23, 20, 0.055) calc(50% - 1px), rgba(45, 23, 20, 0.055) 50%, transparent 50%),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(184, 92, 102, 0.42);
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 24px 5vw;
  color: var(--ink);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 16px;
  background: rgba(251, 244, 238, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(45, 23, 20, 0.08);
}

.brand {
  justify-self: start;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 34px);
  justify-content: center;
  color: rgba(26, 18, 16, 0.68);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.header-shop {
  justify-self: end;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: 132px 5vw 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 244, 238, 0.98) 0%, rgba(251, 244, 238, 0.9) 31%, rgba(251, 244, 238, 0.45) 51%, rgba(251, 244, 238, 0.08) 78%),
    linear-gradient(180deg, rgba(251, 244, 238, 0.22), rgba(45, 23, 20, 0.18)),
    url("assets/blush-cover.png") center right / cover no-repeat;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(45, 23, 20, 0.11);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(45, 23, 20, 0.2));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  display: grid;
  max-width: 9.6ch;
  font-family: var(--hero-display);
  font-size: clamp(4.8rem, 8.7vw, 10.2rem);
  font-weight: 600;
  line-height: 0.86;
}

h1 span:nth-child(2) {
  padding-left: 0.5em;
  color: var(--muted);
  font-size: 0.32em;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
}

h1 em {
  color: var(--wine);
  font-style: normal;
  font-weight: 700;
}

h2 {
  max-width: 10.5ch;
  font-size: clamp(3.25rem, 6vw, 7rem);
  line-height: 0.86;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.05;
}

.hero-copy > p,
.story-copy > p,
.benefit-copy > p,
.section-intro,
.ritual-copy p,
.closing-copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy > p {
  margin: 30px 0 0;
  font-weight: 500;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.button-primary {
  box-shadow: 0 18px 44px rgba(45, 23, 20, 0.14);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-text-link {
  margin-top: 0;
}

.hero-caption {
  position: absolute;
  right: 5vw;
  bottom: 96px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(330px, 32vw);
  padding: 18px 22px;
  color: var(--paper);
  background: var(--espresso);
}

.hero-caption span {
  color: rgba(251, 244, 238, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1;
}

.hero-notes {
  position: absolute;
  right: auto;
  bottom: 26px;
  left: 5vw;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  color: rgba(251, 244, 238, 0.82);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-notes p {
  margin: 0;
  min-height: 64px;
  padding: 12px 14px;
  background: rgba(45, 23, 20, 0.72);
  backdrop-filter: blur(10px);
}

.hero-notes span {
  display: block;
  margin-bottom: 5px;
  color: var(--petal);
  font-family: var(--hero-display);
  font-size: 1.22rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.promise-strip p {
  min-height: 118px;
  margin: 0;
  padding: 28px 5vw;
  background: var(--espresso);
  color: rgba(251, 244, 238, 0.82);
  font-size: 0.88rem;
}

.promise-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--petal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shade-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: 70px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 5vw 72px;
}

.shade-suite h2 {
  max-width: 10ch;
}

.shade-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.shade-list li {
  display: grid;
  min-height: 160px;
  align-content: end;
  gap: 24px;
  padding: 22px 18px;
  background: var(--porcelain);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shade-swatch {
  width: 100%;
  height: 78px;
  align-self: start;
  background: var(--petal);
}

.shade-swatch.lavender {
  background: linear-gradient(135deg, #b8a4d8, #f1e9fb);
}

.shade-swatch.pink {
  background: linear-gradient(135deg, #cf6f86, #ffd4dc);
}

.shade-swatch.berry {
  background: linear-gradient(135deg, #7a243e, #c75d7b);
}

.shade-swatch.peach {
  background: linear-gradient(135deg, #db8d6e, #ffd8bf);
}

.shade-swatch.colorless {
  background: linear-gradient(135deg, #f7eee5, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(45, 23, 20, 0.12);
}

.story,
.benefits,
.ritual {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
  padding: 126px 5vw;
}

.section-mark {
  position: absolute;
  top: 102px;
  left: 5vw;
  color: rgba(104, 42, 53, 0.24);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 12rem);
  font-style: italic;
  line-height: 0.8;
  pointer-events: none;
}

.story-image img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  box-shadow: 0 34px 90px rgba(45, 23, 20, 0.12);
}

.story-copy {
  position: relative;
  z-index: 1;
}

.story-copy p:not(.eyebrow) {
  margin-top: 30px;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 64px 84px;
  padding: 118px 5vw 124px;
}

.benefits::before {
  position: absolute;
  inset: 0 5vw auto;
  height: 1px;
  content: "";
  background: var(--line);
}

.benefits-heading h2 {
  max-width: 11ch;
}

.benefit-copy {
  align-self: end;
}

.benefit-copy > p {
  margin: 0;
}

.benefit-copy img {
  width: min(210px, 72%);
  margin-top: 34px;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  clip-path: ellipse(48% 50% at 50% 50%);
}

.benefit-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding-top: 20px;
}

.benefit-list article {
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 210px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.benefit-list span {
  color: var(--rose);
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.benefit-list h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ingredients {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 80px;
  align-items: start;
  padding: 118px 5vw 126px;
  color: var(--paper);
  background: var(--espresso);
}

.ingredients-heading,
.ingredient-flow {
  max-width: var(--max);
}

.ingredients .eyebrow {
  color: var(--petal);
}

.ingredients h2 {
  max-width: 9.8ch;
  color: var(--paper);
}

.section-intro {
  margin-top: 30px;
  color: rgba(251, 244, 238, 0.68);
}

.ingredient-image img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
}

.ingredient-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: rgba(251, 244, 238, 0.16);
}

.ingredient-flow article {
  min-height: 230px;
  padding: 28px 26px;
  background: var(--espresso);
}

.ingredient-flow span {
  display: block;
  color: var(--petal);
  font-family: var(--display);
  font-size: 1.72rem;
  line-height: 1;
}

.ingredient-flow p {
  color: rgba(251, 244, 238, 0.68);
}

.ritual {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(250px, 0.42fr) minmax(300px, 0.68fr);
  gap: 58px;
  align-items: center;
  padding: 126px 5vw 94px;
}

.ritual h2 {
  max-width: 9ch;
}

.ritual-image img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  box-shadow: 0 34px 90px rgba(45, 23, 20, 0.12);
}

.ritual-copy .button {
  margin-top: 18px;
}

.ritual-steps {
  display: grid;
  gap: 24px;
}

.ritual-steps article {
  padding-top: 20px;
  border-top: 1px solid rgba(184, 92, 102, 0.35);
}

.ritual-steps span {
  display: block;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ritual-steps p {
  margin: 8px 0 0;
}

.pro-tip {
  margin: 26px 0 0;
  color: var(--muted);
  font-style: italic;
}

.perfect-for {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 0.88fr) minmax(200px, 0.38fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 5vw 118px;
}

.perfect-for ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.perfect-for li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perfect-for li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--rose);
  transform: translateY(-50%);
}

.perfect-for img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.closing {
  position: relative;
  padding: 132px 5vw 140px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(45, 23, 20, 0.94), rgba(45, 23, 20, 0.72)),
    url("assets/blush-cover.png") center / cover no-repeat;
}

.closing::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 0, transparent 50%, rgba(251, 244, 238, 0.08) 50%, rgba(251, 244, 238, 0.08) calc(50% + 1px), transparent calc(50% + 1px));
  pointer-events: none;
}

.closing-copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.closing .eyebrow {
  color: var(--petal);
}

.closing h2 {
  max-width: 9.5ch;
  color: var(--paper);
}

.closing-copy > p {
  max-width: 540px;
  margin-top: 28px;
  color: rgba(251, 244, 238, 0.76);
}

.closing .text-link {
  color: var(--petal);
}

@media (max-width: 1080px) {
  .shade-suite,
  .story,
  .benefits,
  .ingredients,
  .ritual,
  .perfect-for {
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero {
    min-height: 88svh;
    background:
      linear-gradient(90deg, rgba(251, 244, 238, 0.98) 0%, rgba(251, 244, 238, 0.88) 45%, rgba(251, 244, 238, 0.2) 100%),
      linear-gradient(180deg, rgba(251, 244, 238, 0.08), rgba(45, 23, 20, 0.28)),
      url("assets/blush-cover.png") 62% center / cover no-repeat;
  }

  .hero-notes {
    max-width: none;
  }

  .hero-caption {
    width: min(300px, 40vw);
  }

  .shade-list,
  .benefit-list,
  .ingredient-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-flow {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  body {
    background: var(--paper);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
  }

  .site-header.is-scrolled {
    padding-block: 14px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    font-size: 0.62rem;
  }

  .header-shop {
    font-size: 0.64rem;
  }

  .hero {
    padding: 132px 20px 150px;
    min-height: 100svh;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(251, 244, 238, 0.98) 0%, rgba(251, 244, 238, 0.94) 36%, rgba(251, 244, 238, 0.48) 64%, rgba(45, 23, 20, 0.42) 100%),
      url("assets/blush-cover.png") 65% bottom / cover no-repeat;
  }

  h1 {
    font-size: 3.55rem;
    line-height: 0.9;
  }

  h2 {
    font-size: 3.25rem;
  }

  .hero-copy > p,
  .story-copy > p,
  .benefit-copy > p,
  .section-intro,
  .ritual-copy p,
  .closing-copy > p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .closing-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-caption {
    right: 20px;
    bottom: 82px;
    width: min(260px, calc(100% - 40px));
    padding: 12px 14px;
  }

  .hero-caption strong {
    font-size: 1.08rem;
  }

  .hero-notes,
  .promise-strip,
  .benefit-list,
  .ingredient-flow {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.54rem;
  }

  .hero-notes p {
    min-height: 54px;
    padding: 9px 8px;
  }

  .hero-notes span {
    margin-bottom: 2px;
    font-size: 0.94rem;
  }

  .promise-strip p {
    min-height: 0;
    padding: 22px 20px;
  }

  .story,
  .shade-suite,
  .benefits,
  .ingredients,
  .ritual,
  .perfect-for,
  .closing {
    padding: 78px 20px;
  }

  .section-mark {
    top: 48px;
    left: 20px;
    font-size: 5.2rem;
  }

  .benefit-list article,
  .ingredient-flow article {
    min-height: 0;
  }

  .perfect-for {
    gap: 24px;
  }

  .perfect-for img {
    max-width: 260px;
  }
}
