/* ==========================================================================
   SUAIQA — Premium Lubricants
   Engineered Lubrication · Indian Origin
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  /* color */
  --c-ink: #0a0908;
  --c-ink-soft: #14110d;
  --c-graphite: #1f1c17;
  --c-bone: #f6f1e6;
  --c-cream: #ede6d4;
  --c-paper: #fbf8f1;
  --c-gold: #c9a961;
  --c-gold-deep: #8b6f33;
  --c-gold-bright: #e0bf78;
  --c-amber: #d49a3c;
  --c-rust: #8b3a1f;
  --c-mute: #8a8276;
  --c-line: rgba(255, 255, 255, 0.12);
  --c-line-dark: rgba(10, 9, 8, 0.12);

  /* type */
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-serif: "Cormorant Garamond", Georgia, serif;
  --f-italic: "Cormorant Garamond", Georgia, serif;
  --f-mono: "JetBrains Mono", "Courier New", monospace;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* sizing */
  --pad-x: 22px;
  --pad-y: 88px;
  --container: 1380px;
  --header-h: 76px;
  --subheader-h: 36px;

  /* motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.77, 0, 0.175, 1);
}

@media (min-width: 768px) {
  :root {
    --pad-x: 48px;
    --pad-y: 130px;
    --header-h: 92px;
    --subheader-h: 38px;
  }
}

@media (min-width: 1280px) {
  :root {
    --pad-x: 72px;
    --pad-y: 170px;
  }
}

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: default;
}
body.lock { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: none; outline: none; }
::selection { background: var(--c-gold); color: var(--c-ink); }

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 0.95;
}
.serif { font-family: var(--f-serif); font-weight: 400; }
.eyebrow {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.eyebrow.light { color: var(--c-gold-bright); }
.muted { color: var(--c-mute); }
em.italic { font-family: var(--f-italic); font-style: italic; font-weight: 400; }

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section { padding-top: var(--pad-y); padding-bottom: var(--pad-y); position: relative; }
.section.dark { background: var(--c-ink); color: var(--c-bone); }
.section.cream { background: var(--c-cream); }
.section.bone { background: var(--c-bone); }

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__type {
  font-family: var(--f-display);
  font-size: clamp(48px, 14vw, 144px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--c-bone);
  line-height: 1;
  display: flex;
  align-items: center;
}
.preloader__type .caret {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--c-gold);
  margin-left: 6px;
  animation: blink 0.8s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.preloader__sub {
  margin-top: 28px;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.6s;
}
.preloader.show-sub .preloader__sub { opacity: 1; }
.preloader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--c-gold);
  width: 0;
  transition: width 1.4s var(--ease-out);
}
.preloader.full .preloader__bar { width: 100%; }

/* ---------- HEADER (DOUBLE) ---------- */
.subheader {
  background: var(--c-ink);
  color: var(--c-bone);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  font-size: 11px;
  letter-spacing: 0.12em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: var(--subheader-h);
}
.subheader__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.subheader__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.subheader__contact a { color: var(--c-bone); transition: color 0.3s; }
.subheader__contact a:hover { color: var(--c-gold-bright); }
.subheader__contact .pipe { color: var(--c-gold-deep); }
.subheader__address { display: none; color: var(--c-mute); }
.subheader__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.subheader__social a {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bone);
  transition: color 0.3s, transform 0.3s;
}
.subheader__social a:hover { color: var(--c-gold-bright); transform: translateY(-1px); }
.subheader__social svg { width: 14px; height: 14px; }

@media (min-width: 768px) {
  .subheader { font-size: 11px; }
  .subheader__address { display: inline; }
}
@media (max-width: 600px) {
  .subheader__contact .hide-sm { display: none; }
}

/* main header — always dark/translucent so it reads against any section */
.header {
  position: fixed;
  top: var(--subheader-h);
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(10, 9, 8, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  color: var(--c-bone);
  height: var(--header-h);
  transition: transform 0.45s var(--ease-out), background 0.4s var(--ease-out), border-color 0.4s, color 0.4s;
  will-change: transform;
}
.header.dark { /* legacy class — JS toggles this; keep identical to default */
  background: rgba(10, 9, 8, 0.7);
  border-bottom-color: rgba(201, 169, 97, 0.18);
  color: var(--c-bone);
}

/* Auto-hide on scroll-down; reveal on scroll-up (body.nav-hidden toggled by JS) */
.subheader { transition: transform 0.45s var(--ease-out); will-change: transform; }
body.nav-hidden .subheader { transform: translateY(-100%); }
body.nav-hidden .header { transform: translateY(calc(-100% - var(--subheader-h))); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  line-height: 0;
}
.brand img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand img { height: 68px; }
}

.nav {
  display: none;
  align-items: center;
  gap: 38px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 8px 0;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.4s var(--ease-out);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--c-gold-deep); }
.header.dark .nav a.active { color: var(--c-gold-bright); }

