/* ============================================================
   ZAKI INDUSTRIES — homepage concept
   Colors: #FF0000 red · #000000 black · #FFFFFF white
   Founded 1965 in Sialkot · surgical, dental, ENT, orthopaedic,
   gynaecology and ophthalmic instruments · image-focused layout.
   ============================================================ */

:root {
  --red: #FF0000;
  --red-soft: rgba(255, 0, 0, 0.08);
  --red-line: rgba(255, 0, 0, 0.35);
  --black: #000000;
  --ink: #0B0B0B;
  --white: #FFFFFF;
  --smoke: #F4F4F4;
  --stone: #E8E8E8;
  --muted: #6B6B6B;
  --muted-w: rgba(255, 255, 255, 0.6);
  --line: rgba(0, 0, 0, 0.1);
  --line-w: rgba(255, 255, 255, 0.12);
  --f-sans: "Inter", system-ui, -apple-system, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;
  --f-mono: "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
  --wrap: 1440px;
  --gut: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.76, 0, 0.24, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: auto; overflow-x: clip; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body.ax {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: var(--white); }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* Type utilities */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--red);
}
.eyebrow i { display: block; width: 8px; height: 8px; background: var(--red); }
.eyebrow--w { color: var(--white); }
.eyebrow--w i { background: var(--red); }
.h2 {
  font-family: var(--f-sans); font-weight: 700; font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.02; letter-spacing: -0.025em; color: var(--ink);
}
.h2 em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); }
.h2--w { color: var(--white); }
.lede { font-size: 1.05rem; color: var(--muted); max-width: 56ch; font-weight: 400; }
.lede--w { color: var(--muted-w); }
.link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  padding: 0.4rem 0; border-bottom: 1.5px solid var(--ink);
  transition: color 0.3s, border-color 0.3s;
}
.link:hover { color: var(--red); border-color: var(--red); }

/* Reveal utilities */
[data-h] { opacity: 0; transform: translateY(22px); will-change: transform, opacity; }
[data-reveal] { opacity: 0; transform: translateY(28px); will-change: transform, opacity; }
[data-mask] { clip-path: inset(0 0 100% 0); will-change: clip-path; }
.split-line { display: block; overflow: hidden; padding-block: 0.06em; margin-block: -0.06em; }

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--f-sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 1rem 1.6rem; border-radius: 0; isolation: isolate;
  overflow: hidden; transition: color 0.4s var(--ease);
  border: 0;
}
.btn > span { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.55s var(--ease-io);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn__arr {
  position: relative; z-index: 2; display: inline-block;
  width: 14px; height: 10px;
}
.btn__arr::before, .btn__arr::after { content: ""; position: absolute; background: currentColor; }
.btn__arr::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.btn__arr::after { top: 50%; right: 0; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red::before { background: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--white); }
.btn--ghost-w { color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35); }
.btn--ghost-w::before { background: var(--white); }
.btn--ghost-w:hover { color: var(--ink); }
.btn--white { background: var(--white); color: var(--ink); }
.btn--white::before { background: var(--red); }
.btn--white:hover { color: var(--white); }

/* ================ 1. PRELOADER ================ */
.pl { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; background: var(--black); }
.pl__panel { position: absolute; inset: 0; background: var(--black); clip-path: inset(0 0 0 0); z-index: -1; }
.pl__inner { width: min(680px, 88vw); }
.pl__brand {
  display: flex; align-items: baseline; gap: 0.6ch;
  font-weight: 700; font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: 0.95; letter-spacing: -0.02em; color: var(--white);
}
.pl__mask { display: block; overflow: hidden; }
.pl__mask span { display: block; transform: translateY(110%); }
.pl__mask--red span { color: var(--red); font-family: var(--f-serif); font-weight: 400; font-style: italic; }
.pl__meta { display: flex; align-items: flex-end; justify-content: space-between; margin: 1.4rem 0 0.9rem; opacity: 0; }
.pl__tag { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-w); }
.pl__pct { font-family: var(--f-mono); font-size: 1rem; color: var(--white); font-variant-numeric: tabular-nums; }
.pl__pct span { color: var(--red); margin-right: 2px; }
.pl__bar { height: 2px; background: rgba(255,255,255,0.12); overflow: hidden; }
.pl__bar span { display: block; height: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; }

