/* ═══════════════════════════════════════════════════════════
   JENY — Premium Hardware · Dark Luxury Edition
   Full-screen hero · smooth gradient shading · all devices
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --orange:        #F5822A;
  --orange-hot:    #FF9A45;
  --orange-deep:   #C9611A;
  --orange-glow:   rgba(245, 130, 42, .32);

  /* Surfaces — smooth dark ramp */
  --bg-0: #08080A;          /* deepest — hero / footer            */
  --bg-1: #0B0B0D;          /* base page                          */
  --bg-2: #121216;          /* raised section                     */
  --bg-3: #17171C;          /* card                               */
  --bg-4: #1E1E24;          /* card hover / borders base          */

  --line:       rgba(255, 255, 255, .08);
  --line-soft:  rgba(255, 255, 255, .05);

  --ink:        #F4F2EE;
  --ink-soft:   rgba(244, 242, 238, .68);
  --ink-faint:  rgba(244, 242, 238, .42);

  /* Type */
  --font-head: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Fluid layout — scales from 320px phones to 4K */
  --shell:    1320px;
  --gutter:   clamp(18px, 5vw, 96px);
  --header-h: clamp(68px, 8vh, 92px);
  --sp-section: clamp(72px, 12vw, 150px);

  /* Fluid type scale */
  --fs-hero:  clamp(46px, 9.5vw, 120px);
  --fs-h2:    clamp(30px, 4.4vw, 58px);
  --fs-h3:    clamp(19px, 2vw, 24px);
  --fs-body:  clamp(15px, 1.15vw, 17px);

  --ease:   cubic-bezier(.22, .61, .36, 1);
  --dur:    .7s;
  --radius: 14px;
  --radius-lg: 22px;
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg,
      var(--bg-0) 0%,
      var(--bg-1) 22%,
      var(--bg-2) 46%,
      var(--bg-1) 72%,
      var(--bg-0) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; letter-spacing: -.02em; }
p   { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--orange); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* faint ambient glow that follows the whole page */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(245, 130, 42, .07), transparent 60%),
    radial-gradient(700px 700px at -10% 40%, rgba(245, 130, 42, .04), transparent 60%);
}

main, .site-footer, .site-header, .marquee { position: relative; z-index: 1; }

/* ── 3. Layout primitives ──────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sp-section); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(11px, 1vw, 12.5px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: clamp(16px, 2vw, 26px);
}
.eyebrow-line {
  display: inline-block;
  width: 34px; height: 1.5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  border-radius: 2px;
  flex: none;
}
.eyebrow--center { justify-content: center; }

.section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
}
.section-title em, .hero-title em, .brand-title em,
.cta-cat-title em, .cta-contact-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--orange-hot) 0%, var(--orange) 55%, var(--orange-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-sub {
  margin-top: 20px;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* ── 4. Buttons ────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), border-color .35s var(--ease),
              color .35s var(--ease);
  will-change: transform;
}
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(6px); }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-hot) 0%, var(--orange) 50%, var(--orange-deep) 100%);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 10px 34px -12px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(245, 130, 42, .5), inset 0 1px 0 rgba(255,255,255,.25);
}

.btn-glass {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: #0B0B0D;
  box-shadow: 0 12px 34px -14px rgba(0,0,0,.6);
}
.btn-light:hover { transform: translateY(-2px); background: #F4F2EE; }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ── 5. Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease),
              backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8, 8, 10, .72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img { height: clamp(44px, 5.6vh, 58px); width: auto; }

.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }

.nav-link {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding-block: 6px;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }

.nav-cta { margin-left: 6px; }
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ── 6. Hero — true full screen ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: clamp(56px, 8vh, 96px);
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 78% 18%, rgba(245, 130, 42, .16), transparent 58%),
    radial-gradient(900px 700px at 12% 88%, rgba(245, 130, 42, .08), transparent 55%),
    linear-gradient(175deg, #101014 0%, var(--bg-0) 58%, var(--bg-1) 100%);
}

/* drifting colour orbs */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  animation: drift 16s ease-in-out infinite alternate;
}
.orb-1 {
  width: 46vw; height: 46vw;
  min-width: 340px; min-height: 340px;
  right: -10vw; top: -14vh;
  background: radial-gradient(circle at 35% 35%, rgba(245,130,42,.34), rgba(201,97,26,.1) 60%, transparent 75%);
}
.orb-2 {
  width: 34vw; height: 34vw;
  min-width: 260px; min-height: 260px;
  left: -12vw; bottom: -10vh;
  background: radial-gradient(circle at 60% 40%, rgba(255,154,69,.16), transparent 70%);
  animation-delay: -6s;
  animation-duration: 20s;
}
.orb-3 {
  width: 20vw; height: 20vw;
  min-width: 180px; min-height: 180px;
  left: 44%; top: 8%;
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  animation-delay: -11s;
  animation-duration: 24s;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, 5vh, 0) scale(1.12); }
}

