@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────
   LOWE'S Professional — luxury skincare landing page
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* Palette — Official LOWE'S (White dominant · Black text · Gold accent only) */
  --bg:        #fcfaf4;   /* near-white, barely warm — white dominant */
  --paper:     #fbf7ec;   /* official Cream — alternating sections / product bg */
  --ink:       #161310;   /* near-black text */
  --ink-soft:  #4a443c;   /* secondary text */
  --muted:     #6b5d4f;   /* official Warm Gray — captions/labels */
  --accent:    #c9a646;   /* official Primary Gold — lines, elements, accents */
  --accent-deep:#9c7d2e;  /* deeper gold — italic heading accents (contrast on white) */
  --line:      rgba(22,19,16,0.12);
  --line-soft: rgba(22,19,16,0.06);
  --hero-tint: #f3ecdb;
  --product-bg:#f4eddd;

  /* Type — Official: Playfair Display */
  --f-display: "Playfair Display", "Cormorant Garamond", serif;
  --f-body:    "Jost", "Inter", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --gutter: clamp(20px, 4vw, 56px);
  --rail:   1320px;

  /* Type sizes */
  --t-eyebrow: 11px;
  --t-body:    16px;
  --t-lede:    19px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ── Type system ── */

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-variant-ligatures: common-ligatures;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  letter-spacing: 0;
  max-width: 38ch;
  text-wrap: pretty;
}

.body p {
  color: var(--ink-soft);
  font-weight: 300;
  text-wrap: pretty;
}

.numeral {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn .arrow {
  width: 16px; height: 8px;
  border-bottom: 1px solid currentColor;
  position: relative;
  transition: transform .25s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute; right: 0; top: -3px;
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

.link-underline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap .25s ease, color .25s ease;
}
.link-underline:hover { gap: 16px; color: var(--accent-deep); }

/* ── Layout primitives ── */

.rail {
  max-width: var(--rail);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section-num {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.section-num .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.section-num .rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Top utility + nav ── */

.utility {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 0;
  text-align: center;
}
.utility .ticker {
  display: inline-flex; gap: 50px; align-items: center;
}
.utility .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--accent);
  display: inline-block;
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241,236,226,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a, .nav-right button {
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-left a:hover, .nav-right a:hover, .nav-right button:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.wordmark {
  display: inline-flex; flex-direction: column; align-items: center;
  line-height: 0.95;
  color: var(--ink);
  position: relative;
}
.wordmark .wm-word {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0.14em;
  color: var(--ink);
  position: relative;
}
/* gold heart sprouting top-right of the wordmark (brand signature) */
.wordmark .wm-word::after {
  content: "";
  position: absolute;
  top: -7px; right: -15px;
  width: 12px; height: 11px;
  background: var(--accent);
  -webkit-mask: var(--heart-mask) center / contain no-repeat;
  mask: var(--heart-mask) center / contain no-repeat;
}
.wordmark .wm-script {
  font-family: "Italianno", cursive;
  font-size: 21px;
  color: var(--accent-deep);
  margin-top: -1px;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 26px;
}
.wordmark .wm-script::before,
.wordmark .wm-script::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px; height: 1px;
  background: var(--accent);
  opacity: 0.65;
}
.wordmark .wm-script::before { left: 0; }
.wordmark .wm-script::after  { right: 0; }

:root {
  --heart-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29'%3E%3Cpath d='M16 29C16 29 0 18 0 7.5 0 2.5 4 0 7.5 0 11 0 14 2.5 16 5.5 18 2.5 21 0 24.5 0 28 0 32 2.5 32 7.5 32 18 16 29 16 29Z'/%3E%3C/svg%3E");
}
.bag-count {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  margin-left: 2px;
  font-family: var(--f-mono);
}

/* ── Hero ── */

.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}
.hero-meta {
  display: flex; flex-direction: column; gap: 36px;
}
.hero-tag {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-tag .pip { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(58px, 9.5vw, 138px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
.hero h1 .it { font-style: italic; color: var(--accent-deep); }
.hero-lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
  font-weight: 300;
}
.hero-ar-slogan {
  font-family: "El Messiri", "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--accent-deep);
  margin: -14px 0 0;
  font-weight: 500;
  letter-spacing: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta-row {
  display: flex; gap: 36px; padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta-item .k {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-item .v {
  font-family: var(--f-display);
  font-size: 19px;
  letter-spacing: 0.01em;
}

.hero-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #e7dec9 0%, var(--hero-tint) 100%);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  place-items: end center;
  box-shadow: 0 60px 80px -50px rgba(60,40,20,0.18);
}
.hero-stage::after {
  /* subtle light */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,250,238,0.7), transparent 60%);
  pointer-events: none;
}
.hero-stage svg.bottle {
  position: relative;
  height: 86%;
  filter: drop-shadow(0 30px 40px rgba(30,20,10,0.20));
  z-index: 1;
}
.hero-stage .stage-floor {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(140,100,60,0.10));
}
.hero-stage .stage-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  z-index: 2;
}
.hero-stage .stage-corner.tl { top: 24px; left: 24px; }
.hero-stage .stage-corner.tr { top: 24px; right: 24px; text-align: right; }
.hero-stage .stage-corner.bl { bottom: 24px; left: 24px; }
.hero-stage .stage-corner.br { bottom: 24px; right: 24px; text-align: right; }

/* ── Marquee ── */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Philosophy ── */

.philosophy {
  padding: clamp(80px, 11vw, 160px) 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.philosophy-pull {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.philosophy-pull em { color: var(--accent-deep); font-style: italic; }
.philosophy-body p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.philosophy-sig {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.philosophy-sig .name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0; text-transform: none; color: var(--ink);
}

/* ── Featured product ── */

.featured {
  padding: clamp(60px, 9vw, 120px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
.featured-stage {
  position: relative;
  aspect-ratio: 5/6;
  background: linear-gradient(160deg, #e0d4ba 0%, #e6dcc6 100%);
  border-radius: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.featured-stage svg.bottle {
  height: 88%;
  filter: drop-shadow(0 40px 50px rgba(40,28,14,0.22));
}
.featured-stage .badge {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(248,244,235,0.86);
  backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 999px;
}
.featured-meta { display: flex; flex-direction: column; gap: 24px; }
.featured-meta h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.featured-meta h2 em { font-style: italic; color: var(--accent-deep); }
.featured-meta .price-line {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.featured-meta .price-line .price { color: var(--ink); font-size: 14px; }
.featured-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px 0 4px;
}
.featured-spec > div {
  background: var(--paper);
  padding: 16px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.featured-spec .k {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.featured-spec .v { font-family: var(--f-display); font-size: 22px; }

.actives {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.actives .chip {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* ── Collection grid ── */

.collection { padding: clamp(80px, 11vw, 160px) 0; }
.collection-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 72px);
  gap: 32px;
}
.collection-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 14ch;
}
.collection-head h2 em { font-style: italic; color: var(--accent-deep); }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
}
.product-card { display: flex; flex-direction: column; gap: 18px; cursor: pointer; }
.product-stage {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--product-bg);
  border-radius: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background .35s ease;
}
.product-stage::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,250,238,0.55), transparent 70%);
}
.product-stage svg.bottle {
  height: 80%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 26px rgba(40,28,14,0.20));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-stage svg.bottle { transform: translateY(-6px); }
.product-stage .corner-num {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; color: var(--muted);
  z-index: 2;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding-top: 2px;
}
.product-meta .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.product-meta .name em { font-style: italic; color: var(--accent-deep); }
.product-meta .price {
  font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-soft);
  align-self: end;
}
.product-meta .role {
  grid-column: 1 / -1;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Science ── */

.science {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.science-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.science-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
}
.science-head h2 em { font-style: italic; color: var(--accent-deep); }
.science-head .lede { font-size: 18px; color: var(--ink-soft); max-width: 42ch; }

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ingredient {
  background: var(--paper);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 380px;
}
.ingredient .mol {
  width: 88px; height: 88px;
  color: var(--accent-deep);
}
.ingredient .name-row {
  display: flex; align-items: baseline; gap: 10px;
}
.ingredient .pct {
  font-family: var(--f-display);
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ingredient .pct sup { font-size: 26px; vertical-align: super; line-height: 1; }
.ingredient h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.05;
}
.ingredient h3 em { font-style: italic; color: var(--accent-deep); }
.ingredient .latin {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.ingredient p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
  margin-top: auto;
}

/* ── Ritual ── */

.ritual { padding: clamp(80px, 11vw, 160px) 0; }
.ritual-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.ritual-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
}
.ritual-head h2 em { font-style: italic; color: var(--accent-deep); }
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  background: var(--bg);
  padding: 40px 28px 36px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 320px;
}
.step .num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 76px;
  line-height: 1;
  color: var(--accent-deep);
}
.step h4 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
  margin: 0;
  letter-spacing: -0.005em;
}
.step h4 em { font-style: italic; color: var(--accent-deep); }
.step .when {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
  margin-top: auto;
  line-height: 1.6;
}