/* ================ HEADER ================ */
:root {
  --nav-util-h: 38px;
  --nav-brand-h: 96px;
  --nav-menu-h: 54px;
  --nav-h: calc(var(--nav-util-h) + var(--nav-brand-h) + var(--nav-menu-h));
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease), box-shadow 0.3s;
}
.nav.is-in { transform: translateY(0); }
.nav.is-hid { transform: translateY(-100%); }
.nav.is-stuck { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

/* -- utility strip -- */
.nav__utility { height: var(--nav-util-h); background: var(--smoke); border-bottom: 1px solid var(--line); }
.nav__utility-inner {
  height: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__utility-tag { font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.nav__utility-links { display: flex; align-items: center; gap: 1.25rem; }
.nav__utility-links a { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted); transition: color 0.3s; }
.nav__utility-links a:hover { color: var(--red); }

/* -- centered brand row -- */
.nav__brand-row {
  position: relative; height: var(--nav-brand-h);
  display: flex; align-items: center; justify-content: center;
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--f-sans); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__mark { width: 34px; color: var(--ink); }
.brand__text em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); margin-left: 0.2em; }
.brand--w { color: var(--white); }

/* -- menu row (underlined, screenshot-style) -- */
.nav__menu-row {
  height: var(--nav-menu-h); border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); gap: 1.5rem;
}
.nav__menu { flex: 1; display: flex; justify-content: center; }
.nav__menu ul { display: flex; align-items: center; gap: 0.1rem; }
.nav__menu ul li { position: relative; }
.nav__menu ul li:not(:last-child)::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: var(--line); }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.005em;
  padding: 0.6rem 1.05rem; color: var(--muted);
  transition: color 0.25s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active { font-weight: 700; }
.nav__chev { display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-1px); }

/* -- products dropdown -- */
.nav__item--drop { position: relative; }
.nav__drop {
  display: block !important;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 270px; background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 24px 54px -16px rgba(0,0,0,0.25);
  padding: 0.5rem 0; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 60;
}
.nav__drop li { position: static; display: block !important; }
.nav__drop li::after { content: none !important; }
.nav__drop a {
  display: block; padding: 1rem 1.75rem; font-family: var(--f-sans);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.005em; color: var(--muted);
  transition: color 0.2s;
}
.nav__drop a:hover { color: var(--red); }
.nav__item--drop:hover .nav__drop,
.nav__item--drop:focus-within .nav__drop {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__end { display: flex; align-items: center; gap: 0.9rem; }
.nav__cta { padding: 0.7rem 1.15rem; font-size: 0.68rem; }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px; position: absolute; right: var(--gut); top: 50%; transform: translateY(-50%);
  border: 1px solid var(--line); color: var(--ink);
}
.nav__burger span { display: block; width: 16px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__burger.is-on span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-on span:nth-child(2) { opacity: 0; }
.nav__burger.is-on span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__utility-tag { display: none; }
}
@media (max-width: 780px) {
  :root { --nav-brand-h: 74px; --nav-util-h: 0px; }
  .nav__utility { display: none; }
  .brand { font-size: 1.1rem; }
  .brand__mark { width: 26px; }
}

/* Mobile nav */
.fs { position: fixed; inset: 0; z-index: 98; background: var(--black); visibility: hidden; clip-path: inset(0 0 100% 0); display: flex; }
.fs__inner { margin: auto; width: 100%; padding: calc(var(--nav-h) + 2rem) var(--gut) 3rem; display: flex; flex-direction: column; gap: 2.5rem; }
.fs__inner ul li a { display: flex; align-items: baseline; gap: 1rem; font-weight: 700; font-size: clamp(2rem, 8vw, 3rem); letter-spacing: -0.02em; color: var(--white); padding: 0.5rem 0; opacity: 0; transform: translateY(28px); border-bottom: 1px solid var(--line-w); }
.fs__inner ul li a em { font-family: var(--f-mono); font-style: normal; font-size: 0.75rem; color: var(--red); font-weight: 400; }
.fs__foot { display: flex; flex-direction: column; gap: 0.3rem; font-family: var(--f-mono); font-size: 0.8rem; color: var(--muted-w); }
.fs__foot a { color: var(--white); }

/* ================ 2. HERO ================ */
.hero {
    position: relative;
    margin-top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    min-height: 560px;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.hero__stage {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    will-change: clip-path;
}

.hero__slide.is-on {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 7s var(--ease);
}

.hero__slide.is-on img {
    transform: scale(1);
}

.hero__wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.35) 40%,
            rgba(0,0,0,0.85) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,0.65) 0%,
            rgba(0,0,0,0.2) 60%,
            rgba(0,0,0,0.1) 100%
        );
}

