/* ============================================================
   GROWMAN Professional — export site
   Josefin Sans (display) + Open Sans (body). Gold / ink / paper.
   Design language follows the StyleMix "Cosmetics" manufacturer theme:
   sentence-case light headings, centred section heads, hairline rules,
   alternating white / #F4F4F4 bands, a dark footer.
   ============================================================ */

/* ── 1. Tokens ───────────────────────────────────────────── */
:root {
  --gold:        #C9A654;   /* accent: buttons, rules, large display */
  --gold-hover:  #B8923E;
  --gold-deep:   #7E6428;   /* small caps on light — 5.61:1 */
  --gold-num:    #A67F30;   /* large display numerals on light — 3.68:1 */
  --gold-soft:   #EFE6D2;

  --ink:         #232323;   /* headings */
  --body:        #4B4B4B;   /* body copy */
  --muted:       #6E6E6E;   /* meta, captions */
  --line:        #E4E4E4;
  --line-soft:   #EFEFEF;

  --paper:       #FFFFFF;
  --paper-2:     #F4F4F4;
  --dark:        #0C0C0C;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;

  --on-dark:      #F2F2F2;
  --on-dark-mute: rgba(242,242,242,0.68);
  --on-dark-faint:rgba(242,242,242,0.60);
  --line-dark:    rgba(255,255,255,0.13);

  --pink: #B34068;
  --linkedin: #0A66C2;   /* brand blue — 5.55:1 on white */
  --blue: #2C6098;

  --font-display: "Josefin Sans", "Century Gothic", system-ui, sans-serif;
  --font-body:    "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-micro: 0.6875rem;                               /* 11px */
  --fs-tiny:  0.75rem;                                 /* 12px */
  --fs-small: 0.8125rem;                               /* 13px */
  --fs-body:  0.9375rem;                               /* 15px */
  --fs-lead:  clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --fs-h3:    clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --fs-h2:    clamp(1.5rem, 1.15rem + 1.5vw, 2.5rem);
  --fs-h1:    clamp(1.85rem, 1.25rem + 2.1vw, 3.1rem);

  --gutter: clamp(1.25rem, 4vw, 3.25rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --max: 1320px;

  --topbar-h: 38px;
  --brandbar-h: 88px;
  --navbar-h: 54px;
  --header-h: calc(var(--brandbar-h) + var(--navbar-h));

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 2px 10px rgba(35,35,35,0.05);
  --shadow-lift: 0 22px 48px -22px rgba(35,35,35,0.32);
}

/* ── 2. Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--navbar-h) + 16px); -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 {
  margin: 0; font-family: var(--font-display);
  font-weight: 400; color: var(--ink);
  letter-spacing: 0; line-height: 1.25;
}
p, dd, dl, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap { width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

/* ── 3. Type utilities ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-tiny); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 0.9rem;
}
.eyebrow--gold { color: var(--gold); }
.lead { font-size: var(--fs-lead); line-height: 1.8; color: var(--body); }

.section { padding-block: var(--section-y); }
.section--grey { background: var(--paper-2); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-h2); font-weight: 300; }
.section-head .sub { margin-top: 1rem; font-size: var(--fs-lead); color: var(--muted); line-height: 1.8; }
.section-head--center .sub { margin-inline: auto; max-width: 44rem; }

.note-center {
  margin-top: 2rem; text-align: center;
  font-size: var(--fs-small); color: var(--muted); line-height: 1.8;
  max-width: 52rem; margin-inline: auto;
}
.note-rule {
  margin-top: 2rem; padding: 1.1rem 1.35rem;
  border-left: 2px solid var(--gold); background: var(--paper);
  font-size: var(--fs-small); color: var(--muted); line-height: 1.8;
}
.section--grey .note-rule { background: var(--paper); }

/* ── 4. Buttons & link arrows ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--fs-tiny); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
  padding: 1rem 1.9rem; text-align: center;
  transition: background 0.28s var(--ease-soft), color 0.28s var(--ease-soft),
              border-color 0.28s var(--ease-soft), transform 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn span { transition: transform 0.25s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--outline-light { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.35); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep);
  padding-block: 0.35rem;
}
.link-arrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::before { width: 28px; }
.link-arrow--light { color: var(--gold); }
.link-arrow--light:hover { color: #fff; }

/* ── 5. Scroll progress ──────────────────────────────────── */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 120; pointer-events: none;
}
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--gold); }

/* ── 6. Topbar ───────────────────────────────────────────── */
.topbar {
  background: var(--dark); color: var(--on-dark-mute);
  font-size: var(--fs-tiny); letter-spacing: 0.04em;
}
.topbar .wrap {
  min-height: var(--topbar-h); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; padding-block: 0.5rem;
}
.topbar__note { margin: 0; }
.topbar__right { display: flex; align-items: center; gap: 0.9rem; }
.topbar__link { display: inline-block; padding-block: 0.35rem; }
.topbar__link:hover { color: var(--gold); }
.tb-sep { width: 1px; height: 12px; background: var(--line-dark); }
.langs { display: flex; gap: 0.55rem; }
.langs a {
  padding: 0.35rem 0.3rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--on-dark-faint); transition: color 0.2s;
}
.langs a:hover { color: var(--on-dark); }
.langs a.is-active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.lang-note {
  width: min(var(--max), 100%); margin-inline: auto;
  padding: 0.75rem var(--gutter) 0; font-size: var(--fs-small); color: var(--muted);
}
@media (max-width: 860px) { .topbar__note { display: none; } .topbar .wrap { justify-content: flex-end; } }

/* ── 7. Header ───────────────────────────────────────────── */
.brandbar { background: var(--paper); border-bottom: 1px solid var(--line-soft); }
.brandbar .wrap {
  min-height: var(--brandbar-h); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 38px; width: auto; max-width: 210px; object-fit: contain; }

.brandbar__meta { display: none; align-items: center; gap: 2rem; }
.meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.meta-item__label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep);
}
.meta-item__value { font-size: var(--fs-small); font-weight: 600; color: var(--ink); }
a.meta-item__value:hover { color: var(--gold-deep); }
.brandbar__cta { padding: 0.9rem 1.5rem; }
@media (min-width: 1040px) { .brandbar__meta { display: flex; } }

.navbar {
  background: var(--paper); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 90;
  transition: box-shadow 0.3s var(--ease-soft);
}
.navbar.is-stuck { box-shadow: 0 8px 26px -16px rgba(35,35,35,0.4); }
.navbar .wrap {
  min-height: var(--navbar-h); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.nav-desktop { display: none; align-items: center; gap: 1.65rem; }
.nav-desktop a {
  position: relative; padding: 0.4rem 0;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500;
  color: var(--ink); white-space: nowrap;
  transition: color 0.22s var(--ease-soft);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--gold-deep); }
.nav-desktop a:hover::after, .nav-desktop a.is-current::after { transform: scaleX(1); }
.nav-desktop a.is-current { color: var(--gold-deep); }