@media (min-width: 1024px) { .nav { display: flex; } }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: background 0.4s var(--ease-out), color 0.4s;
}
.cta-btn:hover { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

/* burger */
.burger {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  align-items: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }
@media (min-width: 1024px) { .burger { display: none; } }

/* mobile menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-ink);
  color: var(--c-bone);
  z-index: 92;
  padding: calc(var(--header-h) + var(--subheader-h) + 30px) var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-quart);
  overflow-y: auto;
}
.menu.open { transform: translateY(0); }
.menu__nav { display: flex; flex-direction: column; gap: 18px; }
.menu__nav a {
  font-family: var(--f-display);
  font-size: 44px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.menu__nav a span.num {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-gold-deep);
}
.menu.open .menu__nav a {
  opacity: 1;
  transform: translateY(0);
}
.menu.open .menu__nav a:nth-child(1) { transition-delay: 0.15s; }
.menu.open .menu__nav a:nth-child(2) { transition-delay: 0.22s; }
.menu.open .menu__nav a:nth-child(3) { transition-delay: 0.29s; }
.menu.open .menu__nav a:nth-child(4) { transition-delay: 0.36s; }
.menu.open .menu__nav a:nth-child(5) { transition-delay: 0.43s; }
.menu__foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--c-line);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.menu__foot a { color: var(--c-bone); }
.menu__foot .label { color: var(--c-gold-deep); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + var(--subheader-h));
  background: var(--c-ink);
  color: var(--c-bone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.05);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, transparent, rgba(10, 9, 8, 0.7)),
    linear-gradient(180deg, rgba(10, 9, 8, 0.3) 0%, rgba(10, 9, 8, 0.5) 60%, rgba(10, 9, 8, 0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 70px;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  gap: 12px;
}
.hero__top div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hero__top .lbl { color: var(--c-mute); font-size: 8px; letter-spacing: 0.32em; }
@media (min-width: 768px) {
  .hero__top { font-size: 10px; letter-spacing: 0.34em; }
  .hero__top .lbl { font-size: 9px; }
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(54px, 13vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 36px 0 24px;
  max-width: 12ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-gold-bright);
}
.hero__line {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.hero__line p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-cream);
  opacity: 0.85;
}
.hero__bar {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 22px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.hero__bar .scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-gold-bright);
}
.hero__bar .scroll .dash {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--c-gold);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.4; }
  50% { transform: scaleX(1.4); opacity: 1; }
}
.hero__chips {
  display: none;
  gap: 22px;
}
.hero__chips span {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--c-bone);
  opacity: 0.7;
}
@media (min-width: 768px) { .hero__chips { display: flex; } }

/* ---------- STATEMENT ---------- */
.statement {
  background: var(--c-paper);
  padding: var(--pad-y) 0;
}
.statement__inner {
  display: grid;
  gap: 36px;
}
.statement__head { display: flex; flex-direction: column; gap: 14px; }
.statement__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  max-width: 18ch;
}
.statement__title em { font-style: italic; color: var(--c-gold-deep); }
.statement__body {
  display: grid;
  gap: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: #2a2620;
  max-width: 60ch;
}
@media (min-width: 1024px) {
  .statement__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
  .statement__body { font-size: 16px; }
}
.spec-row {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  border-top: 1px solid var(--c-line-dark);
  padding-top: 36px;
}
.spec-row .spec-num {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--c-gold-deep);
  line-height: 1;
}
.spec-row .spec-lbl {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 10px;
}
@media (min-width: 768px) {
  .spec-row { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- COLLECTION (HORIZONTAL SCROLL) ---------- */
.collection { background: var(--c-ink); color: var(--c-bone); padding-top: var(--pad-y); padding-bottom: 0; }
.collection__head { padding-bottom: 60px; }
.collection__head .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 22px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 26px;
}
.collection__head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.collection__head h2 em { font-style: italic; color: var(--c-gold-bright); }
.collection__head .meta {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
}
.collection__sub {
  margin-top: 30px;
  display: grid;
  gap: 24px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-cream);
  opacity: 0.85;
}

/* horizontal scroll */
.h-scroll {
  position: relative;
  overflow: hidden;
}
.h-scroll__track {
  display: flex;
  gap: 18px;
  padding: 0 var(--pad-x) 60px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.h-scroll__track::-webkit-scrollbar { display: none; }
.h-scroll__track > * { scroll-snap-align: start; flex: 0 0 auto; }

@media (min-width: 1024px) {
  .h-scroll__track {
    padding-bottom: 0;
    overflow: visible;
  }
}

/* product card */
.p-card {
  width: 76vw;
  max-width: 360px;
  background: var(--c-graphite);
  border: 1px solid var(--c-line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
  overflow: hidden;
}
.p-card:hover { border-color: rgba(201, 169, 97, 0.4); }
.p-card .num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-gold-deep);
  z-index: 2;
}
.p-card .grade {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--c-mute);
  z-index: 2;
}
.p-card__img {
  position: relative;
  height: 360px;
  background: linear-gradient(180deg, #1a1612 0%, #0a0908 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-card__img::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(201, 169, 97, 0.18), transparent 70%);
}
.p-card__img img {
  height: 90%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.7s var(--ease-out);
}
.p-card:hover .p-card__img img { transform: translateY(-6px) scale(1.03); }
.p-card__body { padding: 22px 22px 26px; }
.p-card__cat {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.p-card__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--c-bone);
}
.p-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-mute);
  margin-bottom: 18px;
  min-height: 44px;
}
.p-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-line);
  padding-top: 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.p-card__row .arr { color: var(--c-gold-bright); transition: transform 0.4s; }
.p-card:hover .p-card__row .arr { transform: translateX(6px); }

.h-scroll__hint {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 var(--pad-x);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  padding-bottom: 30px;
}
.h-scroll__hint .line { flex: 1; height: 1px; background: var(--c-line); }

@media (min-width: 768px) {
  .p-card { width: 44vw; }
}
@media (min-width: 1280px) {
  .p-card { width: 360px; }
}