.hero__grid {
    position: absolute;
    inset: 0;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gut);
    z-index: 1;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero__gline {
    border-left: 1px solid rgba(255,255,255,0.06);
}

.hero__gline:last-child {
    border-right: 1px solid rgba(255,255,255,0.06);
}

.hero__deck {
    position: relative;
    z-index: 2;
    margin: auto 0 clamp(3rem, 8vh, 5rem);
    max-width: var(--wrap);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 3vh var(--gut) 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-w);
    margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}

.chip i {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--red);
}

.hero__panels {
    position: relative;
    min-height: clamp(220px, 32vh, 340px);
}

.hero__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.hero__panel.is-on {
    opacity: 1;
    pointer-events: auto;
}

.hero__ttl {
    font-family: var(--f-sans);
    font-weight: 600;
    font-size: clamp(1.85rem, 4.6vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.028em;
    text-transform: none;
    max-width: 22ch;
    word-break: normal;
    hyphens: none;
}

.hero__ttl span {
    display: block;
    overflow: hidden;
}

.hero__ttl span > * {
    display: inline-block;
}

.hero__ttl em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

.hero__lead {
    margin-top: 1.4rem;
    max-width: 55ch;
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
}

.hero__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: clamp(2rem, 4vh, 3rem);
}
@media (max-width: 767px) {
    .hero__row {
        display: none;
    }
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero__ctrl {
    width: 44px;
    height: 44px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hero__ctrl i {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(-135deg);
    margin-left: 3px;
}

.hero__ctrl--n i {
    transform: rotate(45deg);
    margin-left: 0;
    margin-right: 3px;
}

.hero__ctrl:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.hero__dots {
    display: flex;
    gap: 0.5rem;
}

.hero__dot {
    width: 40px;
    height: 8px;
    background: none;
    padding: 0;
}

.hero__dot span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}

.hero__dot span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.hero__dot.is-on span::after {
    transform: scaleX(1);
}

.hero__foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem var(--gut);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-w);
    max-width: var(--wrap);
    margin-inline: auto;
}

.hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.hero__scroll i {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--red);
}

.hero__count em {
    color: var(--red);
    font-style: normal;
    font-family: inherit;
}


/* 1200px */
@media (max-width: 1200px) {
    .hero__ttl {
        font-size: clamp(1.8rem, 5vw, 3.6rem);
    }
}


/* 1100px */
@media (max-width: 1100px) {
    .hero {
        height: auto;
        min-height: calc(100vh - var(--nav-h));
    }

    .hero__deck {
        padding-bottom: 2.5rem;
    }
}


/* 900px */
@media (max-width: 900px) {
    .hero__ttl {
        font-size: clamp(1.7rem, 6vw, 2.9rem);
        max-width: 20ch;
    }

    .hero__panels {
        min-height: clamp(260px, 40vh, 360px);
    }
}


/* 780px */
@media (max-width: 780px) {
    .hero {
        height: 50vh;
        min-height: 200px;
    }

    .hero__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero__ttl {
        font-size: clamp(1.6rem, 7.4vw, 2.6rem);
        max-width: 18ch;
        letter-spacing: -0.02em;
        word-wrap: break-word;
    }

    .hero__lead {
        font-size: 0.96rem;
    }

    .hero__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
    }

    .hero__cta .btn {
        justify-content: center;
        white-space: normal;
    }

    .hero__foot {
        display: none;
    }

    .hero__panels {
        min-height: clamp(240px, 48vh, 380px);
    }
}


