@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&display=swap");

:root {
  --ink: #231b21;
  --soft-ink: #64535d;
  --paper: #fff9f8;
  --petal: #f5e2e8;
  --rose: #c65f79;
  --berry: #84263e;
  --coral: #ed8b68;
  --sage: #718a78;
  --gold: #c2933d;
  --charcoal: #101113;
  --line: rgba(35, 27, 33, 0.12);
  --shadow: 0 20px 60px rgba(74, 32, 48, 0.16);
  --brand-font: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", Baskerville, "Times New Roman", serif;
  --ruqaa-font: "Aref Ruqaa", "Aref Ruqaa Ink", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--brand-font);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 249, 248, 0.94), rgba(255, 255, 255, 0.98)),
    var(--paper);
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(35, 27, 33, 0.08);
  border-radius: 8px;
  background: rgba(255, 249, 248, 0.88);
  box-shadow: 0 12px 40px rgba(74, 32, 48, 0.08);
  backdrop-filter: blur(18px);
}

.brand-link,
.header-action,
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-link {
  min-width: 0;
  font-weight: 600;
  color: var(--berry);
}

.brand-wordmark {
  width: 154px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(132, 38, 62, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--berry);
  background: rgba(198, 95, 121, 0.1);
}

.header-action {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
}

.header-action svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--berry);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100svh - 210px);
  margin: 0 auto;
  padding: 48px 0 24px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 7.2vw, 6.6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-line {
  margin: 22px 0 0;
  color: var(--rose);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
}

.button.primary {
  color: #fff;
  background: var(--berry);
  box-shadow: 0 12px 30px rgba(132, 38, 62, 0.22);
}

.button.secondary {
  color: var(--berry);
  border-color: rgba(132, 38, 62, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.button.dark {
  background: var(--charcoal);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-stats dt {
  color: var(--charcoal);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--soft-ink);
  font-size: 0.86rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(35, 27, 33, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(16, 17, 19, 0.97), rgba(39, 31, 37, 0.96)),
    var(--charcoal);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 82%);
}

.brand-medallion {
  position: relative;
  z-index: 2;
  width: min(64%, 320px);
  margin: 10px auto 0;
  aspect-ratio: 895 / 971;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--rose);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.brand-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.product-stage {
  position: relative;
  z-index: 3;
  height: 132px;
  margin-top: 14px;
}

.product {
  position: absolute;
  bottom: 6px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.34);
}

.product::before {
  content: "";
  position: absolute;
  inset: 8px 12px auto;
  height: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.gloss-a,
.gloss-b,
.stain {
  width: 44px;
  height: 122px;
  border-radius: 99px 99px 20px 20px;
  background: linear-gradient(90deg, #3b0d17, #b72c52 56%, #f2a7b4);
}

.gloss-a {
  left: 11%;
  transform: rotate(-11deg);
}

.gloss-b {
  left: 26%;
  bottom: 18px;
  height: 106px;
  background: linear-gradient(90deg, #692437, #ef8b68 58%, #ffd4bd);
  transform: rotate(8deg);
}

.stain {
  right: 12%;
  height: 112px;
  background: linear-gradient(90deg, #1f1115, #6b1f35 55%, #be5c73);
  transform: rotate(12deg);
}

.blush {
  left: 45%;
  bottom: 14px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 42%, #f8b39d 0 30%, #d86f78 31% 56%, #84263e 57%),
    var(--rose);
}

.brow {
  right: 28%;
  bottom: 34px;
  width: 28px;
  height: 106px;
  border-radius: 18px;
  background: linear-gradient(90deg, #252b26, #718a78 52%, #d7caa9);
  transform: rotate(-18deg);
}

.highlight-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 74px;
  margin-top: 6px;
  border-radius: 8px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.92;
}

.product-collage {
  background:
    linear-gradient(140deg, rgba(44, 19, 29, 0.98), rgba(132, 38, 62, 0.78)),
    var(--charcoal);
}

.product-collage img {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(16, 17, 19, 0.36);
}

.collage-main {
  left: 22px;
  bottom: 22px;
  width: 56%;
  height: 58%;
  object-position: center bottom;
}

.collage-founder {
  top: 24px;
  right: 24px;
  width: 42%;
  height: 56%;
  object-position: 64% center;
}

.collage-packaging {
  right: 42px;
  bottom: 34px;
  width: 42%;
  height: 28%;
  object-position: center 48%;
}

.collage-note {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  max-width: 240px;
  color: #fff;
}

.collage-note span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.collage-note strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.brand-runway {
  width: 100%;
  margin: 12px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(35, 27, 33, 0.08);
  border-bottom: 1px solid rgba(35, 27, 33, 0.08);
}

.motion-line {
  position: relative;
  overflow: hidden;
  background: #c4848e;
}

.motion-track {
  display: flex;
  width: max-content;
  animation: runwayScroll 24s linear infinite;
  will-change: transform;
}

.motion-track span,
.motion-track i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: #fff;
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-track span {
  padding: 0 42px;
}

.motion-track i {
  opacity: 0.9;
}

@keyframes runwayScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2,
.proof-copy h2,
.order-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.proof-copy p {
  max-width: 420px;
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.7;
}

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

.product-feature,
.product-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(74, 32, 48, 0.08);
}

.product-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(132, 38, 62, 0.96), rgba(198, 95, 121, 0.88)),
    var(--berry);
  color: #fff;
}

.feature-media {
  position: relative;
  min-height: 560px;
}

.feature-media img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(16, 17, 19, 0.32);
}