/* ---------- FEATURED ---------- */
.featured {
  background: var(--c-ink);
  color: var(--c-bone);
  position: relative;
  padding: var(--pad-y) 0;
  overflow: hidden;
}
.featured__inner {
  display: grid;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.featured__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1612 0%, #0a0908 100%);
}
.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.featured__media .badge {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  border: 1px solid rgba(201, 169, 97, 0.4);
  padding: 8px 14px;
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(8px);
}
.featured__copy { display: flex; flex-direction: column; gap: 22px; }
.featured__copy .eyebrow { color: var(--c-gold-bright); }
.featured__copy h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.018em;
}
.featured__copy h3 em { font-style: italic; color: var(--c-gold-bright); }
.featured__copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-cream);
  opacity: 0.85;
  max-width: 52ch;
}
.featured__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  margin-top: 6px;
}
.featured__specs .sp .lbl {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 8px;
}
.featured__specs .sp .val {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-gold-bright);
  font-weight: 400;
}
.featured__cta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (min-width: 1024px) {
  .featured__inner { grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
  .featured__media { aspect-ratio: 4/5.4; }
}

/* ---------- PROMISE / WHY ---------- */
.promise {
  background: var(--c-cream);
  padding: var(--pad-y) 0;
}
.promise__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 60px;
  max-width: 720px;
}
.promise__head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.promise__head h2 em { font-style: italic; color: var(--c-gold-deep); }
.promise__grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--c-line-dark);
}
.promise__item {
  border-bottom: 1px solid var(--c-line-dark);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  transition: padding 0.5s var(--ease-out), background 0.5s;
}
.promise__item:hover { background: var(--c-bone); padding-left: 14px; padding-right: 14px; }
.promise__item .num {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-gold-deep);
  font-weight: 400;
}
.promise__item h4 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--c-ink);
}
.promise__item p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4538;
  max-width: 60ch;
}
@media (min-width: 768px) {
  .promise__grid { grid-template-columns: repeat(2, 1fr); column-gap: 60px; }
  .promise__item:nth-child(odd) { border-right: 0; }
}
@media (min-width: 1024px) {
  .promise__grid { grid-template-columns: repeat(3, 1fr); column-gap: 60px; }
}

/* ---------- LIFESTYLE / GALLERY ---------- */
.gallery {
  background: var(--c-paper);
  padding: var(--pad-y) 0;
}
.gallery__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
  max-width: 740px;
}
.gallery__head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.gallery__head h2 em { font-style: italic; color: var(--c-gold-deep); }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
  background: var(--c-ink);
}
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.gallery__cell:hover img { transform: scale(1.06); }
.gallery__cell .lbl {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: var(--c-bone);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.gallery__cell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.7));
}
.gallery__cell.tall { aspect-ratio: 3/4; }
.gallery__cell.wide { aspect-ratio: 16/10; }
.gallery__cell.sq { aspect-ratio: 1/1; }
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
  }
  .gallery__cell { aspect-ratio: auto; }
  .g-1 { grid-column: span 4; grid-row: span 2; }
  .g-2 { grid-column: span 2; grid-row: span 1; }
  .g-3 { grid-column: span 2; grid-row: span 1; }
  .g-4 { grid-column: span 3; grid-row: span 2; }
  .g-5 { grid-column: span 3; grid-row: span 1; }
  .g-6 { grid-column: span 3; grid-row: span 1; }
  .g-7 { grid-column: span 2; grid-row: span 2; }
  .g-8 { grid-column: span 4; grid-row: span 2; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--c-ink);
  color: var(--c-bone);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__track span {
  font-family: var(--f-display);
  font-size: 38px;
  letter-spacing: -0.01em;
  color: var(--c-bone);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-weight: 300;
}
.marquee__track span::after {
  content: "✦";
  color: var(--c-gold);
  font-size: 22px;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
@media (min-width: 768px) {
  .marquee__track span { font-size: 56px; }
}

/* ---------- VIDEO BLOCK ---------- */
.cinema {
  background: var(--c-ink);
  position: relative;
  overflow: hidden;
}
.cinema__media {
  position: relative;
  aspect-ratio: 16/10;
}
.cinema__media video,
.cinema__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cinema__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.2) 0%, rgba(10, 9, 8, 0.55) 100%);
}
.cinema__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px var(--pad-x);
  color: var(--c-bone);
}
.cinema__overlay h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.cinema__overlay h3 em { font-style: italic; color: var(--c-gold-bright); }
.cinema__overlay .eyebrow { color: var(--c-gold-bright); margin-bottom: 14px; }

/* ---------- DISTRIBUTOR ---------- */
.dist {
  background: var(--c-bone);
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}
.dist__inner {
  display: grid;
  gap: 36px;
}
.dist__inner h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.dist__inner h2 em { font-style: italic; color: var(--c-gold-deep); }
.dist__inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2620;
  max-width: 56ch;
}
.dist__cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--c-ink);
  color: var(--c-bone);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-ink);
  transition: background 0.4s var(--ease-out), color 0.4s, border-color 0.4s;
}
.btn-dark:hover { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  transition: background 0.4s, color 0.4s;
}
.btn-line:hover { background: var(--c-ink); color: var(--c-bone); }
.btn-line.light { color: var(--c-bone); border-color: var(--c-bone); }
.btn-line.light:hover { background: var(--c-bone); color: var(--c-ink); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--c-gold);
  color: var(--c-ink);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--c-gold);
  transition: background 0.4s, color 0.4s, transform 0.4s;
}
.btn-gold:hover { background: var(--c-gold-bright); transform: translateY(-2px); }
.dist__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  border-top: 1px solid var(--c-line-dark);
  padding-top: 30px;
  margin-top: 14px;
}
.dist__stats .stat .v {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--c-gold-deep);
  line-height: 1;
}
.dist__stats .stat .l {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .dist__inner { grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center; }
}