/* 480px */
@media (max-width: 480px) {
    .hero {
        height: 25vh;
        min-height: 150px;
    }

    .hero__ttl {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        max-width: 16ch;
    }

    .hero__lead {
        font-size: 0.9rem;
    }

    .chip {
        font-size: 0.66rem;
    }

    .hero__panels {
        min-height: clamp(230px, 52vh, 360px);
    }
}
/* ================ 3. ABOUT SPLIT ================ */
.about { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1s var(--ease); }
.about__media:hover img { transform: scale(1); }
.about__badge { position: absolute; top: 1.5rem; left: 1.5rem; z-index: 2; background: var(--red); color: var(--white); padding: 0.65rem 1rem; font-family: var(--f-mono); font-size: 0.9rem; letter-spacing: 0.05em; font-weight: 500; }
.about__badge em { font-style: normal; font-size: 0.65rem; letter-spacing: 0.2em; opacity: 0.75; display: block; text-transform: uppercase; }
.about__body { max-width: 560px; }
.about__body .eyebrow { margin-bottom: 1.5rem; }
.about__body .h2 { margin-bottom: 1.5rem; }
.about__body .lede { margin-bottom: 2rem; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.stat strong { display: block; font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat em { display: block; margin-top: 0.5rem; font-style: normal; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 500px; }
}

/* ================ 4. CATEGORY SECTION ================ */
.cats { padding: clamp(5rem, 10vh, 8rem) 0 clamp(3rem, 6vh, 5rem); background: var(--black); color: var(--white); overflow: hidden; }
.cats__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.cats__head .eyebrow { margin-bottom: 1rem; }
.cats__nav { display: flex; gap: 0.6rem; }
.cats__rail { padding: 0 var(--gut); overflow: hidden; }
.cats__track { display: flex; gap: clamp(1rem, 2vw, 1.75rem); will-change: transform; }
.cat {
  position: relative;
  flex: 0 0 clamp(260px, calc(25% - 1.3125rem), 420px);
  aspect-ratio: 4/5; overflow: hidden; background: #111;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 24px 60px -12px rgba(0,0,0,0.65);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cat:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1.5px var(--accent, var(--red)), 0 32px 80px -14px rgba(0,0,0,0.7), 0 0 50px -8px var(--accent, var(--red));
}
.cat__ttl { font-size: clamp(1.7rem, 2.6vw, 2.4rem); }
.cat__bg { position: absolute; inset: 0; z-index: 0; }
.cat__bg img { width: 100%; height: 100%; object-fit: cover; }
.cat:hover .cat__bg img { transform: none; }
.cat::before { content: ""; position: absolute; inset: 0; z-index: 1; background: none; }
.cat__tool {
  position: absolute; top: 8%; right: 2%; width: auto; z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.6));
  will-change: transform;
  animation: toolDrift 8s ease-in-out infinite;
}
.cat:nth-child(even) .cat__tool { animation-delay: -3s; }
@keyframes toolDrift {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(-3%, -3%) rotate(-6deg); }
}
.cat__meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(1.5rem, 3vw, 2.5rem); }
.cat__num {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--accent, var(--red));
  padding: 0.4em 0.85em; border-radius: 999px; margin-bottom: 1rem;
  box-shadow: 0 6px 18px -4px var(--accent, var(--red));
}
.cat__ttl { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.9rem); line-height: 0.98; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1rem; }
.cat__ttl em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--accent, var(--red)); display: block; }
.cat__meta p { color: rgba(255,255,255,0.75); font-size: 0.95rem; max-width: 44ch; margin-bottom: 1.5rem; }
.cat .btn--white::before { background: var(--accent, var(--red)); }
.cats__bar { max-width: var(--wrap); margin: 2.5rem auto 0; padding: 0 var(--gut); }
.cats__bar span { display: block; height: 2px; background: rgba(255,255,255,0.14); position: relative; }
.cats__bar span::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 33%; background: var(--red); transition: transform 0.6s var(--ease), width 0.6s var(--ease); }

/* ================ 5. COMPLIANCE ================ */
.comply { padding: clamp(4rem, 8vh, 6rem) 0; background: var(--white); overflow: hidden; border-block: 1px solid var(--line); }
.comply__head { text-align: center; margin-bottom: 2.5rem; }
.comply__head .eyebrow { justify-content: center; margin-bottom: 0.75rem; }
.comply__note { font-family: var(--f-mono); font-size: 0.75rem; color: var(--muted); }
.comply__track { display: flex; width: max-content; will-change: transform; }
.comply__group { display: flex; align-items: center; flex-shrink: 0; }
.comply__logo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.25rem 2rem; margin: 0 0.5rem; min-width: 200px;
  font-family: var(--f-sans); font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.05em; color: var(--ink);
  border: 1.5px solid var(--line);
  transition: color 0.3s, border-color 0.3s;
}
.comply__logo em { font-style: normal; color: var(--red); margin-right: 0.4rem; }
.comply__logo:hover { color: var(--red); border-color: var(--red); }