/* faint architectural grid */
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(90% 80% at 60% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 80% at 60% 30%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.04em;
}

.hero-sub {
  margin-top: clamp(18px, 2.6vh, 30px);
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
}

.hero-body {
  margin-top: 18px;
  max-width: 48ch;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: clamp(28px, 4vh, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  margin-top: clamp(32px, 5vh, 56px);
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(20px, 3vh, 30px);
}
.hero-stats li { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(120deg, #fff, rgba(255,255,255,.72));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* hero product image */
.hero-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-media-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(60% 60% at 50% 55%, var(--orange-glow), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1274 / 520;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, .8),
    0 0 0 1px rgba(0,0,0,.4);
  animation: heroFloat 7s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}
.hero-tag {
  position: absolute;
  z-index: 2;
  left: 16px; bottom: 16px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(8, 8, 10, .66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(16px, 3vh, 30px);
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color .3s var(--ease);
}
.hero-scroll:hover { border-color: var(--orange); }
.hero-scroll-dot {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--orange);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(0);   opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* ── 7. Trust strip ────────────────────────────────────────── */
.trust {
  padding-block: clamp(44px, 7vw, 84px);
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-block: 1px solid var(--line-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}

.trust-item {
  position: relative;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease);
}
.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 130, 42, .35);
  background: linear-gradient(160deg, rgba(245,130,42,.07), rgba(255,255,255,.01));
}
.trust-ico {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--orange);
}
.trust-item h3 {
  margin-top: 14px;
  font-size: var(--fs-h3);
  font-weight: 700;
}
.trust-item p { margin-top: 8px; font-size: 14.5px; color: var(--ink-soft); }

/* ── 8. Marquee ────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding-block: clamp(18px, 2.4vw, 28px);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.marquee i { font-size: 7px; color: var(--orange); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 9. Categories ─────────────────────────────────────────── */
.categories {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
}

.cat-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg-3), var(--bg-2));
  transition: transform .45s var(--ease), border-color .45s var(--ease),
              box-shadow .45s var(--ease);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 130, 42, .4);
  box-shadow:
    0 30px 60px -30px rgba(0, 0, 0, .8),
    0 0 44px -18px var(--orange-glow);
}

.cat-card--wide    { grid-column: span 4; }
.cat-card--feature { grid-column: span 4; flex-direction: row; }

.cat-media {
  position: relative;
  overflow: hidden;
  background: var(--bg-4);
}
.cat-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 10, .5) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.cat-card:hover .cat-media::after { opacity: 1; }

.cat-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-card--wide .cat-media img { aspect-ratio: 16 / 9; }
.cat-card:hover .cat-media img { transform: scale(1.05); }

.cat-body {
  padding: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-num {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--orange);
}

.cat-title {
  margin-top: 10px;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 700;
  transition: transform .4s var(--ease);
}
.cat-card:hover .cat-title { transform: translateX(4px); }

.cat-desc {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 48ch;
}

.cat-link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange);
}
.cat-link .arw { transition: transform .4s var(--ease); }
.cat-card:hover .cat-link .arw { transform: translateX(6px); }

/* bathroom feature card */
.cat-card--feature .cat-media { flex: 0 0 50%; }
.cat-card--feature .cat-media img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 250px;
  object-position: 50% 45%;
}
.cat-card--feature .cat-body { justify-content: center; }
.cat-card--feature .cat-link { margin-top: 0; padding-top: 20px; }