.feature-media img:first-child {
  left: 28px;
  bottom: 28px;
  width: 58%;
  height: 78%;
  object-position: center bottom;
}

.feature-media img:last-child {
  right: 30px;
  top: 30px;
  width: 46%;
  height: 66%;
  object-position: center;
}

.product-copy {
  align-self: end;
  padding: 42px;
}

.product-copy span,
.product-tile span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.product-copy h3,
.product-tile h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.94;
}

.product-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.7;
}

.shade-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.shade-pills li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-size: 0.92rem;
}

.product-tile {
  min-height: 430px;
  background: #fff;
}

.product-tile[id] {
  scroll-margin-top: 96px;
}

.product-tile > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: center;
}

.product-details {
  padding: 20px;
}

.product-tile span {
  color: var(--berry);
}

.product-tile h3 {
  color: var(--ink);
  font-size: 1.7rem;
}

.product-tile p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.62;
}

.product-tile .shade-pills {
  margin-top: 18px;
}

.product-tile .shade-pills li {
  border-color: rgba(35, 27, 33, 0.12);
  background: rgba(245, 226, 232, 0.56);
  color: var(--ink);
}

.dark-tile {
  background: var(--charcoal);
}

.dark-tile h3,
.dark-tile p {
  color: #fff;
}

.dark-tile span {
  color: rgba(255, 255, 255, 0.72);
}

.lip-stain-tile,
.brow-gel-tile {
  grid-column: span 2;
}

.product-duo,
.product-gallery {
  display: grid;
  gap: 6px;
  padding: 6px;
}

.product-duo {
  grid-template-columns: 0.9fr 1.1fr;
  background: #08090b;
}

.product-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: linear-gradient(135deg, rgba(245, 226, 232, 0.88), rgba(255, 255, 255, 0.96));
}

.product-duo img,
.product-gallery img {
  width: 100%;
  height: 305px;
  border-radius: 6px;
  object-fit: cover;
}

.product-duo img:first-child {
  object-position: 54% center;
}

.product-duo img:last-child {
  object-position: center 42%;
}

.product-gallery .wide-shot {
  grid-column: 1 / -1;
  height: 245px;
  object-position: center;
}

.product-gallery img:not(.wide-shot) {
  height: 250px;
}

.lip-stain-layout {
  display: grid;
  gap: 6px;
  padding: 6px;
  background: #08090b;
}

.lip-stain-product-shot,
.lip-stain-method-shot {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #08090b;
}

.product-tile .lip-stain-product-shot img,
.product-tile .lip-stain-method-shot img {
  width: 100%;
  border-radius: 6px;
  background: #08090b;
  object-fit: contain;
}

.product-tile .lip-stain-product-shot img {
  height: 360px;
  object-position: center;
}

.product-tile .lip-stain-method-shot img {
  height: 620px;
  object-position: center;
}

.product-carousel {
  position: relative;
  height: 805px;
  padding: 6px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 226, 232, 0.88), rgba(255, 255, 255, 0.96));
}

.product-tile .product-carousel img {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 6px;
  object-fit: cover;
  opacity: 0;
  animation: productPhotoFade 12s infinite;
}

.brow-carousel img:nth-child(1) {
  object-position: center;
}

.brow-carousel img:nth-child(2) {
  object-position: center;
  animation-delay: 4s;
}

.brow-carousel img:nth-child(3) {
  object-position: center;
  animation-delay: 8s;
}

@keyframes productPhotoFade {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.shade-board {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.shade-board h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.shade-board p {
  max-width: 360px;
  color: var(--soft-ink);
  line-height: 1.7;
}

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

.shade-group {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(74, 32, 48, 0.06);
}

.shade-group h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 600;
}

.shade-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shade-group li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
}

.shade-group li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(35, 27, 33, 0.16);
  border-radius: 50%;
  background: var(--swatch);
}

.reviews-section {
  width: min(1180px, calc(100% - 32px));
}

.reviews-shell {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 17, 19, 0.98), rgba(54, 23, 35, 0.96)),
    var(--charcoal);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.72;
}