/* ── Results ── */

.results {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--ink);
  color: var(--paper);
}
.results .eyebrow { color: rgba(248,244,235,0.55); }
.results-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.results-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--paper);
}
.results-head h2 em { font-style: italic; color: var(--accent); }
.results-head .lede {
  font-size: 17px;
  color: rgba(248,244,235,0.7);
  max-width: 44ch;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(248,244,235,0.10);
  border-top: 1px solid rgba(248,244,235,0.10);
  border-bottom: 1px solid rgba(248,244,235,0.10);
}
.stat {
  background: var(--ink);
  padding: 40px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.stat .v {
  font-family: var(--f-display);
  font-size: clamp(72px, 7.5vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--paper);
  font-weight: 300;
}
.stat .v sup { font-size: 0.4em; vertical-align: super; color: var(--accent); }
.stat .v em { font-style: italic; color: var(--accent); }
.stat .k {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,244,235,0.55);
}
.stat p {
  font-size: 14.5px;
  color: rgba(248,244,235,0.78);
  line-height: 1.55;
  margin: 6px 0 0;
}
.results-footnote {
  margin-top: 40px;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(248,244,235,0.42);
}

/* ── Press / testimonial ── */

.press {
  padding: clamp(80px, 11vw, 160px) 0;
}
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.press-quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.press-quote em { font-style: italic; color: var(--accent-deep); }
.press-cite {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.press-cite .pub { color: var(--ink); }
.press-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.press-logos .l {
  background: var(--bg);
  padding: 32px 24px;
  display: grid; place-items: center;
  min-height: 130px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  font-weight: 400;
}
.press-logos .l.italic { font-style: italic; }
.press-logos .l.upper { text-transform: uppercase; letter-spacing: 0.24em; font-size: 13px; font-family: var(--f-mono); }
.press-logos .l.smallcap { letter-spacing: 0.18em; font-size: 14px; }

/* ── Journal ── */

.journal { padding: clamp(80px, 11vw, 160px) 0; background: var(--paper); border-top: 1px solid var(--line-soft); }
.journal-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: clamp(48px, 7vw, 80px);
  gap: 32px;
}
.journal-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.022em;
  margin: 0;
}
.journal-head h2 em { font-style: italic; color: var(--accent-deep); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.article {
  display: flex; flex-direction: column; gap: 22px;
  cursor: pointer;
}
.article-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.article-img > div {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.article:hover .article-img > div { transform: scale(1.04); }
.article-img.a1 > div { background: linear-gradient(160deg, #c9b89a, #a08862); }
.article-img.a2 > div { background: linear-gradient(160deg, #d7cdb6, #b09975); }
.article-img.a3 > div { background: linear-gradient(160deg, #c4b496, #8a7959); }
/* Journal article images — product imagery on a tinted stage */
.article-img.tinted {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,252,245,0.55), transparent 70%),
    linear-gradient(160deg,
      color-mix(in srgb, var(--p-accent, #c9b287) 26%, var(--paper)),
      color-mix(in srgb, var(--p-accent, #c9b287) 15%, var(--paper)));
}
.article-img img.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 7% 16%;
  box-sizing: border-box;
  z-index: 1;
  filter: drop-shadow(0 22px 30px rgba(40,28,14,0.18));
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.article:hover .article-img img.product-img { transform: scale(1.04) translateY(-4px); }

/* ── Rice Milk set spotlight ── */
.rice-set {
  padding: clamp(72px, 9vw, 130px) 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255,253,248,0.7), transparent 55%),
    linear-gradient(170deg, #f4eddf 0%, #ece0cb 100%);
  border-top: 1px solid rgba(180,150,110,0.18);
  border-bottom: 1px solid rgba(180,150,110,0.18);
}
.rice-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(40px,5vw,64px); }
.rice-head .eyebrow { color: #a98b5f; }
.rice-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin: 16px 0 0;
  color: #4a3a26;
}
.rice-head h2 em { font-style: italic; color: #b08a52; }
.rice-ar {
  font-family: "El Messiri","Noto Naskh Arabic",serif;
  direction: rtl;
  font-size: clamp(17px,1.6vw,22px);
  color: #a98b5f;
  margin: 14px 0 0;
  font-weight: 500;
}
.rice-lede {
  color: #6e5a3e;
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 52ch;
  margin: 18px auto 0;
  text-wrap: pretty;
}
.rice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  max-width: 880px;
  margin: 0 auto;
}
.rice-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.rice-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 5px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,253,248,0.65), transparent 70%),
    linear-gradient(160deg, #efe6d4, #e6d8bf);
  margin-bottom: 16px;
  box-shadow: 0 30px 50px -38px rgba(120,90,50,0.4);
}
.rice-stage img.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  padding: 8% 14%;
  box-sizing: border-box;
  filter: drop-shadow(0 18px 26px rgba(90,65,35,0.22));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.rice-card:hover .rice-stage img.product-img { transform: translateY(-6px); }
.rice-step {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #a98b5f;
}
.rice-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.005em;
  margin: 2px 0 0;
  color: #3f3120;
}
.rice-card h3 em { font-style: italic; color: #b08a52; }
.rice-card .ar {
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 13.5px;
  color: #8a7152;
}
.rice-foot { text-align: center; margin-top: clamp(36px,5vw,56px); }
.rice-foot .link-underline { color: #8a6a3c; }
.rice-foot .link-underline:hover { color: #6e5230; }

@media (max-width: 640px) {
  .rice-grid { grid-template-columns: 1fr; gap: 26px; max-width: 300px; }
}
.article-tag {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.article h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.008em;
  line-height: 1.1;
  margin: 0;
}
.article h3 em { font-style: italic; color: var(--accent-deep); }
.article .read {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── Newsletter ── */

.newsletter {
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 18px auto 18px;
  max-width: 18ch;
}
.newsletter h2 em { font-style: italic; color: var(--accent-deep); }
.newsletter p {
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 40px;
  font-size: 16.5px;
  line-height: 1.6;
}
.newsletter form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
}
.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  letter-spacing: 0.01em;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter button {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  color: var(--ink);
}
.newsletter .small {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Footer ── */

footer.foot {
  background: var(--ink);
  color: rgba(248,244,235,0.78);
  padding: clamp(64px, 8vw, 96px) 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(248,244,235,0.10);
}
.foot-grid > * { min-width: 0; }
.foot-brand .wordmark { color: var(--paper); }
.foot-brand .wordmark .wm-word { color: var(--paper); }
.foot-brand .wordmark .wm-script { color: var(--accent); }
.foot-brand .wordmark .wm-script::before,
.foot-brand .wordmark .wm-script::after { background: rgba(248,244,235,0.4); }
.foot-brand p {
  color: rgba(248,244,235,0.62);
  margin: 22px 0 0;
  font-size: 14.5px;
  max-width: 30ch;
  line-height: 1.6;
}
.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,235,0.5);
  margin: 0 0 22px;
  font-weight: 500;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  font-size: 14.5px;
  color: rgba(248,244,235,0.86);
  letter-spacing: 0.005em;
  overflow-wrap: anywhere;
}
.foot-col a:hover { color: var(--accent); }
.foot-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248,244,235,0.5);
  gap: 24px;
  flex-wrap: wrap;
}
.foot-base .links { display: flex; gap: 28px; }

/* ── Responsive ── */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-stage { aspect-ratio: 4/4; max-width: 600px; margin: 0 auto; }
  .philosophy-grid,
  .featured-grid,
  .science-head,
  .ritual-head,
  .results-head,
  .press-grid { grid-template-columns: 1fr; gap: 40px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .science-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; gap: 48px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  :root { --gutter: 22px; }
  .nav-left .item-hide, .nav-right .item-hide { display: none; }
  .nav { height: auto; }
  .nav-inner { height: 60px; }
  .nav-left a, .nav-right a, .nav-right button { padding: 11px 0; }
  .wordmark { font-size: 20px; }
  .wordmark .sub { font-size: 7.5px; }
  /* Utility bar: keep a single clean line on phones (the wrapping ticker
     otherwise stacks into a ~130px-tall block at the top of the page). */
  .utility { padding: 9px 0; font-size: 9px; }
  .utility .ticker { gap: 0; white-space: nowrap; }
  .utility .ticker > span:not(:first-child) { display: none; }
  .btn { padding: 14px 22px; font-size: 11.5px; }
  .hero { padding: 40px 0 64px; }
  .hero h1 { font-size: clamp(54px, 14vw, 84px); }
  .hero-meta-row { flex-wrap: wrap; gap: 24px; }
  .philosophy-pull { font-size: clamp(30px, 7vw, 44px); }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .ritual-grid, .results-grid { grid-template-columns: 1fr; }
  .ritual-grid .step, .results-grid .stat { border-bottom: 1px solid var(--line); }
  .featured-stage { aspect-ratio: 4/5; }
  .featured-meta h2 { font-size: clamp(38px, 10vw, 60px); }
  .featured-spec { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; align-items: stretch; gap: 0; }
  .newsletter input { text-align: center; }
  .newsletter button { padding: 12px 0; border-top: 1px solid var(--line); }
  .press-logos { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-base { justify-content: center; text-align: center; gap: 12px; }
  .foot-base .links { gap: 10px 18px; flex-wrap: wrap; justify-content: center; }
  .foot-base .links a { padding: 7px 2px; }
  .foot-col li a { padding: 3px 0; display: inline-block; }
}

/* ─────────────────────────────────────────────────────────────────────
   New: bilingual support + featured dark + catalogue + 5-step ritual
   ───────────────────────────────────────────────────────────────────── */

/* ── Image-based product cards (per-product accent) ── */
.product-stage img.product-img,
.cat-bottle img.product-img,
.featured-stage img.product-img,
.hero-stage img.product-img {
  /* fill + letterbox so even extreme-tall images fit (percentage max-height
     does not resolve against an aspect-ratio parent, so we use absolute fill) */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 3% 6%;
  box-sizing: border-box;
  z-index: 1;
  filter: drop-shadow(0 24px 34px rgba(40,28,14,0.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hero-stage img.product-img { padding: 7% 11%; }
.featured-stage img.product-img { padding: 4% 7%; }
.cat-bottle img.product-img { padding: 5% 8%; }
.product-card:hover .product-stage img.product-img,
.cat-card:hover .cat-bottle img.product-img {
  transform: translateY(-6px);
}

/* Per-product color tint backgrounds */
.product-stage.tinted,
.cat-bottle.tinted,
.featured-stage.tinted,
.hero-stage.tinted {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,252,245,0.55), transparent 70%),
    linear-gradient(160deg,
      color-mix(in srgb, var(--p-accent, #c9b287) 28%, var(--paper)),
      color-mix(in srgb, var(--p-accent, #c9b287) 16%, var(--paper)));
}
.featured-stage.tinted.deep {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,252,245,0.45), transparent 65%),
    linear-gradient(160deg,
      color-mix(in srgb, var(--p-accent, #c9b287) 38%, var(--paper)),
      color-mix(in srgb, var(--p-accent, #c9b287) 22%, var(--paper)));
}
.cat-bottle.tinted::after,
.product-stage.tinted::after { display: none; }

/* Plain white card variant — for white-background product shots that
   don't key cleanly (e.g. white bottles). The photo's white bg blends in. */
.cat-bottle.plain {
  background: #ffffff;
}
.cat-bottle.plain::after { display: none; }
.cat-bottle.plain img.product-img {
  padding: 5% 7%;
  filter: none;
  height: auto;
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}

/* Active-chip accent for cards w/ product color */
.cat-card[style*="--p-accent"] .cat-actives span {
  border-color: color-mix(in srgb, var(--p-accent) 30%, var(--line));
  color: color-mix(in srgb, var(--p-accent) 50%, var(--ink));
}

/* Arabic numerals/labels — Naskh font */
.ar, .ar-name, .cat-ar, .stage-corner.br {
  font-family: "Noto Naskh Arabic", "Cormorant Garamond", serif;
  direction: rtl;
  letter-spacing: 0;
}

.ar-name {
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 18px;
  color: var(--muted);
  margin: -10px 0 0;
  letter-spacing: 0;
  font-weight: 400;
}

/* Featured stage — dark variant for retinol */
.featured-stage.dark {
  background: linear-gradient(160deg, #1a1410 0%, #2a1f15 100%);
}
.featured-stage.dark .badge {
  background: rgba(20,16,12,0.72);
  color: var(--accent);
  border: 1px solid rgba(201,168,119,0.3);
}

/* Product card dark variant */
.product-stage.dark {
  background: linear-gradient(160deg, #1a1410 0%, #2a1f15 100%);
}
.product-stage.dark::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,119,0.18), transparent 70%);
}

/* Product card — Arabic subtitle line */
.product-meta .ar {
  grid-column: 1 / -1;
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}

/* Six-up ingredient grid */
.science-grid {
  grid-template-columns: repeat(3, 1fr);
}
.ingredient .pct sub {
  font-size: 0.5em;
  vertical-align: sub;
  font-style: italic;
  margin-left: 1px;
}

/* ── Values section ── */
.values {
  padding: clamp(72px, 9vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.values-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.values-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.values-head h2 em { font-style: italic; color: var(--accent-deep); }
.values-head .lede { max-width: 44ch; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-card {
  background: var(--paper);
  padding: 40px 30px 36px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 300px;
}
.value-mark {
  width: 40px; height: 40px;
  color: var(--accent);
  display: flex; align-items: center;
}
.value-mark svg { width: 34px; height: 34px; }
.value-mark.ribbon svg { width: 28px; height: 36px; color: #c76b76; }
.value-mark.leaf svg { color: #9cae92; }
.value-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin: 6px 0 0;
}
.value-ar {
  font-family: "El Messiri", "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 16px;
  color: var(--muted);
}
.value-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: auto 0 0;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .values-head { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
}

/* ── Pink October awareness band ── */
.pink-october {
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232,160,168,0.22), transparent 60%),
    linear-gradient(160deg, #fbeef0 0%, #f7e3e6 100%);
  border-top: 1px solid rgba(199,107,118,0.18);
  border-bottom: 1px solid rgba(199,107,118,0.18);
}
.po-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.po-mark {
  color: #c76b76;
  width: clamp(90px, 10vw, 140px);
}
.po-mark svg { width: 100%; height: auto; }
.po-body { max-width: 60ch; }
.pink-october .eyebrow { color: #b65d68; }
.po-body h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 18px 0 0;
  color: #5a2e34;
}
.po-body h2 em { font-style: italic; color: #c76b76; }
.po-ar {
  font-family: "El Messiri", "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #b65d68;
  margin: 16px 0 0;
  font-weight: 500;
}
.po-body p:not(.po-ar) {
  color: #6e4347;
  font-size: 16.5px;
  line-height: 1.65;
  margin: 18px 0 26px;
  max-width: 52ch;
}
.po-body .link-underline { color: #a8505b; }
.po-body .link-underline:hover { color: #8a3f49; }

@media (max-width: 760px) {
  .po-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .po-mark { width: 72px; }
}

/* ── Catalogue section ── */

.catalogue {
  padding: clamp(80px, 11vw, 160px) 0 clamp(64px, 8vw, 120px);
  background: var(--bg);
}
.catalogue-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 100px);
}
.catalogue-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.94;
  letter-spacing: -0.024em;
  margin: 0;
}
.catalogue-head h2 em { font-style: italic; color: var(--accent-deep); }
.catalogue-head .lede { max-width: 46ch; font-size: 18px; }

.cat-block {
  margin-bottom: clamp(56px, 7vw, 88px);
}
.cat-head {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cat-head .cat-step {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--accent-deep);
}
.cat-head .cat-title {
  display: flex; align-items: baseline; gap: 16px;
}
.cat-head h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.008em;
  margin: 0;
  line-height: 1;
}
.cat-head .cat-ar {
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 22px;
  color: var(--muted);
}
.cat-head .cat-count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  justify-self: end;
}
.cat-head .cat-rule { display: none; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
  border: none;
}

.cat-card {
  background: var(--bg);
  padding: 0;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.cat-card:hover { background: var(--paper); box-shadow: 0 18px 40px -28px rgba(40,28,14,0.4); transform: translateY(-2px); }

.cat-bottle {
  background: var(--product-bg);
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.cat-bottle::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,250,238,0.45), transparent 70%);
}
.cat-bottle > svg {
  height: 82%;
  filter: drop-shadow(0 14px 22px rgba(40,28,14,0.18));
  position: relative; z-index: 1;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  width: auto;
  aspect-ratio: 200 / 520;
}
.cat-card:hover .cat-bottle > svg { transform: translateY(-6px); }

.cat-card.featured-card .cat-bottle { background: #e3d8bd; }
.cat-card.featured-card.dark .cat-bottle {
  background: linear-gradient(160deg, #1a1410 0%, #2a1f15 100%);
}
.cat-card.featured-card.dark .cat-bottle::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,119,0.18), transparent 70%);
}

.cat-meta {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.cat-num {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.cat-meta h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
.cat-meta h4 em { font-style: italic; color: var(--accent-deep); font-weight: 300; }
.cat-meta .ar {
  font-family: "Noto Naskh Arabic", serif;
  direction: rtl;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0;
  margin-bottom: 2px;
}
.cat-actives {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 4px 0 2px;
}
.cat-actives span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
}
.cat-meta p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 4px 0 0;
  font-weight: 300;
}

/* ── 5-step Ritual grid ── */
.ritual-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

/* ── Press logos converted to testimonial quotes ── */
.press-logos .l.italic {
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.002em;
  text-align: center;
  padding: 24px 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  min-height: 120px;
}

/* ── Hero stage rtl-corner allowance ── */
.stage-corner.br {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-family: "Noto Naskh Arabic", serif;
  color: var(--muted);
  text-align: right;
}

/* ── Responsive: catalogue ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ritual-grid.five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-head { grid-template-columns: 1fr; gap: 32px; }
  .cat-head { grid-template-columns: auto 1fr; gap: 16px; }
  .cat-head .cat-step { font-size: 38px; }
  .cat-head .cat-count { grid-column: 1 / -1; justify-self: start; padding-top: 4px; }
  .cat-head .cat-title { grid-column: 2 / 3; }
  .science-grid { grid-template-columns: 1fr; }
  .ritual-grid.five { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .ritual-grid.five { grid-template-columns: 1fr; }
}

/* ── Palette themes (Tweaks-driven) ── */

/* Warm cream-dominant variant (gold accent retained) */
body.theme-cream {
  --bg:        #f1ece2;
  --paper:     #f8f4eb;
  --ink:       #1a1714;
  --ink-soft:  #5a5249;
  --muted:     #8a7e6e;
  --accent:    #c9a646;
  --accent-deep:#9c7d2e;
  --line:      rgba(26,23,20,0.12);
  --line-soft: rgba(26,23,20,0.06);
  --hero-tint: #e9e1d2;
  --product-bg:#ece3d2;
}

body.theme-onyx {
  --bg:        #14110d;
  --paper:     #1c1813;
  --ink:       #f1ece2;
  --ink-soft:  #b8aa94;
  --muted:     #847665;
  --accent:    #c9a646;
  --accent-deep:#dcc079;
  --line:      rgba(241,236,226,0.12);
  --line-soft: rgba(241,236,226,0.06);
  --hero-tint: #2a2218;
  --product-bg:#221c14;
}
body.theme-onyx .results { background: #0a0805; }
body.theme-onyx .results .stat { background: #0a0805; }

body.theme-moss {
  --bg:        #ecebe1;
  --paper:     #f3f1e6;
  --ink:       #16201a;
  --ink-soft:  #4b5a4f;
  --muted:     #7a8a7d;
  --accent:    #6f8170;
  --accent-deep:#4b5d4d;
  --line:      rgba(22,32,26,0.12);
  --line-soft: rgba(22,32,26,0.06);
  --hero-tint: #d8dac9;
  --product-bg:#dadbcb;
}

body.theme-terracotta {
  --bg:        #f1e7da;
  --paper:     #f6ede0;
  --ink:       #2a1d14;
  --ink-soft:  #6a4c34;
  --muted:     #9a7a5a;
  --accent:    #b86a3c;
  --accent-deep:#8c4a25;
  --line:      rgba(42,29,20,0.13);
  --line-soft: rgba(42,29,20,0.06);
  --hero-tint: #e7d2b1;
  --product-bg:#ead4b3;
}

/* ── Font pair tweaks ── */

body.font-cormorant { --f-display: "Cormorant Garamond", serif; }
body.font-italiana { --f-display: "Italiana", serif; }
body.font-dmserif  { --f-display: "DM Serif Display", serif; }
body.font-tenor    { --f-display: "Tenor Sans", serif; }

body.body-manrope  { --f-body: "Manrope", system-ui, sans-serif; }
body.body-jakarta  { --f-body: "Plus Jakarta Sans", system-ui, sans-serif; }

/* ── Hero variant ── */

body.hero-centered .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 56px;
}
body.hero-centered .hero-meta { align-items: center; }
body.hero-centered .hero-tag { justify-content: center; }
body.hero-centered .hero-lede { margin-left: auto; margin-right: auto; }
body.hero-centered .hero-ctas { justify-content: center; }
body.hero-centered .hero-meta-row { justify-content: center; }
body.hero-centered .hero-stage { max-width: 640px; margin: 0 auto; aspect-ratio: 5/4; }

body.hero-fullbleed .hero-grid { grid-template-columns: 1fr; }
body.hero-fullbleed .hero-stage {
  aspect-ratio: 21/10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
body.hero-fullbleed .hero-meta {
  position: relative;
  z-index: 2;
  padding: 56px;
}
body.hero-fullbleed .hero-stage-only {
  display: none;
}

/* ─────────────────────────────────────────────────────────────────────
   Refinement pass — smooth anchored scroll, focus states,
   reduced-motion, active-nav indicator
   ───────────────────────────────────────────────────────────────────── */

/* Smooth in-page navigation that clears the 78px sticky header
   (previously, jumping to #catalogue etc. hid the heading under the nav). */
html { scroll-behavior: smooth; }
section[id],
.cat-block[id] { scroll-margin-top: 100px; }

/* Keyboard focus — visible, on-brand, never shown for mouse users */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Active section indicator in the primary nav (set by scroll-spy script) */
.nav-left a.is-active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* ─── Commerce: prices, WhatsApp ordering ─── */
.cat-more {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep);
  text-decoration: none;
  margin-top: 2px;
}
.cat-more::after { content: " →"; }
.cat-more:hover { color: var(--ink); }
.cat-buy {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cat-price {
  font-family: var(--f-display);
  font-size: 23px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cat-price sup { font-size: 0.58em; color: var(--accent-deep); margin-right: 1px; }
.cat-price.ask {
  font-family: "Tajawal", sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--muted);
}
.order-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Tajawal", sans-serif;
  font-size: 12.5px; font-weight: 500;
  color: var(--paper);
  background: var(--ink);
  padding: 9px 14px 10px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.order-wa svg { width: 13px; height: 13px; fill: var(--accent); transition: fill 0.25s ease; flex: none; }
.order-wa:hover { background: var(--accent); color: var(--ink); }
.order-wa:hover svg { fill: var(--ink); }

.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1fa15c;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -12px rgba(20,60,40,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 24px 48px -12px rgba(20,60,40,0.55); }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 640px) { .wa-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; } }

/* ─── Language toggle ─── */
.lang-toggle {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 99px;
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent-deep); }
.lang-ar .lang-toggle, .lang-ar .lang-toggle { font-family: "El Messiri", serif; font-size: 15px; }

/* Show/hide by active language */
.lang-ar .only-en { display: none !important; }
html:not(.lang-ar) .only-ar { display: none !important; }

/* RTL: keep the floating WhatsApp on the left, flip nav rhythm sensibly */
.lang-ar .wa-fab { right: auto; left: 22px; }
@media (max-width: 640px) { .lang-ar .wa-fab { left: 16px; right: auto; } }
.lang-ar .ticker { animation-direction: reverse; }

/* ─── Testimonials / Reviews ─── */
.reviews { padding: clamp(64px,9vw,128px) 0; }
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: clamp(36px,5vw,60px); }
.reviews-head h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(34px,4.4vw,64px); line-height: 0.98; letter-spacing: -0.022em; margin: 0; }
.reviews-head h2 em { font-style: italic; color: var(--accent-deep); }
.rating-badge { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.rating-badge .stars { color: var(--accent); font-size: 20px; letter-spacing: 3px; }
.rating-badge .score { font-family: var(--f-display); font-size: 18px; color: var(--ink); }
.rating-badge .score strong { font-size: 26px; font-weight: 500; }
.rating-badge .src { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.lang-ar .rating-badge { align-items: flex-start; text-align: left; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px,2vw,24px); }
.review-card { display: flex; flex-direction: column; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: clamp(24px,2.6vw,32px); }
.review-card .rc-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-card .rc-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.review-card .rc-tag { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: 4px 9px; }
.review-card .rc-quote { font-family: "Tajawal", sans-serif; direction: rtl; text-align: right; color: var(--ink); font-size: 15.5px; line-height: 1.85; margin: 0; flex: 1; text-wrap: pretty; }
.review-card.en-mode .rc-quote { font-family: var(--f-display); font-weight: 400; direction: ltr; text-align: left; font-size: 17px; line-height: 1.6; font-style: italic; color: var(--ink-soft); }
.review-card .rc-cite { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.review-card .rc-avatar { width: 30px; height: 30px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 22%, var(--paper)); display: grid; place-items: center; font-family: var(--f-display); font-size: 14px; color: var(--accent-deep); flex: none; }
.review-card .rc-who { display: flex; flex-direction: column; gap: 1px; }
.review-card .rc-name { font-family: var(--f-display); font-size: 15px; color: var(--ink); }
.review-card .rc-meta { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.reviews-foot { margin-top: clamp(32px,4vw,48px); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.reviews-foot .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@media (max-width: 920px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Mobile hamburger menu ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block; height: 1.6px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper, #faf6ef);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  display: flex; flex-direction: column; gap: 28px;
  text-align: center;
}
.mobile-menu-inner a {
  font-family: var(--f-display);
  font-size: 30px; font-weight: 300; letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease, color .2s ease;
}
.mobile-menu.open .mobile-menu-inner a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: .38s; }
.mobile-menu-inner a:active { color: var(--accent-deep, #9c7d2e); }
body.menu-open { overflow: hidden; }

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-right .item-hide, .nav-left .item-hide { display: none; }
  /* hide the inline Shop links since the burger covers navigation */
  .nav-right > a, .nav-left > a { display: none; }
}

/* ── FAQ ── */
.faq { padding: clamp(64px, 9vw, 120px) 0; }
.faq-head { max-width: 720px; margin: 14px 0 clamp(36px,5vw,56px); }
.faq-head h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.02em; margin: 0;
}
.faq-head h2 em { font-style: italic; color: var(--accent-deep, #9c7d2e); }
.faq-list { max-width: 860px; border-top: 1px solid var(--line, #e7e0d2); }
.faq-item { border-bottom: 1px solid var(--line, #e7e0d2); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: clamp(20px,2.4vw,28px) 4px;
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(17px, 2vw, 21px); color: var(--ink, #161310);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-deep, #9c7d2e); }
.faq-ico { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--accent, #c9a646);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-ico::before { left: 0; top: 8px; width: 18px; height: 1.6px; }
.faq-ico::after { left: 8px; top: 0; width: 1.6px; height: 18px; }
.faq-item[open] .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-body {
  padding: 0 4px clamp(22px,2.6vw,30px);
  max-width: 64ch; color: var(--ink-soft, #5b554c);
  font-size: clamp(14.5px,1.5vw,16px); line-height: 1.7;
  animation: faqReveal .35s ease;
}
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Honeypot (spam trap) — visually & a11y hidden, bots still fill it ── */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ── Footer: The House of LOWE'S (endorsed sub-brand family) ── */
.foot-house {
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 3vw, 32px) 0 clamp(20px, 2.6vw, 28px);
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.foot-house .fh-label {
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.foot-house .fh-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px clamp(28px, 6vw, 64px); }
.foot-house .fh-brand {
  display: inline-flex; flex-direction: column; gap: 4px;
  text-decoration: none; color: inherit;
  position: relative;
}
.foot-house .fh-brand + .fh-brand::before {
  content: ""; position: absolute; left: calc(-1 * clamp(14px, 3vw, 32px)); top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.lang-ar .foot-house .fh-brand + .fh-brand::before { left: auto; right: calc(-1 * clamp(14px, 3vw, 32px)); }
.foot-house .fh-name {
  font-family: var(--f-display); font-size: clamp(19px, 2.2vw, 24px); font-weight: 500;
  color: var(--ink); transition: color .25s ease;
}
.foot-house a.fh-brand:hover .fh-name { color: var(--accent-deep); }
.foot-house .fh-sub {
  font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.foot-house .fh-soon .fh-name { color: var(--ink-soft); }

/* ── Premium Arabic typography — Amiri (headings) + IBM Plex Sans Arabic (body) ──
   Applied only in Arabic mode. Swaps the type variables so the whole site picks it up. */
.lang-ar {
  --f-display: "Amiri", "Noto Naskh Arabic", Georgia, serif;
  --f-body: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
  --f-mono: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
}
/* Arabic needs zero tracking (letter-spacing breaks the cursive joins) + more leading */
.lang-ar h1, .lang-ar h2, .lang-ar h3, .lang-ar h4, .lang-ar h5, .lang-ar h6,
.lang-ar p, .lang-ar li, .lang-ar a, .lang-ar span, .lang-ar summary,
.lang-ar button, .lang-ar .eyebrow, .lang-ar .num, .lang-ar input,
.lang-ar .btn, .lang-ar .rc-name, .lang-ar .rc-meta, .lang-ar .article-tag {
  letter-spacing: 0 !important;
}
.lang-ar p, .lang-ar li, .lang-ar .faq-body, .lang-ar .hero-sub, .lang-ar .lede { line-height: 1.9; }
.lang-ar h1, .lang-ar h2, .lang-ar h3 { line-height: 1.45; }
/* Latin brand name kept inside Arabic copy should stay Playfair, not Amiri */
.lang-ar .wordmark .wm-word { font-family: "Playfair Display", Georgia, serif; }

/* ── Premium polish (micro-interactions) ── */
/* Slim, on-brand scrollbar */
* { scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--accent) 60%, transparent) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent) 50%, transparent); border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Sticky nav: subtle shrink + lift on scroll */
.nav { transition: background .35s ease, box-shadow .35s ease; }
.nav-inner { transition: height .35s cubic-bezier(.2,.7,.2,1); }
.nav.scrolled { background: rgba(241,236,226,0.94); box-shadow: 0 10px 34px -16px rgba(40,28,14,0.22); }
.nav.scrolled .nav-inner { height: 62px; }

/* Animated underline on desktop nav links */
@media (min-width: 761px) {
  .nav-left a, .nav-right a { position: relative; }
  .nav-left a::after, .nav-right a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
    background: var(--accent); transform: scaleX(0); transform-origin: right center;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
  }
  .nav-left a:hover::after, .nav-right a:hover::after { transform: scaleX(1); transform-origin: left center; }
  .lang-ar .nav-left a:hover::after, .lang-ar .nav-right a:hover::after { transform-origin: right center; }
}

/* Button hover — gentle lift + tracking shift (the "designed" feel) */
.btn { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, background .25s ease, color .25s ease, letter-spacing .35s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary:hover, .btn-dark:hover { box-shadow: 0 16px 34px -14px rgba(40,28,14,0.45); }

/* Catalogue cards — soft depth on hover (premium tactility) */
.cat-card { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.cat-card:hover { transform: translateY(-4px); }

/* ── Clinical Proof & Standards ── */
.proof { padding: clamp(64px,9vw,120px) 0; }
.proof-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; margin-top: 16px; }
.proof-lead h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(32px,4.5vw,56px); line-height: 1.05; letter-spacing: -0.02em; margin: 14px 0 18px; }
.proof-lead h2 em { font-style: italic; color: var(--accent-deep); }
.proof-stat { text-align: center; padding: clamp(30px,3.4vw,46px); border: 1px solid var(--line); border-radius: 16px; background: var(--paper); box-shadow: 0 30px 60px -40px rgba(40,28,14,0.3); }
.proof-v { display: block; font-family: var(--f-display); font-weight: 500; font-size: clamp(52px,7vw,88px); line-height: 1; color: var(--accent-deep); letter-spacing: -0.02em; }
.proof-v sup { font-size: 0.38em; vertical-align: super; }
.proof-k { display: block; margin-top: 14px; font-size: clamp(14px,1.6vw,16.5px); color: var(--ink); }
.proof-sub { display: block; margin-top: 16px; font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }
.cert-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: clamp(40px,5vw,60px); padding-top: clamp(28px,3vw,40px); border-top: 1px solid var(--line); }
.cert { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; transition: border-color .25s ease, color .25s ease, background .25s ease; }
.cert:hover { border-color: var(--accent); color: var(--ink); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.lang-ar .proof-sub, .lang-ar .cert { letter-spacing: 0 !important; }
@media (max-width: 760px) { .proof-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ── Promise (Shipping · Returns · Authenticity) ── */
.promise { padding: clamp(64px,9vw,120px) 0; }
.promise-head { margin: 14px 0 clamp(36px,5vw,56px); }
.promise-head h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(32px,4.5vw,56px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; }
.promise-head h2 em { font-style: italic; color: var(--accent-deep); }
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,40px); }
.promise-card { padding: clamp(26px,2.8vw,38px); border: 1px solid var(--line); border-radius: 14px; background: var(--paper); transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; }
.promise-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -34px rgba(40,28,14,0.3); }
.promise-ico { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent-deep); margin-bottom: 18px; }
.promise-ico svg { width: 22px; height: 22px; }
.promise-card h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(19px,2vw,23px); margin: 0 0 10px; }
.promise-card p { color: var(--ink-soft); font-size: clamp(14px,1.5vw,15.5px); line-height: 1.7; margin: 0; }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; } }