.nav-social { display: flex; align-items: center; gap: 0.4rem; }
.nav-social a {
  display: grid; place-items: center; width: 34px; height: 34px;
  color: var(--muted); border-radius: 50%;
  transition: color 0.22s, background 0.22s;
}
.nav-social a:hover { color: #fff; background: var(--gold); }

.burger { width: 44px; height: 44px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform 0.28s var(--ease), opacity 0.2s; }
.nav-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1040px) { .nav-desktop { display: flex; } .burger { display: none; } }
@media (max-width: 1039px) { .navbar { display: none; } }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 80; background: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--topbar-h) + var(--brandbar-h) + 1.5rem) var(--gutter) 2rem;
  transform: translateX(100%); visibility: hidden; overflow-y: auto;
  transition: transform 0.4s var(--ease), visibility 0.4s;
}
.nav-open .drawer { transform: none; visibility: visible; }
.drawer__close {
  position: absolute; top: calc(var(--topbar-h) + 1.1rem); left: var(--gutter); z-index: 2;
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--paper);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.drawer__close:hover, .drawer__close:focus-visible {
  background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(90deg);
}
.drawer__links { display: flex; flex-direction: column; }
.drawer__links a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.2rem, 4.6vw, 1.55rem); color: var(--ink);
  padding: 0.75rem 0; border-bottom: 1px solid var(--line-soft);
}
.drawer__foot { margin-top: 2rem; }
.drawer__meta { display: grid; gap: 0.2rem; margin-top: 1rem; text-align: center; }
.drawer__meta a { display: block; padding-block: 0.5rem; font-size: var(--fs-small); color: var(--muted); }
.drawer__meta a:hover { color: var(--ink); }
body.nav-open { overflow: hidden; }
body.nav-open .scroll-serum, body.nav-open .to-top { display: none; }

/* ── 8. Floating scroll serum ────────────────────────────
   The packshot is a real cutout, so it needs no pod and no backdrop —
   it just drifts down the page. JS owns the transform. */
.scroll-serum {
  /* right ≥ the JS sway amplitude (18 px) so the swing never clips the edge */
  position: fixed; right: 24px; top: 0; z-index: 70;
  display: none; flex-direction: column; align-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s var(--ease-soft);
  will-change: transform;
}
.scroll-serum.is-on { opacity: 1; pointer-events: auto; }
.scroll-serum > picture { display: block; line-height: 0; }
.scroll-serum img {
  display: block; width: 74px; height: auto;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.34)) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: width 0.35s var(--ease), filter 0.35s var(--ease);
}
.scroll-serum:hover img, .scroll-serum:focus-visible img {
  width: 82px;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,0.42)) drop-shadow(0 0 18px rgba(201,166,84,0.45));
}
.scroll-serum__tip {
  /* Hung from the bottle's right edge so a long label never widens the
     column and pushes the bottle back off the edge. */
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius); white-space: nowrap;
  opacity: 0; transform: translateY(-5px);
  transition: opacity 0.25s, transform 0.25s;
}
.scroll-serum:hover .scroll-serum__tip,
.scroll-serum:focus-visible .scroll-serum__tip { opacity: 1; transform: none; }
@media (min-width: 1100px) { .scroll-serum { display: flex; } }

/* ── 9. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 78% 40%, #1C1C21 0%, var(--dark) 62%);
  color: var(--on-dark);
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3.25rem, 6vw, 5rem);
}
.hero__glow {
  position: absolute; right: -6%; top: 8%;
  width: min(62vw, 720px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,166,84,0.16) 0%, rgba(201,166,84,0) 62%);
  pointer-events: none;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow { from { transform: scale(1); opacity: 0.75; } to { transform: scale(1.14); opacity: 1; } }
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr); gap: clamp(1.75rem, 3vw, 3rem); }
}
.hero__eyebrow {
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 1.25rem;
}
.hero__title {
  font-size: var(--fs-h1); font-weight: 300; line-height: 1.2;
  color: #fff; margin: 0 0 1.35rem; max-width: 17ch;
}
.hero__lead {
  font-size: var(--fs-lead); line-height: 1.85;
  color: var(--on-dark-mute); max-width: 38rem; margin: 0 0 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 1.75rem 2.75rem;
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line-dark);
}
.hero__facts li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__facts strong {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 300; color: var(--gold); line-height: 1;
}
.hero__facts span {
  font-size: var(--fs-tiny); letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-faint);
}

/* The hero packshot sits on a lit studio stage: a narrow light shaft
   behind it, a pool of light at its foot, and a fading reflection.
   No orbiting ring — the bottle itself carries the frame. */
.hero__product { position: relative; display: grid; justify-items: center; padding-block: 0.5rem; }
@media (min-width: 1000px) {
  /* Let the lineup run out to the viewport edge — it is a wide packshot and a
     hard right margin cramps it. */
  .hero__product { margin-right: calc(var(--gutter) * -0.7); }
}
.hero__stage {
  --floor: 3.1rem;
  position: relative; width: 100%;
  display: grid; justify-items: center; align-items: end;
  padding-bottom: var(--floor);
}
.hero__stage > picture { display: block; line-height: 0; width: 100%; }
.hero__shaft {
  position: absolute; inset: 4% -8% 4%;
  background: radial-gradient(50% 50% at 50% 46%,
    rgba(201,166,84,0.20) 0%, rgba(201,166,84,0.055) 38%, rgba(201,166,84,0) 66%);
  pointer-events: none;
}
.hero__pool {
  position: absolute; left: 50%; bottom: calc(var(--floor) - 46px); translate: -50% 0;
  width: 86%; height: 96px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,166,84,0.26) 0%, rgba(201,166,84,0.06) 46%, rgba(201,166,84,0) 72%);
  filter: blur(2px); pointer-events: none;
  animation: poolBreathe 9s var(--ease-soft) infinite;
}
@keyframes poolBreathe {
  0%, 100% { opacity: 0.78; transform: scaleX(1); }
  50%      { opacity: 1;    transform: scaleX(1.05); }
}
.hero__lineup {
  position: relative; z-index: 3;
  width: 100%; height: auto;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.55));
  animation: lineupRise 1.15s var(--ease) both;
  will-change: transform;
}
@keyframes lineupRise {
  from { opacity: 0; transform: translateY(24px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
/* A clipped, mirrored copy reads as a polished counter. The packshot's own
   bottom margin is 2.09% of its width, so lifting the copy by that much lands
   the bottles' bases exactly on the floor line. */
.hero__reflect {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  height: var(--floor); overflow: hidden; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}
.hero__reflect img {
  position: absolute; top: 0; left: 0; width: 100%; height: auto;
  margin-top: -2.09%;
  transform: scaleY(-1);
  opacity: 0.42;
}
.hero__base {
  position: absolute; left: 50%; bottom: var(--floor); translate: -50% 0; z-index: 3;
  width: 88%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,84,0.42) 20%, rgba(201,166,84,0.42) 80%, transparent);
}
.hero__caption {
  position: relative; z-index: 4; margin-top: 0.35rem; text-align: center;
  font-size: var(--fs-tiny); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--on-dark-faint);
}