/* ── 10. Featured ──────────────────────────────────────────── */
.featured {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 55%, var(--bg-1) 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.featured-media {
  position: relative;
  margin: 0;
}
.featured-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(55% 55% at 50% 50%, rgba(245,130,42,.2), transparent 72%);
  filter: blur(28px);
}
.featured-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 36px 80px -32px rgba(0, 0, 0, .85);
}

.featured-body {
  margin-top: 22px;
  color: var(--ink-soft);
  max-width: 48ch;
}

.spec-list {
  margin-block: clamp(26px, 3.4vw, 40px);
  border-top: 1px solid var(--line);
}
.spec-list > div {
  display: grid;
  grid-template-columns: minmax(96px, 130px) 1fr;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.spec-list dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.spec-list dd { font-size: 14.5px; color: var(--ink); }

/* ── 11. Brand band ────────────────────────────────────────── */
.brand-band {
  position: relative;
  padding-block: clamp(96px, 14vw, 180px);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(1000px 480px at 50% 115%, rgba(245, 130, 42, .2), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 60%, #0D0A08);
}
.brand-band-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 20%, transparent 100%);
}

.brand-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
}

.rule {
  width: 60px; height: 2.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-hot));
  margin-bottom: 38px;
  box-shadow: 0 0 18px var(--orange-glow);
}

.brand-mark {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .55em;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

.brand-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.08;
}

.brand-lead {
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
}

.brand-body {
  margin-top: 14px;
  max-width: 46ch;
  color: var(--ink-soft);
}

.brand-inner .btn { margin-top: 42px; }

/* ── 12. About ─────────────────────────────────────────────── */
.about { background: linear-gradient(180deg, #0D0A08, var(--bg-1) 30%); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}

.about-copy p:not(.eyebrow) { color: var(--ink-soft); max-width: 54ch; }
.about-copy p + p { margin-top: 16px; }
.about-copy .section-title { margin-bottom: 24px; }

.about-facts {
  margin-top: clamp(30px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-facts li {
  padding: 20px 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255,255,255,.03), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-facts strong {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(110deg, var(--orange-hot), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-facts span { font-size: 12.5px; color: var(--ink-faint); }

.about-media { margin: 0; position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 36px 80px -34px rgba(0, 0, 0, .85);
}

/* ── 13. Story / finishes ──────────────────────────────────── */
.story { background: linear-gradient(180deg, var(--bg-1), var(--bg-2) 50%, var(--bg-1)); }

.process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.process li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 12px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.process li:hover {
  border-color: rgba(245, 130, 42, .4);
  background: rgba(245, 130, 42, .06);
}
.process li span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--orange);
}

.finish-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.finish {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
  transition: transform .45s var(--ease), border-color .45s var(--ease),
              box-shadow .45s var(--ease);
}
.finish:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 42, .38);
  box-shadow: 0 24px 50px -26px rgba(0,0,0,.85);
}
.finish img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.finish:hover img { transform: scale(1.06); }
.finish figcaption {
  padding: 13px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
}

/* ── 14. Why JENY ──────────────────────────────────────────── */
.why { background: var(--bg-1); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.why-item {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--bg-3), var(--bg-2));
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease);
}
.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 42, .35);
  background: linear-gradient(165deg, rgba(245,130,42,.08), var(--bg-2));
}
.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,130,42,.18), rgba(245,130,42,.05));
  border: 1px solid rgba(245,130,42,.3);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--orange);
}
.why-item h3 {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.why-item p { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); }