/* ---------- TESTIMONIAL / QUOTE ---------- */
.quote {
  background: var(--c-paper);
  padding: var(--pad-y) 0;
  text-align: center;
}
.quote blockquote {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 5.5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  max-width: 22ch;
  margin: 0 auto 30px;
}
.quote blockquote .open { color: var(--c-gold); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; margin-right: 6px; }
.quote .cite { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-gold-deep); }

/* ---------- CONTACT FOOT CTA ---------- */
.foot-cta {
  background: var(--c-ink);
  color: var(--c-bone);
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}
.foot-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.foot-cta h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 11vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.foot-cta h2 em { font-style: italic; color: var(--c-gold-bright); }
.foot-cta p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-cream);
  opacity: 0.8;
  max-width: 50ch;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-ink);
  color: var(--c-bone);
  padding: 70px 0 30px;
  border-top: 1px solid var(--c-line);
}
.footer__top {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__brand h4 {
  font-family: var(--f-display);
  font-size: 38px;
  letter-spacing: 0.18em;
  font-weight: 300;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-mute);
  max-width: 38ch;
}
.footer__col h5 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: var(--c-cream);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: color 0.3s, padding-left 0.4s;
  display: inline-block;
}
.footer__col a:hover { color: var(--c-gold-bright); padding-left: 6px; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 30px;
  border-top: 1px solid var(--c-line);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
}
.footer__bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__big {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 10px;
  user-select: none;
  pointer-events: none;
}
.footer__big img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  /* Image is light strokes on transparent — keep them but mute to graphite tone
     to match the original wordmark treatment in the dark footer. */
  opacity: 0.55;
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; }
}

/* ---------- INLINE LINKS / DETAILS ---------- */
.detail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  border-top: 1px solid var(--c-line-dark);
  padding: 22px 0;
}
.detail-row dt {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.detail-row dd {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-ink);
}
@media (min-width: 768px) {
  .detail-row { grid-template-columns: 220px 1fr; gap: 40px; }
}

/* ---------- PAGE HEADERS (about, products, contact) ---------- */
.page-hero {
  padding: calc(var(--header-h) + var(--subheader-h) + 80px) 0 80px;
  background: var(--c-paper);
  position: relative;
}
.page-hero.dark { background: var(--c-ink); color: var(--c-bone); }
.page-hero .crumb {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.page-hero.dark .crumb { color: var(--c-gold-bright); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(54px, 14vw, 180px);
  line-height: 0.93;
  letter-spacing: -0.018em;
}
.page-hero h1 em { font-style: italic; color: var(--c-gold-deep); }
.page-hero.dark h1 em { color: var(--c-gold-bright); }
.page-hero .lead {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 52ch;
  color: #2a2620;
}
.page-hero.dark .lead { color: var(--c-cream); opacity: 0.85; }

/* ---------- PRODUCTS LISTING ---------- */
.list {
  background: var(--c-paper);
  padding: var(--pad-y) 0;
}
.list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 50px;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  padding: 18px 0;
}
.list__filter button {
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-mute);
  border: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  border-radius: 999px;
}
.list__filter button.active,
.list__filter button:hover {
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.list__filter button.active { background: var(--c-ink); color: var(--c-bone); }

.list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .list__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1100px) { .list__grid { grid-template-columns: repeat(3, 1fr); } }

.list-card {
  background: var(--c-bone);
  border: 1px solid var(--c-line-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
}
.list-card:hover { border-color: var(--c-gold-deep); transform: translateY(-4px); }
.list-card__img {
  position: relative;
  aspect-ratio: 4/4.5;
  background: linear-gradient(180deg, #1a1612 0%, #0a0908 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.list-card__img::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(201, 169, 97, 0.18), transparent 70%);
}
.list-card__img img {
  height: 88%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.7s var(--ease-out);
}
.list-card:hover .list-card__img img { transform: translateY(-8px) scale(1.05); }
.list-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-gold-bright);
}
.list-card__cat {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.26em;
  color: var(--c-mute);
}
.list-card__body { padding: 22px; }
.list-card__cat-name {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 8px;
}
.list-card__name {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.list-card__sub {
  font-size: 13px;
  color: var(--c-mute);
  margin-bottom: 16px;
}
.list-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-line-dark);
  padding-top: 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.list-card__row .arr { color: var(--c-gold-deep); transition: transform 0.4s; }
.list-card:hover .list-card__row .arr { transform: translateX(6px); }