/* Reply promise under the hero actions — the low-friction route in. */
.hero__promise {
  /* Inline flow, not flex — the dot has to sit in the text, not above it. */
  margin: 1.35rem 0 0; font-size: var(--fs-small); line-height: 1.85;
  color: var(--on-dark-mute); max-width: 34rem;
}
/* Vertical padding on an inline link grows the tap target without
   changing the line box — Tajawal's shorter x-height put the Arabic
   version under the 24px minimum. */
.hero__promise a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
  padding-block: 0.4rem;
}
.hero__promise a:hover { color: #fff; }
.live-dot {
  display: inline-block; vertical-align: baseline; margin-right: 0.45rem;
  width: 8px; height: 8px; border-radius: 50%; background: #25D366;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: livePulse 2.4s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.25rem; translate: -50% 0; z-index: 3;
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--on-dark-faint);
}
.hero__scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.35; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
.hero__scroll:hover { color: var(--gold); }
@media (min-width: 1000px) { .hero__scroll { display: flex; } }

/* ── 10. Collection tiles ────────────────────────────────── */
.tiles { padding-block: clamp(2rem, 4vw, 3.5rem); background: var(--paper); }
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 900px) { .tile-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--dark);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), opacity 0.4s; opacity: 0.86; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.1) 30%, rgba(12,12,12,0.66) 100%);
  transition: background 0.4s var(--ease-soft);
}
.tile:hover img { transform: scale(1.07); opacity: 1; }
.tile:hover::after { background: linear-gradient(180deg, rgba(12,12,12,0.05) 20%, rgba(12,12,12,0.55) 100%); }
.tile__label {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.1rem;
  text-align: center; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400; color: #fff;
}

/* ── 11. About ───────────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 2.75rem; align-items: center; }
@media (min-width: 1000px) { .about__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.about__copy h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1.1rem; }
.about__copy .lead { margin-bottom: 1rem; }
.about__points { margin-top: 2.25rem; display: grid; gap: 1.5rem; }
.point { position: relative; padding-left: 3.25rem; }
.point__num {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--gold-deep);
}
.point h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.point p { font-size: var(--fs-body); color: var(--muted); }

.about__media { position: relative; }
.about__media img { width: 100%; height: auto; }
.about__badge {
  position: absolute; right: -0.5rem; bottom: -1rem;
  background: var(--gold); color: var(--ink);
  padding: 1.1rem 1.35rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lift);
}
.about__badge strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 300; line-height: 1; }
.about__badge span { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.5; }

/* ── 12. Collections ─────────────────────────────────────── */
.col-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .col-grid { grid-template-columns: repeat(3, 1fr); } }
.col-card {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow 0.4s var(--ease-soft), transform 0.4s var(--ease-soft), border-color 0.4s;
}
.col-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); border-color: transparent; }
.col-well { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.col-well img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.col-card:hover .col-well img { transform: scale(1.05); }
.col-flag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 0.65rem; background: var(--ink); color: #fff;
}
.col-flag--pink { background: var(--pink); }
.col-flag--blue { background: var(--blue); }
.col-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.col-body h3 { font-size: 1.4rem; font-weight: 400; }
.col-tag { margin-top: 0.2rem; font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.col-body > p:not(.col-tag) { margin-top: 0.9rem; font-size: var(--fs-body); color: var(--muted); }
.col-spec {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1rem;
  margin: 1.25rem 0; padding: 0.9rem 0; border-block: 1px solid var(--line-soft); flex: 1;
  align-content: start;
}
.col-spec dt { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.col-spec dd { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }

/* ── 13. Products ────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat {
  border: 1px solid var(--line); padding: 1.75rem;
  background: var(--paper); position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.cat:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.cat__num {
  display: block; font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 400; color: var(--gold-num); line-height: 1; margin-bottom: 0.65rem;
}
.cat h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; }
.cat p { font-size: var(--fs-body); color: var(--muted); }
.cat__refs {
  margin-top: auto; padding-top: 0.85rem; border-top: 1px solid var(--line-soft);
  font-size: var(--fs-tiny) !important; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep) !important;
}
.cat--cta { background: var(--dark); border-color: var(--dark); display: flex; flex-direction: column; justify-content: center; }
.cat--cta h3 { color: #fff; }
.cat--cta p { color: var(--on-dark-mute); margin-bottom: 1.1rem; }
.cat--cta:hover { border-color: var(--gold); }

.routines {
  margin-top: clamp(2.5rem, 5vw, 4rem); background: var(--paper-2);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: grid; gap: 1.75rem;
}
@media (min-width: 900px) { .routines { grid-template-columns: minmax(250px, 0.8fr) 1.2fr; gap: 3rem; } }
.routines__head h3 { font-size: var(--fs-h2); font-weight: 300; margin: 0 0 0.9rem; }
.routines__head p { font-size: var(--fs-body); color: var(--muted); margin-bottom: 1.25rem; }
.routine-list { display: grid; }
.routine-list li { display: grid; gap: 0.15rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.routine-list li:first-child { padding-top: 0; }
.routine-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.routine-list strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.routine-list span { font-size: var(--fs-small); color: var(--muted); }

/* ── 14. Evaluation sets ─────────────────────────────────── */
.set-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .set-grid { grid-template-columns: repeat(3, 1fr); } }
.set-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: box-shadow 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.set-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.set-card--featured { border-color: var(--gold); }
.set-flag {
  position: absolute; top: 0; right: 0; z-index: 3;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.42rem 0.7rem;
}
.set-well {
  display: block; width: 100%; aspect-ratio: 2 / 3;
  position: relative; overflow: hidden; background: var(--paper-2);
  border-bottom: 1px solid var(--line); cursor: zoom-in;
}
.set-well img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s var(--ease); }
.set-well:hover img { transform: scale(1.04); }
.zoom {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 0.7rem;
  background: rgba(12,12,12,0.94); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  transform: translateY(100%); transition: transform 0.3s var(--ease);
}
.set-well:hover .zoom, .set-well:focus-visible .zoom { transform: none; }
.set-body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.set-pcs { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--gold-num); line-height: 1; }
.set-body h3 { font-size: var(--fs-h3); margin-top: 0.35rem; }
.set-sub { font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.25rem; }
.set-list { margin: 1.15rem 0; display: grid; gap: 0.45rem; flex: 1; align-content: start; }
.set-list li { position: relative; padding-left: 1rem; font-size: var(--fs-small); color: var(--muted); line-height: 1.6; }
.set-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 1px; background: var(--gold); }