.reviews-head,
.review-wall {
  position: relative;
  z-index: 1;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.reviews-head .section-kicker {
  color: #f3bcc9;
}

.reviews-head h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.reviews-head p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.review-shot {
  --rotate: 0deg;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  transform: rotate(var(--rotate));
}

.review-shot img {
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  background: #080a0e;
}

.review-shot figcaption {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.rotate-left {
  --rotate: -1.3deg;
}

.rotate-right {
  --rotate: 1.4deg;
}

.rotate-soft {
  --rotate: 0.55deg;
}

.tall-shot {
  margin-top: -68px;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.founder-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.96;
}

.founder-copy p {
  color: var(--soft-ink);
  line-height: 1.75;
}

.founder-media {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.76fr);
  gap: 14px;
  align-items: stretch;
}

.founder-media img,
.founder-media video {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.founder-media img {
  object-position: 62% center;
}

.founder-media video {
  min-height: 620px;
  object-position: center;
}

.order-photo-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.1fr 0.86fr;
  gap: 14px;
}

.order-photo-grid img {
  width: 100%;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(74, 32, 48, 0.08);
}

.order-photo-grid img:nth-child(2) {
  height: 600px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.proof-copy p {
  margin-top: 20px;
}

.proof-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.proof-list span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 0.76rem;
}

.feed-preview {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feed-preview img {
  width: 100%;
  height: 360px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.feed-preview figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.order-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 72px;
  padding: 38px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(132, 38, 62, 0.94), rgba(198, 95, 121, 0.91)),
    var(--berry);
  box-shadow: var(--shadow);
}

.order-band .eyebrow,
.order-band h2 {
  color: #fff;
}

.order-band h2 {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--soft-ink);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.arabic {
  font-family: var(--ruqaa-font);
  color: var(--berry);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.4;
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-action {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.is-open .site-nav {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .site-header.is-open .header-action {
    justify-content: center;
  }

  .hero,
  .proof-section,
  .founder-section,
  .shade-board {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .product-feature {
    grid-template-columns: 1fr;
  }

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

  .founder-media,
  .order-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-photo-grid img,
  .order-photo-grid img:nth-child(2) {
    height: 430px;
  }

  .product-carousel {
    height: 700px;
  }

  .section-heading,
  .reviews-head,
  .order-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-wall {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .span-3,
  .span-4,
  .span-5 {
    grid-column: span 3;
  }

  .tall-shot {
    margin-top: 0;
  }
}

@media (max-width: 580px) {
  .site-header,
  .hero,
  .section,
  .order-band,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .brand-wordmark {
    width: 132px;
    height: 46px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .button {
    justify-content: center;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
  }

  .hero-line,
  .hero-text {
    margin-top: 14px;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 0.98rem;
  }

  .hero-stats dd {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .brand-runway {
    margin-top: 10px;
  }

  .motion-track {
    animation-duration: 18s;
  }

  .motion-track span,
  .motion-track i {
    min-height: 48px;
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .motion-track span {
    padding: 0 24px;
  }

  .product-showcase,
  .shade-matrix,
  .founder-media,
  .order-photo-grid,
  .review-wall {
    grid-template-columns: 1fr;
  }

  .reviews-shell {
    padding: 24px 14px;
  }

  .review-shot,
  .span-3,
  .span-4,
  .span-5 {
    grid-column: 1 / -1;
  }

  .review-shot {
    transform: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 14px;
  }

  .product-collage {
    min-height: 470px;
  }

  .collage-note {
    top: 18px;
    left: 18px;
    max-width: 190px;
  }

  .collage-main {
    left: 14px;
    bottom: 14px;
    width: 58%;
    height: 52%;
  }

  .collage-founder {
    top: 18px;
    right: 14px;
    width: 43%;
    height: 50%;
  }

  .collage-packaging {
    right: 18px;
    bottom: 18px;
    width: 44%;
    height: 25%;
  }

  .brand-medallion {
    width: 180px;
    margin-top: 0;
  }

  .product-stage {
    display: none;
  }

  .highlight-strip {
    height: 58px;
    margin-top: 12px;
  }

  .feature-media {
    min-height: 390px;
  }

  .feature-media img:first-child {
    left: 14px;
    bottom: 14px;
    width: 62%;
    height: 72%;
  }

  .feature-media img:last-child {
    right: 14px;
    top: 14px;
    width: 48%;
    height: 60%;
  }

  .product-copy {
    padding: 26px 20px 28px;
  }

  .product-tile {
    min-height: 0;
  }

  .product-tile img {
    height: 300px;
  }

  .lip-stain-tile,
  .brow-gel-tile {
    grid-column: 1 / -1;
  }

  .product-tile .lip-stain-product-shot img {
    height: 330px;
  }

  .product-tile .lip-stain-method-shot img {
    height: 560px;
  }

  .product-carousel {
    height: 620px;
  }

  .product-tile .product-carousel img {
    height: calc(100% - 12px);
  }

  .founder-media img,
  .founder-media video {
    min-height: 430px;
  }

  .order-photo-grid img,
  .order-photo-grid img:nth-child(2) {
    height: 430px;
  }

  .feed-preview img {
    height: 260px;
  }

  .order-band {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .motion-track {
    animation: none;
  }

  .product-tile .product-carousel img {
    animation: none;
    opacity: 0;
  }

  .product-tile .product-carousel img:first-child {
    opacity: 1;
  }
}