/* ── 15. Catalogue CTA ─────────────────────────────────────── */
.cta-catalogue {
  position: relative;
  padding-block: clamp(72px, 10vw, 130px);
  overflow: hidden;
  background: linear-gradient(120deg, var(--orange-deep) 0%, var(--orange) 45%, var(--orange-hot) 100%);
  color: #fff;
}
.cta-cat-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 88% -20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(600px 500px at 5% 120%, rgba(0,0,0,.24), transparent 60%);
  mix-blend-mode: soft-light;
}
.cta-catalogue .eyebrow { color: rgba(255,255,255,.85); }
.cta-catalogue .eyebrow-line { background: #fff; }

.cta-cat-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.cta-cat-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0,0,0,.14);
}
.cta-cat-title em {
  background: linear-gradient(100deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.cta-cat-body {
  margin-top: 18px;
  max-width: 46ch;
  color: rgba(255, 255, 255, .88);
}
.cta-cat-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 16. Contact CTA ───────────────────────────────────────── */
.cta-contact {
  text-align: center;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(245, 130, 42, .1), transparent 60%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
}
.cta-contact-inner { display: flex; flex-direction: column; align-items: center; }
.cta-contact-title {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.cta-contact-body {
  margin-top: 22px;
  color: var(--ink-soft);
  max-width: 44ch;
}
.cta-contact-actions {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── 17. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(56px, 8vw, 96px) 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-soft);
}

.footer-logo { height: clamp(64px, 7vw, 84px); width: auto; margin-bottom: 24px; }
.footer-brand p { color: var(--ink-soft); font-size: 15px; }
.footer-tag {
  margin-top: 10px !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange) !important;
}

.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14.5px;
  color: var(--ink-soft);
  width: fit-content;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer-col a:hover { color: var(--orange); transform: translateX(3px); }
.footer-muted { font-size: 13.5px; color: rgba(244, 242, 238, .3); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ── 18. Motion ────────────────────────────────────────────── */
.reveal, .reveal-img {
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: calc(var(--d, 0) * 100ms);
}
.reveal     { transform: translateY(26px); }
.reveal-img { transform: translateY(26px) scale(.98); }
.reveal.is-in, .reveal-img.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-img { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ═══ 19. Responsive ═══════════════════════════════════════ */

/* Large desktop → keep the shell centred, type capped by clamp() */

/* Laptop / small desktop */
@media (max-width: 1180px) {
  .cat-card          { grid-column: span 3; }
  .cat-card--wide    { grid-column: span 3; }
  .cat-card--feature { grid-column: span 6; }
  .finish-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 960px) {
  /* Nav → glass drawer */
  .nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px var(--gutter) 30px;
    background: rgba(8, 8, 10, .92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-link {
    padding-block: 17px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 17px;
    color: var(--ink);
  }
  .nav-link::after { display: none; }
  .nav-cta { margin: 22px 0 0; }
  .nav-toggle { display: flex; }

  /* Hero stacks — still full screen */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vh, 48px);
    align-content: center;
  }
  .hero-media { max-width: 640px; }
  .hero-body { max-width: none; }

  .trust-grid { grid-template-columns: 1fr; gap: 14px; }

  .cat-card, .cat-card--wide { grid-column: span 6; }
  .cat-card--feature { flex-direction: column; }
  .cat-card--feature .cat-media { flex: none; }
  .cat-card--feature .cat-media img { min-height: 0; aspect-ratio: 16 / 9; }

  .featured-grid, .about-grid { grid-template-columns: 1fr; gap: clamp(30px, 5vw, 48px); }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero { padding-bottom: 76px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-stats { gap: 0; justify-content: space-between; }
  .hero-tag { display: none; }

  .spec-list > div { grid-template-columns: 1fr; gap: 4px; }
  .about-facts { grid-template-columns: 1fr; gap: 12px; }
  .finish-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }

  .process { justify-content: flex-start; }

  .cta-cat-inner { flex-direction: column; align-items: stretch; }
  .cta-cat-actions .btn { flex: 1 1 100%; }
  .cta-contact-actions { width: 100%; }
  .cta-contact-actions .btn { flex: 1 1 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 34px; }
}

/* Very small phones */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .hero-stats strong { font-size: 20px; }
  .finish-grid { grid-template-columns: 1fr; }
}

/* Short landscape phones — hero must not crush */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 32px) 64px; }
  .hero-scroll { display: none; }
}

/* 4K / ultrawide — cap the canvas, scale the glow */
@media (min-width: 2200px) {
  :root { --shell: 1560px; }
  body { font-size: 18px; }
}