/* ── 15. Process ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 700px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { padding: 1.75rem 1.5rem 1.75rem 0; border-top: 2px solid var(--line); position: relative; }
@media (min-width: 700px) { .step { padding-right: 2rem; } }
.step::after {
  content: ""; position: absolute; left: 0; top: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.8s var(--ease);
}
.step.is-in::after { width: 44px; }
.step__num { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--gold-num); margin-bottom: 0.55rem; }
.step h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.step p { font-size: var(--fs-small); color: var(--muted); }
.process-cta {
  margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.process-cta p { font-size: var(--fs-lead); color: var(--muted); max-width: 34rem; }

/* ── 16. Commercial terms ────────────────────────────────── */
.terms-grid { display: grid; grid-template-columns: 1fr; background: var(--paper); border: 1px solid var(--line); }
@media (min-width: 700px)  { .terms-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .terms-grid { grid-template-columns: repeat(3, 1fr); } }
.term { padding: 1.9rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); transition: background 0.3s; }
.term:hover { background: var(--paper-2); }
.term:last-child { border-bottom: 0; }
@media (min-width: 700px) { .term:nth-child(2n) { border-right: 0; } .term:nth-last-child(-n+2) { border-bottom: 0; } }
@media (min-width: 1100px) {
  .term:nth-child(2n) { border-right: 1px solid var(--line); }
  .term:nth-child(3n) { border-right: 0; }
  .term:nth-last-child(-n+3) { border-bottom: 0; }
}
.term dt { font-family: var(--font-display); font-size: var(--fs-h3); color: var(--ink); margin-bottom: 0.6rem; }
.term dd { font-size: var(--fs-small); color: var(--muted); line-height: 1.8; }

/* ── 17. Markets ─────────────────────────────────────────── */
.region-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 700px)  { .region-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .region-grid { grid-template-columns: repeat(4, 1fr); } }
.region {
  padding: 2rem 1.6rem; text-align: center; border: 1px solid var(--line);
  transition: border-color 0.35s, transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft);
}
.region:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.region h3 { font-size: var(--fs-h3); margin-bottom: 0.7rem; }
.region__countries {
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.06em;
  color: var(--gold-deep); margin-bottom: 0.8rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line-soft);
}
.region p:last-child { font-size: var(--fs-small); color: var(--muted); }

/* ── 18. Instagram band ──────────────────────────────────── */
.ig-band { background: var(--paper); padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.ig-band__label { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 300; color: var(--ink); }
.ig-band__handle {
  display: inline-block; margin-top: 0.2rem;
  font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500; color: var(--gold-num);
  transition: color 0.25s, letter-spacing 0.35s var(--ease);
}
.ig-band__handle:hover { color: var(--gold-deep); letter-spacing: 0.02em; }
.ig-band__sub { margin-top: 0.9rem; font-size: var(--fs-body); color: var(--muted); }

/* ── 19. Journal ─────────────────────────────────────────── */
/* Intro on its own row, then an even grid of cards — the old two-column
   layout assumed exactly one post card and collapsed once there were four. */
.journal__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.journal__intro { max-width: 46rem; }
.journal__cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 760px)  { .journal__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .journal__cards { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.journal__cards .post-card { display: flex; flex-direction: column; height: 100%; }
.journal__cards .post-card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.journal__cards .post-card__body h3 { font-size: clamp(1.02rem, 1.1vw, 1.16rem); line-height: 1.35; }
.journal__cards .post-card__body p { font-size: var(--fs-small); flex: 1; }
.journal__cards .link-arrow { margin-top: 1rem; }
.journal__intro h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1.1rem; }
.journal__intro p { font-size: var(--fs-body); color: var(--muted); margin-bottom: 1.4rem; }
.post-card {
  background: var(--paper); border: 1px solid var(--line); overflow: hidden;
  transition: box-shadow 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.post-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--dark); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 1.75rem; }
.post-card__meta {
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.75rem;
}
.post-card__body h3 { font-size: clamp(1.2rem, 1.9vw, 1.6rem); font-weight: 400; margin-bottom: 0.75rem; }
.post-card__body h3 a:hover { color: var(--gold-deep); }
.post-card__body > p { font-size: var(--fs-body); color: var(--muted); margin-bottom: 1.1rem; }

/* ── 20. Team ────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 700px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.person { text-align: center; display: flex; flex-direction: column; align-items: center; }
.avatar {
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
  background: var(--dark); position: relative; margin-bottom: 1.35rem;
  box-shadow: 0 0 0 1px var(--line), 0 0 0 8px var(--paper), 0 0 0 9px var(--line-soft);
  transition: box-shadow 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}
.section--grey .avatar { box-shadow: 0 0 0 1px var(--line), 0 0 0 8px var(--paper-2), 0 0 0 9px var(--line); }
.person:hover .avatar { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--gold), 0 0 0 8px var(--paper), 0 0 0 9px var(--gold-soft); }

/* The portrait itself is the LinkedIn link; the badge tells you so. */
.avatar-link { position: relative; display: block; }
.avatar__badge {
  position: absolute; right: 4px; bottom: 1.55rem; z-index: 2;
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--linkedin); color: #fff;
  box-shadow: 0 0 0 3px var(--paper), 0 6px 14px -6px rgba(10,102,194,0.7);
  opacity: 0; transform: scale(0.6) translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.person:hover .avatar__badge,
.avatar-link:focus-visible .avatar__badge { opacity: 1; transform: none; }
.avatar-link:focus-visible .avatar { box-shadow: 0 0 0 1px var(--gold), 0 0 0 8px var(--paper), 0 0 0 9px var(--gold-soft); }

/* The small link under the bio */
.person__li {
  display: inline-flex; align-items: center; gap: 0.45rem; align-self: center;
  margin-top: 0.45rem; padding: 0.4rem 0.9rem 0.4rem 0.65rem;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--linkedin) !important; font-size: var(--fs-tiny) !important;
  font-weight: 700 !important; letter-spacing: 0.05em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.person__li svg { flex: none; }
.person__li:hover, .person__li:focus-visible {
  background: var(--linkedin); border-color: var(--linkedin); color: #fff !important;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar--mono {
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 30%, #26262B 0%, var(--dark) 72%);
}
.monogram { font-family: var(--font-display); font-size: 2.6rem; font-weight: 300; color: var(--gold); letter-spacing: 0.04em; }
.person h3 { font-size: 1.3rem; font-weight: 400; }
.person .role {
  margin-top: 0.3rem; font-size: var(--fs-tiny); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep);
}
.person .bio { margin-top: 1rem; font-size: var(--fs-body); color: var(--muted); max-width: 24rem; }
.person__links {
  margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.3rem; width: 100%; max-width: 24rem;
}
.person__links a { padding-block: 0.3rem; font-size: var(--fs-small); font-weight: 600; color: var(--ink); word-break: break-word; }
.person__links a:hover { color: var(--gold-deep); }