/* ================ 6. CATALOGUE ================ */
.ctlg { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--black); color: var(--white); overflow: hidden; }
.ctlg__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.ctlg__body .eyebrow { margin-bottom: 1.5rem; }
.ctlg__body .h2 { margin-bottom: 1.5rem; }
.ctlg__body .lede { margin-bottom: 2rem; }
.ctlg__meta { display: flex; gap: 2.5rem; padding: 1.5rem 0; border-top: 1px solid var(--line-w); border-bottom: 1px solid var(--line-w); margin-bottom: 2rem; }
.ctlg__meta span { font-family: var(--f-mono); font-size: 0.85rem; color: var(--white); }
.ctlg__meta em { font-style: normal; color: var(--muted-w); display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.25rem; }
.ctlg__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.ctlg__mock { position: relative; aspect-ratio: 4/5; }
.ctlg__book { position: relative; z-index: 2; width: 80%; height: 100%; box-shadow: -20px 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,0,0,0.1); overflow: hidden; }
.ctlg__book img { width: 100%; height: 100%; object-fit: cover; }
.ctlg__book--back { position: absolute; top: 4%; right: 0; z-index: 1; width: 78%; height: 96%; background: linear-gradient(135deg, #1a1a1a, #0a0a0a); box-shadow: 20px 30px 60px rgba(0,0,0,0.4); }

@media (max-width: 900px) {
  .ctlg__grid { grid-template-columns: 1fr; }
  .ctlg__mock { max-width: 400px; margin-inline: auto; }
}

/* ================ 7. PARALLAX ================ */
.para { position: relative; height: clamp(500px, 78vh, 720px); overflow: hidden; background: var(--black); color: var(--white); display: flex; align-items: center; }
.para__bg { position: absolute; inset: -20% 0; z-index: 0; will-change: transform; }
.para__bg img { width: 100%; height: 100%; object-fit: cover; }
.para__wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.75)); }
.para__inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.para__inner .eyebrow { margin-bottom: 1.5rem; }
.para__h { font-family: var(--f-sans); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.03em; color: var(--white); }
.para__h em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); }
.para__stats { display: flex; gap: clamp(2rem, 5vw, 5rem); margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.para__stats strong { display: block; font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.5rem, 2.5vw, 2.1rem); letter-spacing: -0.02em; color: var(--red); }
.para__stats em { display: block; font-style: normal; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-w); margin-top: 0.4rem; }

/* ================ 8. JOURNAL ================ */
.jrnl { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--white); }
.jrnl__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.jrnl__head .eyebrow { margin-bottom: 1rem; }
.jrnl__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.post { display: block; }
.post__img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1.5rem; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 0.9s var(--ease); }
.post:hover .post__img img { transform: scale(1.08); }
.post__meta { display: flex; align-items: center; gap: 0.7rem; font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.post__meta span { color: var(--red); }
.post__ttl { font-family: var(--f-sans); font-weight: 600; font-size: clamp(1.15rem, 1.5vw, 1.35rem); line-height: 1.28; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 1rem; transition: color 0.3s; }
.post:hover .post__ttl { color: var(--red); }
.post__more { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.post:hover .post__more { color: var(--red); }

@media (max-width: 900px) { .jrnl__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .jrnl__grid { grid-template-columns: 1fr; } }

/* ================ 9. INSTAGRAM ================ */
.ig { padding: clamp(4rem, 10vh, 8rem) 0; background: var(--smoke); }
.ig__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vh, 3rem); }
.ig__head .eyebrow { margin-bottom: 1rem; }
.ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.ig__tile { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig__tile:hover img { transform: scale(1.08); }
.ig__tile::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(255,0,0,0.7); opacity: 0; transition: opacity 0.4s; }
.ig__ic { position: absolute; top: 50%; left: 50%; z-index: 2; width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1.5px solid var(--white); opacity: 0; transition: opacity 0.4s, transform 0.4s; transform: scale(0.7); }
.ig__ic::before, .ig__ic::after { content: ""; position: absolute; }
.ig__ic::before { top: 8px; left: 8px; right: 8px; bottom: 8px; border: 1.5px solid var(--white); border-radius: 50%; }
.ig__ic::after { top: 5px; right: 5px; width: 4px; height: 4px; background: var(--white); border-radius: 50%; }
.ig__tile:hover::before { opacity: 1; }
.ig__tile:hover .ig__ic { opacity: 1; transform: scale(1); }