/* ---------- INDIVIDUAL PRODUCT PAGE ---------- */
.pdp {
  background: var(--c-paper);
  padding: calc(var(--header-h) + var(--subheader-h) + 30px) 0 var(--pad-y);
}
.pdp__top {
  display: grid;
  gap: 50px;
  align-items: start;
}
.pdp__media {
  position: relative;
  background: linear-gradient(180deg, #1a1612 0%, #0a0908 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: radial-gradient(ellipse at center bottom, rgba(201, 169, 97, 0.2), transparent 70%);
}
.pdp__media img {
  height: 88%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.55));
  transition: transform 1s var(--ease-out);
}
.pdp__media:hover img { transform: scale(1.03); }
.pdp__media .ribbon {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--c-gold-bright);
  border: 1px solid rgba(201, 169, 97, 0.4);
  padding: 8px 14px;
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.pdp__info { display: flex; flex-direction: column; gap: 22px; }
.pdp__crumb {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  display: flex;
  gap: 10px;
  align-items: center;
}
.pdp__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 10vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.pdp__name em { font-style: italic; color: var(--c-gold-deep); }
.pdp__sub {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2620;
  max-width: 50ch;
}
.pdp__benefits {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--c-line-dark);
  padding-top: 26px;
}
.pdp__benefits .b {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
}
.pdp__benefits .b .num {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--c-gold-deep);
  padding-top: 4px;
}
.pdp__benefits .b h5 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--c-ink);
}
.pdp__benefits .b p { font-size: 13px; color: #5a5345; line-height: 1.6; }
.pdp__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }

@media (min-width: 1024px) {
  .pdp__top { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}

.pdp__specs {
  background: var(--c-bone);
  padding: var(--pad-y) 0;
  border-top: 1px solid var(--c-line-dark);
}
.pdp__specs h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 7vw, 60px);
  margin-bottom: 40px;
  letter-spacing: -0.012em;
}

/* ---------- ABOUT PAGE ---------- */
.about-grid {
  display: grid;
  gap: 40px;
  background: var(--c-paper);
  padding: var(--pad-y) 0;
}
.about-grid__copy { font-size: 16px; line-height: 1.8; color: #2a2620; max-width: 60ch; }
.about-grid__copy p { margin-bottom: 22px; }
@media (min-width: 1024px) {
  .about-grid > .wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .about-grid__copy.full { max-width: 100%; }
}

/* ---------- TIMELINE ---------- */
.timeline {
  background: var(--c-cream);
  padding: var(--pad-y) 0;
}
.timeline__list {
  border-top: 1px solid var(--c-line-dark);
  margin-top: 40px;
}
.timeline__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-line-dark);
  align-items: start;
}
.timeline__row .y {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--c-gold-deep);
  font-weight: 400;
}
.timeline__row h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--c-ink);
}
.timeline__row p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4538;
  max-width: 60ch;
}

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  gap: 60px;
  background: var(--c-paper);
  padding: var(--pad-y) 0;
}
@media (min-width: 1024px) {
  .contact-grid > .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
}
.contact__info h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 7vw, 56px);
  margin-bottom: 30px;
  letter-spacing: -0.012em;
  line-height: 1.05;
}
.contact__info h3 em { font-style: italic; color: var(--c-gold-deep); }
.contact__block { margin-bottom: 28px; }
.contact__block .lbl {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 8px;
}
.contact__block p, .contact__block a {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-ink);
  display: block;
}
.contact__block a:hover { color: var(--c-gold-deep); }

.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 8px; }
.form__row label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.form__row input,
.form__row textarea,
.form__row select {
  border-bottom: 1px solid var(--c-line-dark);
  padding: 12px 0;
  font-size: 16px;
  color: var(--c-ink);
  font-family: var(--f-sans);
  transition: border-color 0.3s;
}
.form__row input:focus,
.form__row textarea:focus,
.form__row select:focus {
  border-bottom-color: var(--c-gold-deep);
}
.form__row textarea { min-height: 110px; resize: vertical; }
.form__row.cols { grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row.cols { grid-template-columns: 1fr 1fr; gap: 22px; } }

/* ---------- ANIMATION HELPERS ---------- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

.split-line { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-line > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.split-line.in > span { transform: translateY(0); }

.reveal-img { position: relative; overflow: hidden; }
.reveal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-ink);
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.2s var(--ease-quart);
}
.reveal-img.in::after { transform: scaleX(0); }
.reveal-img img { transform: scale(1.1); transition: transform 1.4s var(--ease-out); }
.reveal-img.in img { transform: scale(1); }

/* utility */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: initial; } .hide-desktop { display: none; } }
.text-right { text-align: right; }
.center { text-align: center; }
.divider {
  width: 100%;
  height: 1px;
  background: var(--c-line-dark);
  margin: 0;
}
.divider.light { background: var(--c-line); }

/* ==========================================================================
   POLISH LAYER
   1) Scroll progress hairline   2) Magnetic buttons
   3) Section-entry gold sweep   4) (counter is JS-only)
   ========================================================================== */

/* ---------- 1) Scroll progress (top-of-page gold hairline) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-deep) 0%, var(--c-gold) 50%, var(--c-gold-bright) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200; /* above header (header is typically z<200) */
  pointer-events: none;
  will-change: transform;
  box-shadow: 0 0 8px rgba(201, 169, 97, 0.35);
}
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ---------- 3) Magnetic CTA buttons ---------- */
.magnet {
  /* Buttons keep their existing transitions; magnet adds smooth transform return */
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.55s var(--ease-out-soft);
  will-change: transform;
}
.magnet > .magnet-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.55s var(--ease-out-soft);
  will-change: transform;
}
/* Preserve btn-gold's existing hover lift by composing the translate */
.btn-gold.magnet:hover { transform: translate3d(0, -2px, 0); }
.btn-gold.magnet:hover > .magnet-inner { transition: transform 0.55s var(--ease-out-soft); }