/* ── 21. RFQ ─────────────────────────────────────────────── */
.rfq { background: var(--dark); color: var(--on-dark); padding-block: var(--section-y); }
.rfq__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1000px) { .rfq__grid { grid-template-columns: 5fr 7fr; gap: 4.5rem; } }
.rfq h2 { color: #fff; font-size: var(--fs-h2); font-weight: 300; }
.rfq .lead { margin-top: 1.2rem; color: var(--on-dark-mute); max-width: 30rem; }
.rfq__wa {
  margin-top: 2.25rem; border: 1px solid var(--line-dark); padding: 1.25rem 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start; max-width: 28rem;
}
/* Flex would otherwise shrink the glyph to nothing; give it a disc of its own. */
.rfq__wa-glyph {
  flex: none; width: 40px; height: 40px; padding: 7px; border-radius: 50%;
  background: linear-gradient(155deg, #5BD066 0%, #25D366 46%, #1DBE5A 100%);
  box-shadow: 0 8px 20px -8px rgba(29,190,90,0.7);
}
.rfq__wa strong { display: block; font-size: var(--fs-tiny); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.rfq__wa p { font-size: var(--fs-body); color: var(--on-dark-mute); }
.rfq__wa a { color: #fff; border-bottom: 1px solid var(--gold); display: inline-block; padding-block: 0.2rem; }
.rfq__facts { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 28rem; }
@media (min-width: 520px) { .rfq__facts { grid-template-columns: 1fr 1fr; } }
.rfq__facts dt { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-faint); margin-bottom: 0.3rem; }
.rfq__facts dd { font-size: var(--fs-small); font-weight: 600; color: var(--on-dark); word-break: break-word; }
.rfq__facts a { display: inline-block; padding-block: 0.3rem; }
.rfq__facts a:hover { color: var(--gold); }

.form { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label, .checks-field > legend {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-mute); margin-bottom: 0.55rem; padding: 0;
}
.field .req { color: var(--gold); }
.field input:not([type="checkbox"]), .field select, .field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); color: #fff;
  padding: 0.95rem 1.05rem; font-size: var(--fs-body); border-radius: var(--radius);
  appearance: none; width: 100%;
  transition: border-color 0.25s var(--ease-soft), background 0.25s var(--ease-soft);
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23C9A654' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem;
}
.field input:not([type="checkbox"]):hover, .field select:hover, .field textarea:hover { border-color: rgba(255,255,255,0.3); }
.field input:not([type="checkbox"]):focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.08);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(242,242,242,0.34); }
.field option { background: var(--dark-2); color: #fff; }
.field.is-invalid input, .field.is-invalid select { border-color: #E0796B; }
.field .field-msg { margin-top: 0.4rem; font-size: var(--fs-small); color: #F0A79B; }
.checks { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.check {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0; color: var(--on-dark);
  border: 1px solid var(--line-dark); padding: 0.6rem 0.85rem;
  font-size: var(--fs-tiny); font-weight: 600; letter-spacing: 0.06em; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.check:hover { border-color: rgba(255,255,255,0.32); }
.check:has(input:checked) { border-color: var(--gold); background: rgba(201,166,84,0.13); }
.check input { accent-color: var(--gold); margin: 0; width: 14px; height: 14px; flex: 0 0 14px; padding: 0; appearance: auto; -webkit-appearance: checkbox; background: none; border: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.privacy { grid-column: 1 / -1; font-size: var(--fs-small); color: var(--on-dark-mute); line-height: 1.8; }
.form-actions { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .form-actions { grid-template-columns: 1fr 1fr; } }
.form-status { grid-column: 1 / -1; font-size: var(--fs-body); color: var(--gold); min-height: 1.2em; line-height: 1.7; }
.form-status.is-error { color: #F0A79B; }

/* ── 22. USP strip ───────────────────────────────────────── */
.usp { background: var(--paper); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem); }
.usp .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.25rem 1.5rem; text-align: center; }
@media (min-width: 900px) { .usp .wrap { grid-template-columns: repeat(4, 1fr); } }
.usp__item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.usp__item svg { color: var(--gold); transition: transform 0.4s var(--ease); }
.usp__item:hover svg { transform: translateY(-4px); }
.usp__item h3 { font-size: var(--fs-h3); font-weight: 500; }
.usp__item p { font-size: var(--fs-small); color: var(--muted); }

/* ── 23. Head office / map ───────────────────────────────── */
.office { background: var(--paper-2); border-top: 1px solid var(--line); }
.office__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding-block: var(--section-y); }
@media (min-width: 1000px) { .office__grid { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; } }
.office__copy h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1rem; }
.office__copy > p { font-size: var(--fs-body); color: var(--muted); }
.office__facts { margin: 1.75rem 0; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .office__facts { grid-template-columns: 1fr 1fr; } }
.office__facts dt { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.25rem; }
.office__facts dd { font-size: var(--fs-small); font-weight: 600; color: var(--ink); }
.office__map {
  position: relative; border: 1px solid var(--line); background: var(--paper);
  aspect-ratio: 16 / 10; overflow: hidden; box-shadow: var(--shadow);
}
.office__map iframe { width: 100%; height: 100%; }

/* ── 24. Footer ──────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--on-dark-mute); border-top: 3px solid var(--gold); }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 700px)  { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; } }
.logo--foot img { height: 40px; width: auto; max-width: 220px; object-fit: contain; }
.foot-brand p { margin-top: 1.4rem; font-size: var(--fs-small); line-height: 1.85; max-width: 24rem; }
.foot-legal { color: var(--on-dark-faint); letter-spacing: 0.04em; }
.foot-col h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: #fff; margin-bottom: 1.15rem;
}
.foot-col a, .foot-col p {
  display: block; font-size: var(--fs-small); color: var(--on-dark-mute);
  padding-block: 0.32rem; word-break: break-word;
  transition: color 0.2s, padding-left 0.28s var(--ease);
}
.foot-col a:hover { color: var(--gold); padding-left: 6px; }
.foot-bottom { border-top: 1px solid var(--line-dark); }
.foot-bottom .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.9rem; padding-block: 1.35rem;
}
.foot-bottom p { font-size: var(--fs-tiny); color: var(--on-dark-faint); }
.foot-social { display: flex; gap: 0.5rem; }
.foot-social a {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: var(--on-dark-mute);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.foot-social a:hover { color: #fff; background: var(--gold); border-color: var(--gold); }

.foot-bottom a {
  display: inline-block; padding-block: 0.3rem;   /* keeps the tap target ≥ 24px */
  color: var(--on-dark); border-bottom: 1px solid rgba(201,166,84,0.6);
}
.foot-bottom a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.foot-sep { margin-inline: 0.15rem; opacity: 0.5; }
.foot-note { color: var(--on-dark-faint); }

/* ── 25. WhatsApp widget, back to top, lightbox ──────────── */
/* The quick-contact disc anchors the bottom-right corner; back-to-top
   stacks above it so the two never overlap. */
.wa-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 80;
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0; transform: translateY(14px) scale(0.9); pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.wa-fab.is-on { opacity: 1; transform: none; pointer-events: auto; }
.wa-fab__btn {
  position: relative; flex: none;
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(155deg, #5BD066 0%, #25D366 46%, #1DBE5A 100%);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(29,190,90,0.55), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-fab__btn svg { position: relative; z-index: 2; }
.wa-fab__btn:hover, .wa-fab__btn:focus-visible {
  transform: scale(1.07);
  box-shadow: 0 18px 38px -8px rgba(29,190,90,0.7), 0 2px 6px rgba(0,0,0,0.2);
}
.wa-fab__ping {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  animation: waPing 2.8s var(--ease-soft) infinite;
}
@keyframes waPing {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-fab__tip {
  order: -1;
  background: var(--ink); color: #fff;
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap; padding: 0.55rem 0.85rem; border-radius: var(--radius);
  box-shadow: 0 10px 26px -12px rgba(0,0,0,0.55);
  opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.wa-fab__tip::after {
  content: ""; position: absolute; right: -4px; top: 50%; translate: 0 -50%;
  width: 8px; height: 8px; background: var(--ink); rotate: 45deg;
}
.wa-fab__tip { position: relative; }
.wa-fab:hover .wa-fab__tip,
.wa-fab:focus-within .wa-fab__tip,
.wa-fab.is-peek .wa-fab__tip { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .wa-fab { right: 0.9rem; bottom: 0.9rem; }
  .wa-fab__btn { width: 54px; height: 54px; }
  .wa-fab__btn svg { width: 28px; height: 28px; }
  .wa-fab__tip { display: none; }
}
body.nav-open .wa-fab { display: none; }

.to-top {
  position: fixed; right: 1.5rem; bottom: 6.4rem; z-index: 75;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 50%;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.25s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); }
@media (max-width: 760px) { .to-top { right: 1.15rem; bottom: 5.1rem; width: 40px; height: 40px; } }

.lightbox {
  border: 0; padding: 0; max-width: min(94vw, 780px); max-height: 92vh;
  background: var(--dark); color: var(--on-dark);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
}
.lightbox::backdrop { background: rgba(12,12,12,0.88); backdrop-filter: blur(3px); }
.lightbox figure { display: flex; flex-direction: column; }
.lightbox img { width: 100%; height: auto; max-height: 82vh; object-fit: contain; background: #fff; }
.lightbox figcaption {
  padding: 0.9rem 1.2rem; font-size: var(--fs-tiny); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute);
}
.lightbox__close {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(12,12,12,0.75); color: #fff; border-radius: 50%; font-size: 14px;
}
.lightbox__close:hover { background: var(--gold); }

/* ── 26. Reveal animations ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0ms);
}

/* ── 26b. Fast-start cards ───────────────────────────────── */
.quickstart { padding-block: clamp(3rem, 5.5vw, 4.75rem); }
.qs-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 860px) { .qs-grid { grid-template-columns: repeat(3, 1fr); } }
.qs {
  position: relative; background: var(--paper);
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.qs::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--gold); transition: width 0.45s var(--ease);
}
.qs:hover { background: var(--paper-2); }
.qs:hover::before, .qs:focus-visible::before { width: 100%; }
.qs__num {
  /* 18px sits under the large-text threshold, so it needs the deeper gold. */
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.18em; color: var(--gold-deep);
}
.qs h3 { font-size: var(--fs-h3); font-weight: 400; color: var(--ink); }
.qs p { color: var(--body); line-height: 1.85; flex: 1; }
.qs__go {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 0.35rem; font-size: var(--fs-small); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep);
}
.qs__go b { font-weight: 400; transition: transform 0.25s var(--ease); }
.qs:hover .qs__go b { transform: translateX(5px); }

/* ── 26c. Category enquiry link ──────────────────────────── */
.cat__ask {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem;
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.05em;
  color: var(--gold-deep); border-bottom: 1px solid transparent; align-self: flex-start;
  transition: color 0.25s, border-color 0.25s;
}
.cat__ask span { transition: transform 0.25s var(--ease); }
.cat__ask:hover { color: var(--ink); border-bottom-color: var(--gold); }
.cat__ask:hover span { transform: translateX(4px); }

/* ── 26d. Buyer FAQ ──────────────────────────────────────── */
.faq-grid {
  display: grid; gap: 0; border-top: 1px solid var(--line);
  max-width: 54rem; margin-inline: auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.15rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400;
  color: var(--ink); transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: none; width: 13px; height: 13px; margin-top: 0.4rem;
  background:
    linear-gradient(var(--gold-deep), var(--gold-deep)) center / 13px 1px no-repeat,
    linear-gradient(var(--gold-deep), var(--gold-deep)) center / 1px 13px no-repeat;
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); background-size: 13px 1px, 0 0; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-body { overflow: hidden; padding-bottom: 1.35rem; }
.faq-body p { color: var(--body); line-height: 1.9; max-width: 40rem; }
.faq-item[open] .faq-body { animation: faqOpen 0.4s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-cta {
  max-width: 54rem; margin: clamp(2.25rem, 4vw, 3.25rem) auto 0;
  display: grid; gap: 1.25rem; align-items: center;
  padding: clamp(1.6rem, 3vw, 2.25rem); background: var(--paper-2);
  border-left: 3px solid var(--gold);
}
@media (min-width: 860px) { .faq-cta { grid-template-columns: 1fr auto; gap: 2rem; } }
.faq-cta p { color: var(--body); line-height: 1.85; }
.faq-cta strong { color: var(--ink); font-weight: 600; }
.faq-cta__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ── 26e. What happens next, under the RFQ intro ─────────── */
.rfq__next { margin-top: 2rem; display: grid; gap: 0.95rem; }
.rfq__next li { display: flex; gap: 0.85rem; align-items: flex-start; }
.rfq__next span {
  flex: none; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%; margin-top: 0.1rem;
  border: 1px solid rgba(201,166,84,0.5); color: var(--gold);
  font-size: var(--fs-tiny); font-weight: 700;
}
.rfq__next p { font-size: var(--fs-small); line-height: 1.8; color: var(--on-dark-mute); }
.rfq__next strong { color: var(--on-dark); font-weight: 600; }

/* ── 26f. Footer call to action ──────────────────────────── */
.foot-cta {
  margin-top: 0.6rem; color: var(--gold) !important;
  font-weight: 600; letter-spacing: 0.04em;
}
.foot-cta span { display: inline-block; transition: transform 0.25s var(--ease); }
.foot-cta:hover span { transform: translateX(4px); }

/* ── 26g. Inside the manufacture ─────────────────────────── */
.manufacture { background: var(--dark); color: var(--on-dark); }
.manufacture .section-head h2 { color: #fff; }
.manufacture .section-head .sub { color: var(--on-dark-mute); }
.mf-grid { display: grid; gap: clamp(2.25rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 1000px) { .mf-grid { grid-template-columns: 0.92fr 1.08fr; } }

.mf-points { display: grid; gap: 1.6rem; counter-reset: mf; }
.mf-points li { position: relative; padding-left: 3.1rem; counter-increment: mf; }
.mf-points li::before {
  content: counter(mf, decimal-leading-zero);
  position: absolute; left: 0; top: 0.05rem;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.12em; color: var(--gold);
}
.mf-points li::after {
  content: ""; position: absolute; left: 2.05rem; top: 0.15rem; width: 1px; height: calc(100% - 0.15rem);
  background: linear-gradient(180deg, rgba(201,166,84,0.4), rgba(201,166,84,0));
}
.mf-points h3 { font-size: var(--fs-h3); font-weight: 400; color: #fff; margin-bottom: 0.45rem; }
.mf-points p { font-size: var(--fs-body); line-height: 1.9; color: var(--on-dark-mute); }
.mf-copy .link-arrow { margin-top: 1.9rem; color: var(--gold); }
.mf-copy .link-arrow::before { background: var(--gold); }
.mf-copy .link-arrow:hover { color: #fff; }

.mf-screen {
  /* The still is a CSS background rather than a <video poster>: poster loads
     eagerly in every format the browser has, which cost 114 KB of JPEG above
     the fold. image-set() gets AVIF and defers until the panel is painted. */
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: #000 center / cover no-repeat;
  background-image: image-set(
    url("../assets/products/range-overview-620.avif") type("image/avif"),
    url("../assets/products/range-overview-620.webp") type("image/webp"),
    url("../assets/products/range-overview-620.jpg") type("image/jpeg"));
  background-image: -webkit-image-set(
    url("../assets/products/range-overview-620.avif") type("image/avif"),
    url("../assets/products/range-overview-620.webp") type("image/webp"),
    url("../assets/products/range-overview-620.jpg") type("image/jpeg"));
  border: 1px solid var(--line-dark);
  box-shadow: 0 34px 70px -30px rgba(0,0,0,0.85);
}
.mf-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.55s var(--ease-soft);
}
.mf-video.is-active { opacity: 1; }
.mf-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
  background: linear-gradient(180deg, rgba(12,12,12,0.35), rgba(12,12,12,0.72));
  color: #fff; text-align: center;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.mf-screen.is-playing .mf-play { opacity: 0; visibility: hidden; }
.mf-play__disc {
  display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  background: rgba(12,12,12,0.5); padding-left: 3px;
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s var(--ease);
}
.mf-play:hover .mf-play__disc { background: var(--gold); color: var(--ink); transform: scale(1.08); }
.mf-play__label {
  font-size: var(--fs-small); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.mf-play__label b {
  display: block; margin-top: 0.35rem; font-size: var(--fs-tiny); font-weight: 400;
  letter-spacing: 0.06em; text-transform: none; color: var(--on-dark-faint);
}
.mf-caption {
  margin-top: 1.1rem; font-size: var(--fs-small); line-height: 1.8; color: var(--on-dark-mute);
  min-height: 3.2em;
}
.mf-caption b { color: var(--gold); font-weight: 600; }

.mf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem 1.1rem; margin-top: 0.5rem; }
@media (min-width: 620px) { .mf-steps { grid-template-columns: repeat(6, 1fr); } }
.mf-steps li { display: grid; gap: 0.3rem; }
.mf-steps b {
  font-family: var(--font-display); font-size: var(--fs-tiny); font-weight: 400;
  letter-spacing: 0.14em; color: var(--on-dark-faint); transition: color 0.3s;
}
.mf-steps span {
  font-size: var(--fs-tiny); letter-spacing: 0.06em; color: var(--on-dark-mute); transition: color 0.3s;
}
.mf-steps i { display: block; height: 2px; background: rgba(255,255,255,0.14); overflow: hidden; }
.mf-steps i::after {
  content: ""; display: block; height: 100%; width: 0; background: var(--gold);
}
.mf-steps li.done i::after { width: 100%; }
.mf-steps li.active i::after { width: 100%; animation: mfFill 5s linear forwards; }
@keyframes mfFill { from { width: 0; } to { width: 100%; } }
.mf-steps li.active b, .mf-steps li.active span { color: var(--gold); }
.mf-steps li.done b, .mf-steps li.done span { color: var(--on-dark); }

.mf-disclaimer {
  margin-top: 1.25rem; font-size: var(--fs-tiny); line-height: 1.75; color: var(--on-dark-faint);
  border-left: 1px solid var(--line-dark); padding-left: 0.85rem;
}

/* ── 26h. Marketplace proof ──────────────────────────────── */
:root {
  --trendyol:      #E0670C;   /* fills and rules — non-text, no contrast floor */
  --trendyol-text: #B54A00;   /* small caps on the card — 5.32:1 on white */
}
.proof__grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 980px) { .proof__grid { grid-template-columns: 1.15fr 0.85fr; } }
.proof__copy h2 { font-size: var(--fs-h2); font-weight: 300; margin-bottom: 1.25rem; }
.proof__copy p { color: var(--body); line-height: 1.9; margin-bottom: 1rem; max-width: 40rem; }
.proof__copy strong { color: var(--ink); font-weight: 700; }
.proof__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-top: 1.75rem; }

.proof__card {
  background: var(--paper); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow); border-top: 3px solid var(--trendyol);
}
.ty-head { padding-bottom: 1.15rem; border-bottom: 1px solid var(--line-soft); }
/* Trendyol's own wordmark, in Trendyol's own orange. */
.ty-logo { display: block; color: var(--trendyol); }
.ty-logo svg { display: block; width: 118px; height: auto; }
.ty-name {
  margin-top: 0.7rem; font-family: var(--font-display); font-size: var(--fs-h3);
  font-weight: 400; color: var(--ink);
}
.ty-stats { display: grid; gap: 1.35rem; margin-top: 1.35rem; }
.ty-stats dt { font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.ty-stats dd { display: flex; align-items: baseline; gap: 0.4rem; margin: 0.3rem 0 0.55rem; }
.ty-stats b { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; line-height: 1; color: var(--ink); }
.ty-stats span { font-size: var(--fs-small); font-weight: 600; color: var(--muted); }
.ty-bar { height: 4px; background: var(--line); overflow: hidden; }
.ty-bar i { display: block; height: 100%; background: var(--trendyol); width: 0; transition: width 1.1s var(--ease) 0.15s; }
.reveal:not(.is-in) .ty-bar i { width: 0 !important; }
.ty-points { margin-top: 1.5rem; padding-top: 1.35rem; border-top: 1px solid var(--line-soft); display: grid; gap: 0.6rem; }
.ty-points li { position: relative; padding-left: 1.4rem; font-size: var(--fs-small); line-height: 1.75; color: var(--body); }
.ty-points li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px;
  border: 1px solid var(--trendyol); rotate: 45deg;
}
.ty-foot { margin-top: 1.25rem; font-size: var(--fs-tiny); line-height: 1.7; color: var(--muted); }

/* ── 26i. Cursor follower ────────────────────────────────
   A small gold dot that tracks the pointer exactly, and a ring that lags
   behind it. Only for devices with a real pointer — touch never sees it,
   and it never intercepts a click. */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) and (min-width: 1100px) {
  .cursor {
    display: block; position: fixed; left: 0; top: 0; z-index: 200;
    pointer-events: none; mix-blend-mode: difference;
    opacity: 0; transition: opacity 0.3s var(--ease-soft);
  }
  .cursor.is-on { opacity: 1; }
  .cursor__dot, .cursor__ring {
    position: absolute; left: 0; top: 0; border-radius: 50%;
    translate: -50% -50%;
  }
  .cursor__dot {
    width: 6px; height: 6px; background: var(--gold);
    transform: translate3d(var(--x, 0), var(--y, 0), 0);
  }
  .cursor__ring {
    width: 34px; height: 34px; border: 1px solid rgba(201,166,84,0.75);
    transform: translate3d(var(--rx, 0), var(--ry, 0), 0) scale(var(--s, 1));
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
  }
  /* Over anything clickable the ring opens up and the dot disappears into it. */
  .cursor.is-link .cursor__ring { width: 52px; height: 52px; border-color: var(--gold); }
  .cursor.is-link .cursor__dot { opacity: 0; }
  .cursor.is-down .cursor__ring { width: 26px; height: 26px; }
  body.has-cursor, body.has-cursor a, body.has-cursor button,
  body.has-cursor [role="button"], body.has-cursor summary { cursor: none; }
  body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: auto; }
}

/* ── 28b. Article extras ─────────────────────────────────── */
.post-toc {
  margin: 2rem 0 2.5rem; padding: 1.35rem 1.6rem;
  background: var(--paper-2); border-left: 3px solid var(--gold);
}
.post-toc ol { counter-reset: toc; display: grid; gap: 0.5rem; }
.post-toc li { counter-increment: toc; position: relative; padding-left: 2rem; }
.post-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 0; top: 0.15em;
  font-family: var(--font-display); font-size: var(--fs-tiny);
  letter-spacing: 0.1em; color: var(--gold-deep);
}
.post-toc a {
  display: inline-block; padding-block: 0.15rem;   /* keeps the tap target ≥ 24px */
  font-size: var(--fs-body); color: var(--body); border-bottom: 1px solid transparent;
}
.post-toc a:hover { color: var(--ink); border-bottom-color: var(--gold); }
[dir="rtl"] .post-toc { border-left: 0; border-right: 3px solid var(--gold); }
[dir="rtl"] .post-toc li { padding-left: 0; padding-right: 2rem; }
[dir="rtl"] .post-toc li::before { left: auto; right: 0; }