@media (max-width: 900px) { .ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* ================ 10. FOOTER ================ */
.foot { background: var(--black); color: var(--white); padding: clamp(4rem, 8vh, 6.5rem) 0 2rem; }
.foot__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: clamp(2.5rem, 5vw, 5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-w); }
.foot__brand p { color: var(--muted-w); font-size: 0.92rem; max-width: 34ch; margin: 1.25rem 0 1.75rem; }
.foot__news { display: flex; gap: 0.6rem; max-width: 380px; }
.foot__news input { flex: 1; padding: 0.9rem 1rem; background: rgba(255,255,255,0.03); border: 1px solid var(--line-w); color: var(--white); font-family: inherit; font-size: 0.85rem; outline: none; transition: border-color 0.3s; }
.foot__news input::placeholder { color: var(--muted-w); }
.foot__news input:focus { border-color: var(--red); }
.foot__news .btn { padding: 0.75rem 1rem; font-size: 0.72rem; }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.foot__cols > div span { display: block; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-w); margin-bottom: 1rem; }
.foot__cols > div a { display: block; font-size: 0.9rem; padding: 0.3rem 0; color: rgba(255,255,255,0.82); transition: color 0.25s, transform 0.35s; cursor: pointer; }
.foot__cols > div a:hover { color: var(--red); transform: translateX(4px); }
.foot__bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; font-family: var(--f-mono); font-size: 0.72rem; color: var(--muted-w); }
.foot__soc { display: flex; gap: 1.25rem; }
.foot__soc a { color: var(--white); cursor: pointer; }
.foot__soc a:hover { color: var(--red); }

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ================ 4b. DEPARTMENTS (manufacturing) ================ */
.depts { padding: clamp(5rem, 12vh, 9rem) 0; background: var(--white); }
.depts__head {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: end; margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.depts__head .eyebrow { margin-bottom: 1.25rem; }
.depts__note { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--muted); max-width: 42ch; }
.depts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.75rem, 1.4vw, 1.4rem); }
.dept { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: #111; color: var(--white); }
.dept__img { position: absolute; inset: 0; z-index: 0; }
.dept__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1s var(--ease); }
.dept:hover .dept__img img { transform: scale(1.12); }
.dept::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.9) 100%); }
.dept::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 0; background: var(--red); transition: height 0.45s var(--ease-io); }
.dept:hover::after { height: 3px; }
.dept__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(1.25rem, 2vw, 1.8rem); }
.dept__cap span { display: block; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.dept__cap h3 { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.35rem, 1.9vw, 1.75rem); line-height: 1.05; letter-spacing: -0.02em; color: var(--white); margin-bottom: 0.6rem; }
.dept__cap p { color: rgba(255,255,255,0.78); font-size: 0.86rem; max-width: 36ch; line-height: 1.5; }

@media (max-width: 900px) {
  .depts__head { grid-template-columns: 1fr; }
  .depts__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .depts__grid { grid-template-columns: 1fr; }
  .dept { aspect-ratio: 4/3; }
}

/* ================ 5. EDITORIAL FULL-BLEED BAND ================ */
.edit { position: relative; height: clamp(520px, 78vh, 780px); overflow: hidden; background: var(--black); color: var(--white); display: flex; align-items: flex-end; }
.edit__bg { position: absolute; inset: -8% 0; z-index: 0; }
.edit__bg img { width: 100%; height: 100%; object-fit: cover; }
.edit__wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%); }
.edit__inner { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vh, 6rem); }
.edit__inner .eyebrow { margin-bottom: 1.5rem; }
.edit__h { font-family: var(--f-sans); font-weight: 700; font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 1.0; letter-spacing: -0.035em; color: var(--white); max-width: 22ch; }
.edit__h em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); }
.edit__lede { margin-top: 1.5rem; color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 60ch; }

/* ================ INNER-PAGE HERO ================ */
.phero { position: relative; margin-top: var(--nav-h); min-height: clamp(160px, 32vh, 560px); background: linear-gradient(135deg, #0B0B0B 0%, #3a0000 50%, #FF0000 100%);    color: var(--white); overflow: hidden; display: flex; align-items: flex-end; }
.phero__bg { position: absolute; inset: 0; z-index: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero__wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 100%); }
.phero__inner { position: relative; z-index: 2; padding: clamp(2.5rem, 6vh, 4.5rem) 1.5rem; }
.phero__crumb { display: inline-flex; gap: 0.6rem; align-items: center; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-w); margin-bottom: 1.25rem; }
.phero__crumb i { display: block; width: 8px; height: 8px; background: var(--white); }
.phero__crumb em { font-style: normal; color: var(--white); }
.phero__h { font-family: var(--f-sans); font-weight: 600; font-size: clamp(2rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.032em; max-width: 20ch; }
.phero__h em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); }
.phero__lede { margin-top: 1.25rem; max-width: 62ch; color: rgba(255,255,255,0.78); font-size: 1.05rem; }