/* ---------- 4) Section-entry gold sweep (thin line draws in from left) ---------- */
.section-sweep {
  position: relative;
}
.section-sweep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-deep) 60%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease-out-soft);
  pointer-events: none;
  z-index: 3;
  opacity: 0.85;
}
.section-sweep.swept::before {
  transform: scaleX(1);
}
/* Hide sweep on the first section after a hero (it would land mid-image awkwardly).
   We rely on the pin/horizontal sections being filtered in JS. */
@media (prefers-reduced-motion: reduce) {
  .section-sweep::before { display: none; }
}

/* ============================================================
   TABLET REFINEMENTS  (768 - 1023)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .subheader__inner { gap: 12px; }
  .subheader { font-size: 10.5px; letter-spacing: 0.1em; }

  .pdp__top { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .pdp__media { aspect-ratio: 4/5; }
  .pdp__name { font-size: clamp(40px, 7.4vw, 64px); }

  .about-grid > .wrap {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: start;
  }

  .featured__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
  }
  .featured__media { aspect-ratio: 4/5.2; }
  .featured__copy h3 { font-size: clamp(34px, 6.4vw, 54px); }

  /* .dist__inner stays single-column at 768-1023 -- its long headline needs the full width to breathe */

  .contact-grid > .wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
  }

  .list__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .list-card__name { font-size: 22px; }
}

@media (min-width: 768px) and (max-width: 820px) {
  .subheader__address { font-size: 10px; }
}

/* Products grid: also use 3-up at 1024-1099 (tablet landscape) so 11 items
   do not orphan in 2-up. The original 1100+ rule remains untouched. */
