:root {
  --ink: #261813;
  --muted: #70584c;
  --paper: #fffaf4;
  --cream: #f6eadc;
  --blush: #e7a6ad;
  --rose: #9d4f57;
  --gold: #bd8b3e;
  --sage: #70784f;
  --cocoa: #4b2a22;
  --plum: #503247;
  --line: rgba(38, 24, 19, 0.14);
  --shadow: 0 26px 80px rgba(75, 42, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(38, 24, 19, 0.045) 1px, transparent 1px) 0 0 / 74px 74px,
    radial-gradient(circle at 78% 16%, rgba(231, 166, 173, 0.28), transparent 29rem),
    radial-gradient(circle at 8% 68%, rgba(112, 120, 79, 0.18), transparent 25rem),
    linear-gradient(135deg, #fff8ef 0%, #f2dccd 48%, #f8efe5 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(38, 24, 19, 0.12) 0.6px, transparent 0.6px);
  background-size: 13px 13px;
  opacity: 0.32;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(189, 139, 62, 0.52);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 12px 40px rgba(75, 42, 34, 0.07);
}

.brand {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--cocoa);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(30px, 6vw, 88px);
  min-height: calc(100vh - 84px);
  padding: clamp(48px, 7vw, 104px) clamp(18px, 6vw, 84px) clamp(42px, 7vw, 84px);
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  position: absolute;
  top: -42px;
  left: -24px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(157, 79, 87, 0.2);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--cocoa);
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.hero-text,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.set-card:hover,
.platform-pill:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.secondary {
  color: var(--cocoa);
  background: rgba(255, 250, 244, 0.58);
}

.button:active,
.platform-pill:active,
.set-card:active,
.product-card:active {
  transform: translateY(-1px) scale(0.99);
}

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

.glow-card {
  position: relative;
  width: min(100%, 520px);
  height: 100%;
  min-height: 620px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(38, 24, 19, 0.18);
  border-radius: 260px 260px 26px 26px;
  background:
    radial-gradient(circle at 48% 18%, rgba(255, 250, 244, 0.88) 0 9%, transparent 10%),
    linear-gradient(145deg, #7c3d45 0%, #e5a1a9 34%, #f7dfc8 54%, #b98d42 100%);
  box-shadow: var(--shadow);
}

.shine-line {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 250, 244, 0.52);
  border-radius: inherit;
}

.product-tower,
.compact {
  position: absolute;
  display: block;
  box-shadow: 0 24px 50px rgba(38, 24, 19, 0.18);
}

.product-tower {
  bottom: 18%;
  width: 17%;
  border-radius: 22px 22px 10px 10px;
  background: linear-gradient(180deg, var(--paper) 0 22%, var(--rose) 23% 100%);
}

.tower-one {
  left: 22%;
  height: 46%;
  transform: rotate(-7deg);
}

.tower-two {
  left: 42%;
  height: 58%;
  background: linear-gradient(180deg, var(--paper) 0 18%, var(--gold) 19% 100%);
}

.tower-three {
  right: 22%;
  height: 39%;
  transform: rotate(6deg);
  background: linear-gradient(180deg, var(--paper) 0 24%, var(--sage) 25% 100%);
}

.compact {
  right: 17%;
  bottom: 11%;
  width: 34%;
  aspect-ratio: 1.9;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ef, #f1b9bd 52%, #8f454d);
}

.compact-two {
  right: auto;
  left: 14%;
  bottom: 9%;
  width: 28%;
  background: linear-gradient(135deg, #fff7ef, #c1984d);
}

.wand {
  position: absolute;
  top: 27%;
  right: 17%;
  display: block;
  width: 38%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cocoa), #fff7ef 18% 28%, var(--rose) 29% 100%);
  box-shadow: 0 18px 32px rgba(38, 24, 19, 0.18);
  transform: rotate(-24deg);
}

.wand::after {
  position: absolute;
  right: -18px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffaf4 0 22%, var(--gold) 23% 100%);
  content: "";
  transform: translateY(-50%);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 26%;
  max-width: 246px;
  padding: 18px;
  color: var(--paper);
  background: rgba(38, 24, 19, 0.88);
}

.hero-note span {
  display: block;
  margin-bottom: 7px;
  color: #f1b9bd;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section,
.platform-section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 84px);
}

.section-heading {
  margin-bottom: 34px;
}

.compact-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.9rem, 7vw, 7rem);
}

.platform-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.46);
}