.post-note {
  margin: 1.75rem 0; padding: 1.1rem 1.4rem;
  background: var(--paper-2); border-left: 3px solid var(--gold);
  font-size: var(--fs-body); line-height: 1.85; color: var(--body);
}
[dir="rtl"] .post-note { border-left: 0; border-right: 3px solid var(--gold); }

/* Wide comparison tables scroll on their own rather than the page. */
.post-table-wrap { overflow-x: auto; margin: 1.9rem 0; }
.post-table-wrap .post-table { margin: 0; min-width: 32rem; }

/* ── 27. Motion & print ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .cursor { display: none !important; }
  .hero__lineup, .hero__glow, .hero__pool, .live-dot, .wa-fab__ping { animation: none !important; }
  .hero__lineup { opacity: 1; }
  .scroll-serum { display: none !important; }
}

@media print {
  .topbar, .site-header, .drawer, .scroll-serum, .to-top, .scroll-progress,
  .hero__product, .set-well, .form-actions, .office__map, .tiles, .wa-fab { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .rfq, .office__grid { padding-block: 1.2rem; page-break-inside: avoid; }
  .hero, .rfq, .site-footer, .cat--cta { background: #fff !important; color: #000 !important; }
  .hero__title, .hero__lead, .rfq h2, .rfq .lead, .rfq__facts dd, .foot-col a, .foot-col p, .cat--cta h3, .cat--cta p { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; }
}

/* ── 28. Journal article ─────────────────────────────────── */
.post-hero {
  position: relative; background: var(--dark); color: var(--on-dark);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.post-hero__media { position: absolute; inset: 0; }
.post-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.post-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.9) 100%);
}
.post-hero__inner { position: relative; z-index: 2; max-width: 52rem; }
.crumbs { display: flex; gap: 0.55rem; font-size: var(--fs-tiny); color: var(--on-dark-faint); margin-bottom: 1.25rem; }
.crumbs a { padding-block: 0.25rem; }
.crumbs a:hover { color: var(--gold); }
.post-hero h1 {
  font-size: clamp(1.65rem, 1.1rem + 2.3vw, 3rem); font-weight: 300;
  color: #fff; line-height: 1.22;
}
.post-hero__meta {
  margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem;
  font-size: var(--fs-tiny); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}