@media (min-width: 1024px) and (max-width: 1099px) {
  .list__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ==========================================================================
   MOBILE OPTIMIZATION LAYER
   Targeted fixes for phones (≤767px), small phones (≤480px),
   touch devices, notched devices, and reduced-motion preferences.
   ========================================================================== */

/* Universal touch + tap polish */
html { -webkit-tap-highlight-color: transparent; }
a, button, .burger, .cta-btn, .btn-dark, .btn-line, .btn-gold {
  touch-action: manipulation;
}

/* Safe-area insets (notched iPhones in viewport-fit=cover) */
.subheader { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
.subheader .wrap { padding-left: 0; padding-right: 0; }
.menu { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
.footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); }

/* ---------- ≤767px ---------- */
@media (max-width: 767px) {
  :root {
    --pad-x: 20px;
    --pad-y: 72px;
  }

  body { font-size: 14.5px; }

  /* Subheader: shrink type + tighten gaps so social icons never get clipped */
  .subheader { font-size: 10.5px; letter-spacing: 0.06em; }
  .subheader__inner { gap: 10px; }
  .subheader__contact { gap: 10px; min-width: 0; }
  .subheader__contact a { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .subheader__social { gap: 10px; flex-shrink: 0; }
  .subheader__social a { width: 22px; height: 22px; }

  /* Header brand sizing */
  .brand img { height: 34px; }
  .burger { width: 44px; height: 44px; }

  /* Hero — keep text readable on narrow phones, prevent the meta row colliding */
  .hero h1 { font-size: clamp(44px, 12vw, 84px); margin: 26px 0 20px; max-width: 14ch; }
  .hero__top { font-size: 9px; letter-spacing: 0.22em; gap: 10px; padding-top: 22px; }
  .hero__top .lbl { font-size: 8px; letter-spacing: 0.28em; }
  .hero__line p { font-size: 13.5px; line-height: 1.65; }
  .hero__bar { margin-top: 36px; padding-top: 18px; font-size: 9px; letter-spacing: 0.22em; gap: 12px; }
  .hero__bar .scroll .dash { width: 22px; }
  .hero__content { padding-bottom: 50px; }

  /* Statement */
  .statement__inner { gap: 28px; }
  .statement__title { font-size: clamp(30px, 8.5vw, 56px); }
  .statement__body { font-size: 14.5px; line-height: 1.7; }
  .spec-row { margin-top: 40px; padding-top: 28px; gap: 24px 18px; }
  .spec-row .spec-num { font-size: 36px; }

  /* Collection (horizontal scroll) */
  .collection__head { padding-bottom: 40px; }
  .collection__head .top { gap: 16px; padding-bottom: 20px; }
  .collection__head h2 { font-size: clamp(32px, 8.5vw, 56px); }
  .collection__sub { margin-top: 22px; font-size: 14px; }
  .h-scroll__track { gap: 14px; padding-bottom: 40px; scroll-padding-left: var(--pad-x); }
  .h-scroll__hint { padding-bottom: 24px; font-size: 9px; letter-spacing: 0.22em; }

  /* Product card — shorter image area, tighter body */
  .p-card { width: 78vw; max-width: 320px; }
  .p-card__img { height: 280px; }
  .p-card__body { padding: 18px 18px 22px; }
  .p-card__name { font-size: 24px; }
  .p-card__desc { font-size: 12.5px; min-height: 0; margin-bottom: 14px; }
  .p-card__row { font-size: 9px; letter-spacing: 0.18em; padding-top: 14px; }

  /* Featured */
  .featured__inner { gap: 32px; }
  .featured__media { aspect-ratio: 4/4.4; }
  .featured__copy h3 { font-size: clamp(32px, 8.5vw, 56px); }
  .featured__copy p { font-size: 14px; line-height: 1.65; }
  .featured__specs { gap: 18px; padding-top: 20px; }
  .featured__specs .sp .val { font-size: 18px; }

  /* Promise */
  .promise__head { margin-bottom: 36px; }
  .promise__head h2 { font-size: clamp(32px, 8.5vw, 56px); }
  .promise__item { padding: 28px 0; gap: 16px; grid-template-columns: 40px 1fr; }
  .promise__item h4 { font-size: 22px; }
  .promise__item p { font-size: 13.5px; line-height: 1.6; }
  .promise__item:hover { padding-left: 0; padding-right: 0; background: transparent; } /* no hover-shift on touch */

  /* Gallery */
  .gallery__head { margin-bottom: 32px; }
  .gallery__head h2 { font-size: clamp(32px, 8.5vw, 56px); }
  .gallery__grid { gap: 10px; }
  .gallery__cell.tall { aspect-ratio: 4/5; }
  .gallery__cell.wide { aspect-ratio: 16/11; }

  /* Cinema */
  .cinema__media { aspect-ratio: 4/5; }
  .cinema__overlay { padding: 28px var(--pad-x); }
  .cinema__overlay h3 { font-size: clamp(28px, 8vw, 48px); }
  .cinema__overlay .eyebrow { margin-bottom: 10px; }

  /* Marquee */
  .marquee { padding: 22px 0; }
  .marquee__track { gap: 36px; animation-duration: 22s; }
  .marquee__track span { font-size: 30px; gap: 36px; }
  .marquee__track span::after { font-size: 18px; }

  /* Distributor */
  .dist__inner { gap: 28px; }
  .dist__inner h2 { font-size: clamp(32px, 8.5vw, 56px); }
  .dist__inner p { font-size: 14px; line-height: 1.65; }
  .dist__cta { gap: 10px; }
  .dist__cta a { width: 100%; justify-content: center; }
  .dist__stats { gap: 18px; padding-top: 24px; }
  .dist__stats .stat .v { font-size: 36px; }

  /* Quote */
  .quote blockquote { font-size: clamp(24px, 6.5vw, 38px); margin-bottom: 22px; max-width: 18ch; }

  /* Foot CTA */
  .foot-cta__inner { gap: 24px; }
  .foot-cta h2 { font-size: clamp(36px, 11vw, 72px); max-width: 14ch; }
  .foot-cta p { font-size: 14px; }
  .foot-cta__inner > .fade-up.d3 { width: 100%; }
  .foot-cta__inner > .fade-up.d3 a { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer__top { gap: 32px; margin-bottom: 36px; }
  .footer__brand h4 { font-size: 32px; }
  .footer__brand p { font-size: 13px; }
  .footer__big { margin: 18px 0 6px; }
  .footer__big img { max-width: 92vw; }
  .footer__bottom { font-size: 10.5px; letter-spacing: 0.12em; padding-top: 22px; }
  .footer__bottom .row { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* Buttons — full-width feel for primary CTAs in stacked groups */
  .btn-dark, .btn-line, .btn-gold { padding: 14px 22px; font-size: 10.5px; letter-spacing: 0.22em; }

  /* Page hero (about/products/contact) */
  .page-hero { padding: calc(var(--header-h) + var(--subheader-h) + 56px) 0 56px; }
  .page-hero h1 { font-size: clamp(44px, 12vw, 84px); }
  .page-hero .lead { font-size: 14.5px; margin-top: 22px; }
  .page-hero .crumb { margin-bottom: 20px; font-size: 9.5px; letter-spacing: 0.26em; }

  /* Products list filter — horizontal scroll on mobile so chips never overflow */
  .list__filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: calc(var(--pad-x) * -1);
    margin-right: calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .list__filter::-webkit-scrollbar { display: none; }
  .list__filter button { flex-shrink: 0; padding: 9px 14px; font-size: 9.5px; letter-spacing: 0.2em; }

  /* List cards — tightened for 2-up mobile grid */
  .list-card__img { aspect-ratio: 4/4.4; }
  .list-card__img img { height: 84%; }
  .list-card__num { top: 10px; left: 10px; font-size: 8.5px; letter-spacing: 0.22em; }
  .list-card__cat { top: 10px; right: 10px; font-size: 8px; letter-spacing: 0.2em; }
  .list-card__body { padding: 12px 12px 14px; }
  .list-card__cat-name { font-size: 8.5px; letter-spacing: 0.2em; margin-bottom: 6px; }
  .list-card__name { font-size: 19px; line-height: 1.05; margin-bottom: 4px; }
  .list-card__sub { font-size: 11px; line-height: 1.35; margin-bottom: 10px; }
  .list-card__row { font-size: 8.5px; letter-spacing: 0.16em; padding-top: 10px; gap: 6px; }
  .list-card__row span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  /* Wide spec table — give the table a min-width so columns don't crush;
     the wrapper already scrolls horizontally. */
  .list + .section table,
  .pdp__specs table,
  .section table { min-width: 640px; }
  .section .wrap > div[style*="overflow-x:auto"] {
    margin-left: calc(var(--pad-x) * -1);
    margin-right: calc(var(--pad-x) * -1);
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  /* PDP */
  .pdp { padding-top: calc(var(--header-h) + var(--subheader-h) + 22px); }
  .pdp__top { gap: 32px; }
  .pdp__media { aspect-ratio: 4/4.6; }
  .pdp__media img { height: 84%; }
  .pdp__info { gap: 18px; }
  .pdp__name { font-size: clamp(34px, 10vw, 60px); }
  .pdp__sub { font-size: 14.5px; line-height: 1.65; }
  .pdp__benefits { padding-top: 22px; gap: 16px; }
  .pdp__benefits .b { gap: 14px; grid-template-columns: 28px 1fr; }
  .pdp__benefits .b h5 { font-size: 17px; }
  .pdp__benefits .b p { font-size: 12.5px; }
  .pdp__cta { gap: 10px; }
  .pdp__cta a { flex: 1 1 auto; justify-content: center; }
  .pdp__specs h3 { margin-bottom: 28px; }
  .detail-row { padding: 18px 0; gap: 6px; }
  .detail-row dt { font-size: 9.5px; letter-spacing: 0.24em; }
  .detail-row dd { font-size: 18px; }

  /* About-grid copy */
  .about-grid__copy { font-size: 14.5px; line-height: 1.75; }
  .about-grid__copy p { margin-bottom: 18px; }

  /* Timeline */
  .timeline__row { grid-template-columns: 64px 1fr; padding: 26px 0; gap: 16px; }
  .timeline__row .y { font-size: 22px; }
  .timeline__row h4 { font-size: 19px; }
  .timeline__row p { font-size: 13.5px; }

  /* Contact block typography */
  .contact__info h3 { font-size: clamp(28px, 8vw, 44px); margin-bottom: 24px; }
  .contact__block { margin-bottom: 22px; }
  .contact__block p, .contact__block a { font-size: 19px; }
  .contact-grid { gap: 36px; }
  .contact-grid > .wrap { gap: 36px; }

  /* Forms */
  .form { gap: 18px; }
  .form__row textarea { min-height: 96px; }
  .form button[type="submit"] { width: 100%; justify-content: center; }

  /* Mobile menu — slightly smaller type so 5 items always fit on small phones */
  .menu__nav a { font-size: 38px; gap: 12px; }
}

/* ---------- ≤480px (small phones / iPhone SE) ---------- */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }

  .subheader { font-size: 10px; }
  .subheader__contact .pipe { display: none; }
  .subheader__contact { gap: 8px; }
  .subheader__social { gap: 8px; }

  .brand img { height: 30px; }

  .hero h1 { font-size: clamp(38px, 11vw, 64px); }
  .hero__top { font-size: 8.5px; letter-spacing: 0.2em; }
  .hero__top .lbl { font-size: 7.5px; }

  .marquee__track span { font-size: 24px; gap: 28px; }

  .footer__big img { max-width: 96vw; }

  .page-hero h1 { font-size: clamp(38px, 11vw, 64px); }

  .menu__nav a { font-size: 32px; }
  .menu__nav a span.num { font-size: 9px; letter-spacing: 0.26em; }

  .quote blockquote { font-size: clamp(22px, 6.5vw, 32px); }

  .pdp__name { font-size: clamp(30px, 10vw, 50px); }
}

/* ---------- TOUCH-DEVICE FALLBACKS (no hover) ---------- */
@media (hover: none), (pointer: coarse) {
  /* Disable hover-only transforms / lifts that look broken without a pointer */
  .p-card:hover { border-color: var(--c-line); }
  .p-card:hover .p-card__img img { transform: none; }
  .p-card:hover .p-card__row .arr { transform: none; }
  .list-card:hover { transform: none; border-color: var(--c-line-dark); }
  .list-card:hover .list-card__img img { transform: none; }
  .list-card:hover .list-card__row .arr { transform: none; }
  .promise__item:hover { background: transparent; padding-left: 0; padding-right: 0; }
  .gallery__cell:hover img { transform: none; }
  .footer__col a:hover { padding-left: 0; }
  .featured__media:hover img,
  .pdp__media:hover img { transform: none; }
  .btn-gold.magnet:hover { transform: none; }
}

/* Landscape phones — keep hero usable and avoid huge type chewing the viewport */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding-top: calc(var(--header-h) + var(--subheader-h) + 24px); }
  .hero__content { padding-bottom: 30px; }
  .hero h1 { font-size: clamp(34px, 7vw, 64px); margin: 18px 0 14px; }
  .hero__bar { margin-top: 22px; padding-top: 14px; }
  .menu { padding-top: calc(var(--header-h) + var(--subheader-h) + 14px); padding-bottom: 30px; }
  .menu__nav { gap: 10px; }
  .menu__nav a { font-size: 26px; }
}

/* Reduced motion — kill the marquee scroll, hero parallax stays light */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .hero__media video, .hero__media img { transform: none !important; }
}

/* ==========================================================================
   ROUNDED BUTTONS — sitewide override
   Every interactive button/CTA gets a consistent pill/curve.
   ========================================================================== */
.cta-btn,
.btn-dark,
.btn-line,
.btn-gold,
.btn-gold.magnet,
.list__filter button,
button[type="submit"],
.menu__nav a,
.subheader__social a {
  border-radius: 999px;
}
.burger {
  border-radius: 50%;
}
.p-card,
.list-card {
  border-radius: 16px;
  overflow: hidden;
}
.p-card__img,
.list-card__img {
  border-radius: 16px 16px 0 0;
}
.featured__media,
.pdp__media,
.gallery__cell,
.cinema__media {
  border-radius: 14px;
  overflow: hidden;
}
.form__row input,
.form__row textarea,
.form__row select {
  border-radius: 0; /* keep underline-style inputs flat — feels more editorial */
}
.preloader__sub { border-radius: 999px; }