/* ================ SECTION UTILITIES ================ */
.sect { padding: clamp(4rem, 10vh, 8rem) 0; }
.sect--dark { background: var(--black); color: var(--white); }
.sect--smoke { background: var(--smoke); }
.sect__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.sect__head .eyebrow { margin-bottom: 1.25rem; }
.sect__head .h2 { margin-bottom: 1.25rem; }
.sect__head--center { margin-inline: auto; text-align: center; }
.sect__head--center .eyebrow { justify-content: center; }
.sect__head--split { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; max-width: none; }
@media (max-width: 900px) { .sect__head--split { grid-template-columns: 1fr; } }

/* ================ TIMELINE ================ */
.tl { position: relative; padding-left: 2rem; border-left: 1.5px solid var(--line); }
.tl__item { position: relative; padding-bottom: 3rem; }
.tl__item::before { content: ""; position: absolute; left: -2.5rem; top: 0.35rem; width: 12px; height: 12px; background: var(--red); }
.tl__yr { display: block; font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
.tl__ttl { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.tl__p { color: var(--muted); max-width: 60ch; }

/* ================ VALUES ================ */
.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.val { padding: clamp(1.5rem, 2.5vw, 2.25rem); border: 1px solid var(--line); background: var(--white); transition: 0.4s; }
.val:hover { border-color: var(--red); transform: translateY(-4px); }
.val__num { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.22em; color: var(--red); margin-bottom: 1rem; display: block; }
.val__ttl { font-family: var(--f-sans); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.val__p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
@media (max-width: 900px) { .vals { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vals { grid-template-columns: 1fr; } }

/* ================ TEAM ================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.tm { position: relative; }
.tm__img { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1rem; background: #111; }
.tm__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tm:hover .tm__img img { transform: scale(1.06); }
.tm__nm { font-family: var(--f-sans); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 0.15rem; }
.tm__rl { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }

/* ================ PRODUCTS PAGE ================ */
.plist { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.pfilter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); align-items: center; }
.pfilter__lbl { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-right: 1rem; }
.pf { padding: 0.6rem 1rem; border: 1px solid var(--line); background: transparent; color: var(--ink); font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; transition: 0.3s; cursor: pointer; }
.pf:hover, .pf.is-on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.p { position: relative; display: block; }
.p__img { aspect-ratio: 1/1; overflow: hidden; background: var(--smoke); }
.p__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.p:hover .p__img img { transform: scale(1.08); }
.p::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 0; background: var(--red); transition: height 0.4s var(--ease-io); }
.p:hover::after { height: 3px; }
.p__body { padding: 1rem 0.25rem 0.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.p__cat { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.p__ttl { font-family: var(--f-sans); font-weight: 600; font-size: 1.02rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); margin-top: 0.35rem; }
.p__code { font-family: var(--f-mono); font-size: 0.68rem; color: var(--muted); letter-spacing: 0.06em; }
@media (max-width: 900px) { .pgrid { grid-template-columns: 1fr 1fr; } }
/* Normal Desktop / Laptop par 3 columns */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Tablets par 2 columns */
@media (max-width: 900px) {
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobiles par 1 column */
@media (max-width: 576px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
}

/* ================ PRODUCT DETAIL ================ */
.pdet { padding: clamp(3rem, 6vh, 5rem) 0 clamp(4rem, 10vh, 7rem); background: var(--white); }
.pdet__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pdet__stage { position: relative; }
.pdet__hero { aspect-ratio: 4/3; overflow: hidden; background: #111; margin-bottom: 0.75rem; }
.pdet__hero img { width: 100%; height: 100%; object-fit: cover; }
.pdet__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.pdet__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: 0.7; transition: opacity 0.3s; }
.pdet__thumbs img:hover, .pdet__thumbs img.is-on { opacity: 1; }
.pdet__body h1 { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.pdet__cat { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: block; }
.pdet__code { font-family: var(--f-mono); font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.pdet__desc { color: var(--muted); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.65; }
.pdet__specs { list-style: none; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; }
.pdet__specs li { display: grid; grid-template-columns: 40% 1fr; gap: 1rem; padding: 0.5rem 0; font-size: 0.92rem; }
.pdet__specs li span:first-child { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pdet__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 900px) { .pdet__grid { grid-template-columns: 1fr; } }

/* ================ CATALOGUE PAGE ================ */
.clist { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.cbook { position: relative; background: var(--ink); overflow: hidden; }
.cbook__cover { aspect-ratio: 3/4; overflow: hidden; }
.cbook__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cbook:hover .cbook__cover img { transform: scale(1.06); }
.cbook__meta { padding: 1.5rem; color: var(--white); }
.cbook__meta .p__cat { color: var(--red); display: block; margin-bottom: 0.5rem; }
.cbook__meta h3 { font-family: var(--f-sans); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.75rem; }
.cbook__meta p { color: var(--muted-w); font-size: 0.85rem; margin-bottom: 1rem; }
.cbook__meta .link { color: var(--white); border-color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .cgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cgrid { grid-template-columns: 1fr; } }

/* ================ EVENTS PAGE ================ */
.evlist { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.ev { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 3vw, 3rem); padding: 2.5rem 0; border-top: 1px solid var(--line); align-items: center; }
.ev:last-child { border-bottom: 1px solid var(--line); }
.ev__img { aspect-ratio: 3/2; overflow: hidden; background: #111; }
.ev__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.ev:hover .ev__img img { transform: scale(1.05); }
.ev__meta { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; gap: 1rem; }
.ev__meta em { font-style: normal; color: var(--muted); }
.ev__ttl { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.ev__p { color: var(--muted); margin-bottom: 1.25rem; max-width: 55ch; }
@media (max-width: 780px) { .ev { grid-template-columns: 1fr; } }

/* ================ BLOG LIST ================ */
.blog { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.blog__feat { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--line); }
.blog__feat .post__img { aspect-ratio: 5/4; }
.blog__feat .post__ttl { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; margin-bottom: 1rem; }
@media (max-width: 900px) { .blog__feat { grid-template-columns: 1fr; } }
.pager { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3.5rem; }
.pager a { padding: 0.7rem 1rem; border: 1px solid var(--line); font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--ink); transition: 0.3s; }
.pager a:hover, .pager a.is-on { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ================ BLOG DETAIL ================ */
.article { padding: clamp(4rem, 8vh, 6rem) 0; background: var(--white); }
.article__wrap { max-width: 760px; margin-inline: auto; }
.article__meta { display: flex; gap: 1rem; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.article__meta span { color: var(--red); }
.article__h { font-family: var(--f-sans); font-weight: 700; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.5rem; max-width: 24ch; }
.article__lede { font-size: 1.15rem; color: var(--muted); margin-bottom: 2.5rem; }
.article__hero { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 3rem; background: #111; }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body p { margin-bottom: 1.4rem; line-height: 1.75; color: var(--ink); }
.article__body h2 { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.4rem, 2.5vw, 1.9rem); letter-spacing: -0.02em; margin: 2rem 0 1rem; }
.article__body blockquote { border-left: 3px solid var(--red); padding-left: 1.5rem; margin: 2rem 0; font-family: var(--f-serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--ink); }

/* ================ CONTACT ================ */
.ctc { padding: clamp(4rem, 10vh, 7rem) 0; background: var(--white); }
.ctc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.ctc__info h3 { font-family: var(--f-sans); font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
.ctc__info { padding-bottom: 2rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.ctc__info:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.ctc__info p, .ctc__info a { color: var(--muted); font-size: 0.95rem; display: block; line-height: 1.6; }
.ctc__info a:hover { color: var(--red); }
.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.form input, .form textarea, .form select { width: 100%; padding: 0.9rem 1rem; background: var(--white); border: 1px solid var(--line); color: var(--ink); font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color 0.3s; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--red); }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { justify-self: start; }
@media (max-width: 900px) { .ctc__grid { grid-template-columns: 1fr; } .form__row { grid-template-columns: 1fr; } }

.map { aspect-ratio: 4/3; overflow: hidden; background: #111; margin-bottom: 2rem; }
.map img { width: 100%; height: 100%; object-fit: cover; }

/* ================ 404 & THANKS ================ */
.pcenter { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h) - 80px); display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 1rem; background: var(--black); color: var(--white); }
.pcenter__big { font-family: var(--f-sans); font-weight: 800; font-size: clamp(6rem, 22vw, 18rem); line-height: 0.9; letter-spacing: -0.05em; color: var(--white); margin-bottom: 1rem; }
.pcenter__big em { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--red); }
.pcenter__ttl { font-family: var(--f-sans); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
.pcenter p { color: rgba(255,255,255,0.7); max-width: 46ch; margin: 0 auto 2rem; font-size: 1.02rem; }

/* ================ RESPONSIVE ================ */
@media (max-width: 1100px) {
  :root { --nav-menu-h: 0px; }
  .nav__menu-row { display: none; }
  .nav__burger { display: flex; }
}

/* ================ REDUCED MOTION ================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-h], [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-mask] { clip-path: none !important; }
  .pl { display: none; }
}