.post-body { max-width: 46rem; padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem); }
.post-body > * + * { margin-top: 1.35rem; }
.post-body p { font-size: 1.0625rem; line-height: 1.85; color: var(--body); }
.post-lede { font-size: 1.1875rem !important; line-height: 1.8 !important; color: var(--ink) !important; }
.post-body h2 {
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.8rem); font-weight: 400;
  margin-top: 2.75rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.post-body h3 { font-size: var(--fs-h3); font-weight: 500; margin-top: 1.9rem; }
.post-body h3 + p { margin-top: 0.5rem; }
.post-body em { font-style: italic; }
.post-body strong { font-weight: 700; color: var(--ink); }

.post-list { display: grid; gap: 0.9rem; }
.post-list li { position: relative; padding-left: 1.6rem; font-size: 1.0625rem; line-height: 1.8; }
.post-list li::before {
  content: ""; position: absolute; left: 0; top: 0.82em;
  width: 9px; height: 1px; background: var(--gold);
}

.post-steps { display: grid; gap: 0.9rem; counter-reset: pstep; }
.post-steps li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.1rem 1.25rem; background: var(--paper-2); border-left: 2px solid var(--gold);
}
.post-steps span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--gold-deep); line-height: 1.2; }
.post-steps strong { display: block; font-size: 1.0625rem; color: var(--ink); }
.post-steps p { margin-top: 0.25rem; font-size: var(--fs-body) !important; color: var(--muted); line-height: 1.7 !important; }