.routine-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.routine-rail article {
  min-height: 188px;
  border: 1px solid var(--line);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.82), rgba(255, 250, 244, 0.52)),
    radial-gradient(circle at 84% 12%, rgba(157, 79, 87, 0.18), transparent 8rem);
  box-shadow: 0 12px 40px rgba(75, 42, 34, 0.07);
}

.routine-rail span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(157, 79, 87, 0.42);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.routine-rail strong {
  display: block;
  margin: 24px 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
}

.routine-rail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.platform-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 250, 244, 0.7);
  color: var(--cocoa);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.platform-pill.featured {
  color: var(--paper);
  background: var(--rose);
}

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

.set-card,
.proof-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.62);
  box-shadow: 0 12px 40px rgba(75, 42, 34, 0.08);
}

.set-card h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.set-card p,
.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.picks {
  background:
    linear-gradient(90deg, rgba(112, 120, 79, 0.14), transparent),
    rgba(255, 250, 244, 0.4);
}

.set-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.set-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  transition: transform 160ms ease, background 160ms ease;
}

.set-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(157, 79, 87, 0.22);
  border-radius: 50%;
  content: "";
}

.set-card.signature {
  grid-column: span 3;
  min-height: 292px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--cocoa), #8e4a52 52%, var(--gold));
}

.set-card:not(.signature) {
  grid-column: span 2;
}

.set-card.signature p {
  color: rgba(255, 250, 244, 0.82);
}

.uk-picks {
  margin-top: clamp(42px, 7vw, 84px);
}

.trending-products {
  margin-top: clamp(46px, 7vw, 86px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.trending-products .compact-heading {
  align-items: start;
}

.trending-products h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
}

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(38, 24, 19, 0.16);
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 12px 38px rgba(75, 42, 34, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-product-card {
  grid-template-rows: 1fr;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.2), rgba(255, 250, 244, 0.82)),
    radial-gradient(circle at 74% 18%, rgba(231, 166, 173, 0.42), transparent 11rem),
    linear-gradient(145deg, rgba(157, 79, 87, 0.22), rgba(189, 139, 62, 0.18));
}

.category-product-card .product-info {
  align-content: end;
  min-height: 220px;
}

.category-product-card .product-info h3 {
  max-width: 18rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(75, 42, 34, 0.13);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f7e7dd;
}

.editorial-product {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 250, 244, 0.88), transparent 7rem),
    linear-gradient(145deg, #f4d8cf, #c8757b 52%, #7e4547);
}

.editorial-product::before,
.editorial-product::after {
  position: absolute;
  content: "";
  box-shadow: 0 18px 36px rgba(38, 24, 19, 0.16);
}

.editorial-product::before {
  left: 30%;
  bottom: 17%;
  width: 23%;
  height: 54%;
  border-radius: 18px 18px 9px 9px;
  background: linear-gradient(180deg, var(--paper) 0 24%, var(--rose) 25% 100%);
  transform: rotate(-7deg);
}

.editorial-product::after {
  right: 24%;
  bottom: 20%;
  width: 29%;
  aspect-ratio: 1.4;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ef, #e7a6ad 55%, #8f454d);
}

.editorial-product.roller {
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 250, 244, 0.8), transparent 7rem),
    linear-gradient(145deg, #dce7dd, #91a381 52%, #503247);
}

.editorial-product.roller::before {
  left: 20%;
  bottom: 43%;
  width: 58%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fffaf4, #b8c8b0);
  transform: rotate(-23deg);
}

.editorial-product.roller::after {
  right: 24%;
  bottom: 18%;
  width: 11%;
  height: 44%;
  border-radius: 999px;
  background: var(--cocoa);
  transform: rotate(-23deg);
}

.editorial-product.serum-card {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 250, 244, 0.84), transparent 8rem),
    linear-gradient(145deg, #f6eadc, #e7a6ad 50%, #bd8b3e);
}

.editorial-product.sponge::before {
  left: 20%;
  bottom: 18%;
  width: 29%;
  height: 36%;
  border-radius: 56% 44% 48% 52%;
  background: #b85f68;
}

.editorial-product.sponge::after {
  right: 22%;
  bottom: 19%;
  width: 32%;
  aspect-ratio: 0.82;
  border-radius: 52% 48% 45% 55%;
  background: #e7a6ad;
}

.editorial-product.hair-oil {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 250, 244, 0.72), transparent 8rem),
    linear-gradient(145deg, #4b2a22, #9d4f57 54%, #bd8b3e);
}