.callout {
  padding: 1.4rem 1.6rem; background: var(--paper-2); border-left: 3px solid var(--ink);
}
.callout p { font-size: 1.0625rem !important; margin: 0; }
.callout--gold { border-left-color: var(--gold); background: #FBF7EE; }

.post-table { width: 100%; border-collapse: collapse; font-size: var(--fs-body); }
.post-table caption {
  text-align: left; font-family: var(--font-display); font-size: var(--fs-h3);
  color: var(--ink); padding-bottom: 0.85rem;
}
.post-table th, .post-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.post-table thead th {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); border-bottom: 2px solid var(--line);
}
.post-table td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; }
.post-table tbody tr:last-child td { border-bottom: 0; }

.post-cta {
  margin-top: 3rem; padding: 2rem; background: var(--dark); color: var(--on-dark);
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 720px) { .post-cta { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.post-cta h2 { margin: 0; padding: 0; border: 0; color: #fff; font-size: 1.5rem; font-weight: 300; }
.post-cta p { margin-top: 0.7rem; font-size: var(--fs-body) !important; color: var(--on-dark-mute); }
.post-cta .btn { white-space: nowrap; }

.post-author {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 560px) { .post-author { grid-template-columns: auto 1fr; gap: 1.75rem; } }
.avatar--sm { width: 92px; height: 92px; margin: 0; box-shadow: 0 0 0 1px var(--line), 0 0 0 6px var(--paper), 0 0 0 7px var(--line-soft); }
.post-author__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.post-author__role { font-size: var(--fs-tiny) !important; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.2rem !important; }
.post-author__bio { margin-top: 0.75rem !important; font-size: var(--fs-body) !important; color: var(--muted); }
.post-author__links { margin-top: 0.75rem !important; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.post-author__links a { font-size: var(--fs-small); font-weight: 600; color: var(--ink); padding-block: 0.3rem; }
.post-author__links a:hover { color: var(--gold-deep); }