.product-info {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.2;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.uk-picks .compact-heading {
  margin-bottom: 22px;
}

.uk-storefront-block {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 132px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(38, 24, 19, 0.16);
  padding: clamp(18px, 3vw, 28px);
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 250, 244, 0.26), transparent 12rem),
    linear-gradient(135deg, var(--cocoa), #8e4a52 52%, var(--gold));
  box-shadow: 0 18px 48px rgba(75, 42, 34, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.uk-storefront-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(75, 42, 34, 0.18);
}

.uk-storefront-flag {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.38);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.16);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.uk-storefront-block strong,
.uk-storefront-block small {
  display: block;
}

.uk-storefront-block strong {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.uk-storefront-block small {
  margin-top: 8px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.uk-block {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.uk-block h3 {
  position: sticky;
  top: 92px;
  align-self: start;
  margin: 0;
  color: var(--cocoa);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

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

.item {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(38, 24, 19, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.24), rgba(255, 250, 244, 0.7)),
    #f7e7dd;
  box-shadow: 0 12px 38px rgba(75, 42, 34, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(75, 42, 34, 0.13);
}

.item img,
.product-image {
  display: block;
  width: 100%;
  height: 176px;
}

.item img {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  object-fit: cover;
}

.product-image {
  position: relative;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 250, 244, 0.82) 0 13%, transparent 14%),
    linear-gradient(145deg, rgba(157, 79, 87, 0.92), rgba(231, 166, 173, 0.88) 48%, rgba(189, 139, 62, 0.72));
}

.product-image::before,
.product-image::after {
  position: absolute;
  content: "";
  box-shadow: 0 16px 32px rgba(38, 24, 19, 0.18);
}

.product-image::before {
  left: 28%;
  bottom: 20px;
  width: 21%;
  height: 92px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, var(--paper) 0 25%, var(--rose) 26% 100%);
  transform: rotate(-6deg);
}

.product-image::after {
  right: 27%;
  bottom: 22px;
  width: 26%;
  aspect-ratio: 1.35;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ef, #ddb0aa 58%, #8f454d);
  transform: rotate(8deg);
}

.product-image.palette,
.product-image.autumn {
  background:
    repeating-linear-gradient(90deg, rgba(38, 24, 19, 0.14) 0 1px, transparent 1px 34px),
    linear-gradient(145deg, #7f4540, #df9286 47%, #bd8b3e);
}

.product-image.brushes,
.product-image.lash,
.product-image.brow {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 250, 244, 0.7), transparent 7rem),
    linear-gradient(145deg, #4b2a22, #9d4f57 54%, #e7a6ad);
}

.product-image.skincare,
.product-image.mask,
.product-image.serum {
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 250, 244, 0.82), transparent 8rem),
    linear-gradient(145deg, #70784f, #e7a6ad 52%, #f6eadc);
}

.item p {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 68px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.88);
  font-weight: 800;
  line-height: 1.25;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(231, 166, 173, 0.34);
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature .badge {
  color: var(--ink);
  background: var(--paper);
}

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

.proof-grid article {
  min-height: 170px;
  padding: 22px;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: clamp(42px, 7vw, 82px);
  border-top: 1px solid var(--line);
  padding-top: clamp(30px, 5vw, 54px);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
}

.site-footer {
  padding: 36px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: rgba(38, 24, 19, 0.9);
  color: var(--paper);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
}

.site-footer p,
.footer-bottom {
  color: rgba(255, 250, 244, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 24px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 244, 0.16);
  font-size: 0.9rem;
}

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

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

  .nav-links.is-open {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 250, 244, 0.72);
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--ink);
  }

  .hero,
  .compact-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .glow-card {
    min-height: 500px;
  }

  .glow-card {
    margin: 0;
  }

  .routine-rail,
  .card-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .set-card,
  .set-card.signature,
  .set-card:not(.signature) {
    grid-column: auto;
  }

  .uk-block {
    grid-template-columns: 1fr;
  }

  .uk-block h3 {
    position: static;
  }

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

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

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(4.1rem, 21vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hero,
  .section,
  .platform-section {
    padding-inline: 16px;
  }

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

  .routine-rail,
  .card-grid,
  .proof-grid,
  .set-list,
  .product-grid,
  .uk-product-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .glow-card {
    min-height: 430px;
  }

  .hero-note {
    right: 12px;
    bottom: 18px;
    left: 12px;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
