@charset "UTF-8";
/* ==========================================================================
   My Chair Manufacturer Ltd. — design system
   Built 2026. Mobile-first. No frameworks, no build step.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Ink / paper */
  --ink:        #14161a;
  --ink-2:      #23272e;
  --ink-3:      #444b55;
  --muted:      #6d7480;
  --paper:      #fbfaf7;
  --paper-2:    #f4f1ea;
  --paper-3:    #ebe6dc;
  --white:      #ffffff;
  --line:       #e4dfd5;
  --line-soft:  #efebe3;

  /* Accent — clay / ember */
  --accent:      #bd4f2b;
  --accent-deep: #9a3d1e;
  --accent-soft: #f7ece7;

  /* Support */
  --olive:  #5c6350;
  --sand:   #c9b99a;

  /* Type */
  --font-display: "Archivo", "Archivo Black", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Fluid scale */
  --t-xs:   0.75rem;
  --t-sm:   0.8125rem;
  --t-base: clamp(0.95rem, 0.9rem + 0.2vw, 1.0625rem);
  --t-lg:   clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  --t-xl:   clamp(1.3rem, 1.15rem + 0.7vw, 1.75rem);
  --t-2xl:  clamp(1.65rem, 1.35rem + 1.3vw, 2.5rem);
  --t-3xl:  clamp(2.1rem, 1.55rem + 2.4vw, 3.6rem);
  --t-4xl:  clamp(2.5rem, 1.6rem + 3.9vw, 5rem);

  /* Space */
  --gut:   clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.25rem, 8vw, 7rem);
  --max:   1240px;
  --max-narrow: 760px;

  /* Misc */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --sh-sm: 0 1px 2px rgba(20,22,26,.06), 0 2px 8px rgba(20,22,26,.04);
  --sh:    0 2px 6px rgba(20,22,26,.06), 0 12px 32px rgba(20,22,26,.08);
  --sh-lg: 0 8px 24px rgba(20,22,26,.10), 0 30px 70px rgba(20,22,26,.13);
  --ease: cubic-bezier(.22,.61,.36,1);
  --hdr-h: 68px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
}
p { text-wrap: pretty; }
::selection { background: var(--accent); color: #fff; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { width: 100%; max-width: var(--max-narrow); margin-inline: auto; padding-inline: var(--gut); }
.sec { padding-block: var(--sec-y); }
.sec-tight { padding-block: clamp(2.25rem, 5vw, 4rem); }
.bg-paper2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #cfd3d9; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-white { background: var(--white); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- 4. Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; flex: none; opacity: .6;
}
.eyebrow-c { justify-content: center; }
.eyebrow-c::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.bg-ink .eyebrow { color: var(--sand); }

.h-display { font-size: var(--t-4xl); letter-spacing: -0.035em; }
.h1 { font-size: var(--t-3xl); }
.h2 { font-size: var(--t-2xl); }
.h3 { font-size: var(--t-xl); }
.lede {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 62ch;
}
.bg-ink .lede { color: #b3b9c2; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }
.sec-head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head.center { margin-inline: auto; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.5rem;
  font-family: var(--font-body);
  font-size: .9375rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .18s var(--ease),
              box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 8px 22px rgba(189,79,43,.3); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); box-shadow: 0 8px 22px rgba(20,22,26,.25); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--white); }
.bg-ink .btn-ghost,
.hero .btn-ghost,
.phero .btn-ghost,
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.bg-ink .btn-ghost:hover,
.hero .btn-ghost:hover,
.phero .btn-ghost:hover,
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper-2); }
.btn-sm { min-height: 40px; padding: .5rem 1.1rem; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .9375rem; color: var(--accent);
  transition: gap .25s var(--ease);
}
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover { gap: .7rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- 6. Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251,250,247,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 20px rgba(20,22,26,.05); }
.hdr-in {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--hdr-h);
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
}
.brand { display: flex; align-items: center; gap: .7rem; flex: none; padding-block: .5rem; }
.brand-mark {
  width: 34px; height: 34px; flex: none; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.0625rem;
  letter-spacing: -.02em; color: var(--ink);
}
.brand-sub {
  font-size: .625rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-top: .25rem; font-weight: 500;
}

.nav { display: none; margin-left: auto; align-items: center; gap: .15rem; }
.nav a {
  position: relative; padding: .55rem .8rem; border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 500; color: var(--ink-3);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.is-active { color: var(--ink); font-weight: 600; }
.nav a.is-active::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .2rem;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.hdr-cta { display: none; margin-left: .6rem; }

/* Mobile toggle */
.burger {
  margin-left: auto; width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block; width: 17px; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed; inset: var(--hdr-h) 0 0; z-index: 88;
  background: var(--paper);
  padding: 1.25rem var(--gut) 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .34s var(--ease), visibility .34s;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem .25rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--line-soft);
}
.drawer a .chev { color: var(--muted); }
.drawer a.is-active { color: var(--accent); }
.drawer-foot { margin-top: 1.75rem; display: grid; gap: .6rem; }
.drawer-foot .btn { width: 100%; }
.drawer-meta { margin-top: 1.75rem; font-size: var(--t-sm); color: var(--muted); line-height: 1.8; }
.drawer-meta a { display: inline; font-size: inherit; font-family: inherit; font-weight: 600; padding: 0; border: 0; color: var(--ink); }
body.no-scroll { overflow: hidden; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .burger { display: none; }
  .drawer { display: none; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,14,17,.92) 0%, rgba(12,14,17,.72) 42%, rgba(12,14,17,.35) 100%),
    linear-gradient(to top, rgba(12,14,17,.85) 0%, rgba(12,14,17,0) 55%);
}
.hero-in {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
  padding-block: clamp(4rem, 13vw, 8.5rem);
  min-height: clamp(460px, 78vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero h1 { color: #fff; font-size: var(--t-4xl); max-width: 17ch; letter-spacing: -.035em; }
.hero h1 em { font-style: normal; color: var(--sand); }
.hero-lede { color: #c3c8d0; font-size: var(--t-lg); max-width: 50ch; margin-top: 1.35rem; }
.hero .eyebrow { color: var(--sand); }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255,255,255,.16);
  max-width: 660px;
}
.hero-stat-n {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1;
}
.hero-stat-l {
  font-size: var(--t-sm); color: #9aa1ac; margin-top: .45rem;
  letter-spacing: .04em;
}
@media (min-width: 720px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

/* Page hero (interior pages) */
.phero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.phero-media { position: absolute; inset: 0; }
.phero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.phero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,14,17,.9), rgba(12,14,17,.55));
}
.phero-in {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto; padding-inline: var(--gut);
  padding-block: clamp(2.75rem, 7vw, 5rem);
}
.phero h1 { color: #fff; font-size: var(--t-3xl); max-width: 20ch; }
.phero .lede { color: #b8bec7; margin-top: 1.1rem; }
.phero .eyebrow { color: var(--sand); }

/* Breadcrumb */
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  font-size: var(--t-sm); color: var(--muted); margin-bottom: 1.15rem;
}
.crumb a { color: inherit; transition: color .2s; }
.crumb a:hover { color: var(--ink); }
.phero .crumb { color: #98a0ab; }
.phero .crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.crumb .cur { color: var(--ink); font-weight: 500; }
.phero .crumb .cur { color: #fff; }

/* ---------- 8. Marquee strip ---------- */
.strip {
  background: var(--ink); color: #fff; overflow: hidden;
  padding-block: .85rem; border-block: 1px solid rgba(255,255,255,.1);
}
.strip-track {
  display: flex; gap: 3rem; white-space: nowrap; width: max-content;
  animation: slide 46s linear infinite;
}
.strip-item {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: var(--t-sm); letter-spacing: .1em; text-transform: uppercase;
  color: #c5cad2; font-weight: 500;
}
.strip-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex: none; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ---------- 9. Grids & cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.75rem); }
.g-2 { grid-template-columns: 1fr; }
.g-3 { grid-template-columns: 1fr; }
.g-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 620px) { .g-2 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .g-3 { grid-template-columns: repeat(3, 1fr); } .g-4 { grid-template-columns: repeat(4, 1fr); } }

/* Category card */
.cat {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); background: var(--ink); isolation: isolate;
  min-height: 300px;
}
.cat img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease); opacity: .78;
}
.cat::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* strong enough at the top that the count chip stays legible on the
     bright banquet-hall and mesh shots, not just the dark boardroom one */
  background: linear-gradient(to top, rgba(12,14,17,.94) 6%, rgba(12,14,17,.52) 45%, rgba(12,14,17,.28) 100%);
}
.cat:hover img { transform: scale(1.06); }
.cat-body { position: relative; z-index: 2; padding: clamp(1.25rem, 2.6vw, 1.85rem); margin-top: auto; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; }
.cat-count {
  align-self: flex-start;
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(12,14,17,.6);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: auto;
}
.cat h3 { color: #fff; font-size: var(--t-xl); margin-top: 1.5rem; }
.cat p { color: #c0c6ce; font-size: .9375rem; margin-top: .55rem; max-width: 42ch; line-height: 1.55; }
.cat-go {
  display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.1rem;
  font-size: .875rem; font-weight: 600; color: #fff;
}
.cat-go svg { transition: transform .3s var(--ease); }
.cat:hover .cat-go svg { transform: translateX(4px); }
.cat-lg { min-height: 400px; }
@media (min-width: 900px) {
  .cat-feature { grid-column: span 2; }
}

/* Product card */
.pcard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.pcard:hover { border-color: var(--line); box-shadow: var(--sh); transform: translateY(-4px); }
.pcard-media {
  position: relative; aspect-ratio: 1 / 1; background: var(--paper-2);
  display: grid; place-items: center; overflow: hidden;
}
.pcard-media img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .5s var(--ease);
}
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.pcard-series {
  font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.pcard h3 {
  font-size: 1.0625rem; margin-top: .4rem; letter-spacing: -.01em;
}
.pcard-desc {
  font-size: .875rem; color: var(--muted); margin-top: .3rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pcard-foot {
  margin-top: auto; padding-top: .9rem;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  font-size: var(--t-sm); color: var(--muted);
}
.pcard-foot .go { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: .3rem; }

/* Feature / value card */
.fcard {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: clamp(1.35rem, 2.6vw, 1.85rem);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.fcard:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); border-color: var(--line); }
.fcard-ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.fcard-ic svg { width: 21px; height: 21px; }
.fcard h3 { font-size: 1.125rem; }
.fcard p { font-size: .9375rem; color: var(--muted); margin-top: .5rem; line-height: 1.6; }
.bg-ink .fcard { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-ink .fcard p { color: #a3aab4; }
.bg-ink .fcard-ic { background: rgba(255,255,255,.08); color: var(--sand); }

/* Numbered tip card */
.tip {
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 1.4rem 1.35rem 1.4rem;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.tip:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); }
.tip-n {
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  color: var(--accent); background: var(--accent-soft);
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: .9rem;
}
.tip p { font-size: .9375rem; line-height: 1.6; color: var(--ink-3); }

/* Split section */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-media-first .split-media { order: -1; }
}
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); }
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media.tall img { aspect-ratio: 3/4; }
.badge-float {
  position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 2;
  background: rgba(251,250,247,.95); backdrop-filter: blur(10px);
  border-radius: var(--r); padding: .9rem 1.15rem; box-shadow: var(--sh);
  max-width: 68%;
}
.badge-float strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.badge-float span { font-size: var(--t-sm); color: var(--muted); }

/* Checklist */
.checks { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: .85rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; font-size: .9375rem; line-height: 1.55; }
.checks svg { flex: none; width: 19px; height: 19px; color: var(--accent); margin-top: .18rem; }
.bg-ink .checks li { color: #b9c0c9; }
.bg-ink .checks svg { color: var(--sand); }

/* ---------- 10. Product detail ---------- */
.pd { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .pd { grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); } }
.pd-gallery { position: relative; }
@media (min-width: 900px) { .pd-gallery { position: sticky; top: calc(var(--hdr-h) + 24px); } }
.pd-main {
  background: var(--paper-2); border: 1px solid var(--line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1; display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem);
  cursor: zoom-in;
  /* source photos are 272px square — don't upscale them into mush */
  max-width: 460px; margin-inline: auto; width: 100%;
}
.pd-main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pd-tag {
  display: inline-block; font-size: var(--t-xs); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: .35rem .75rem; border-radius: 999px;
}
.pd h1 { font-size: var(--t-2xl); margin-top: .9rem; }
.pd-sub { font-size: var(--t-lg); color: var(--ink-3); margin-top: .5rem; }
.pd-feats { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: .7rem; }
.pd-feats li { display: flex; gap: .7rem; font-size: .9375rem; line-height: 1.55; color: var(--ink-3); }
.pd-feats svg { flex: none; width: 18px; height: 18px; color: var(--accent); margin-top: .2rem; }
.specs { margin-top: 1.75rem; border-top: 1px solid var(--line); }
.specs div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line-soft); font-size: .9375rem;
}
.specs dt { color: var(--muted); }
.specs dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

.opts { display: grid; gap: .6rem; margin-top: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .opts { grid-template-columns: repeat(3, 1fr); } }
.opt {
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: .8rem .75rem;
  text-align: center; background: var(--white);
}
.opt-sw { width: 26px; height: 26px; border-radius: 50%; margin: 0 auto .5rem; border: 1px solid rgba(0,0,0,.08); }
.opt span { font-size: var(--t-xs); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ---------- 11. Gallery / lightbox ---------- */
.gal { display: grid; gap: .6rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 560px) { .gal { grid-template-columns: repeat(3, 1fr); gap: .8rem; } }
@media (min-width: 900px) { .gal { grid-template-columns: repeat(5, 1fr); } }
/* Lookbook shots come from two different photo sessions — some on pure white,
   most on a grey studio gradient. A white tile with no blend mode lets both
   sit flush instead of the white ones reading as lighter patches. */
.gal button {
  border: 1px solid var(--line-soft); background: #fff; padding: 0;
  border-radius: var(--r-sm); overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4/5; transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.gal button:hover { box-shadow: var(--sh-sm); transform: translateY(-3px); border-color: var(--line); }
.gal img { width: 100%; height: 100%; object-fit: cover; }

.lb {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12,14,17,.93);
  display: none; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  backdrop-filter: blur(6px);
}
.lb.is-open { display: grid; }
.lb img {
  max-width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: var(--r); background: #fff;
  animation: pop .3s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lb-close, .lb-prev, .lb-next {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; display: grid; place-items: center; cursor: pointer;
  transition: background .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.24); }
.lb-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lb-prev { left: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-cap {
  position: absolute; bottom: clamp(1rem,3vw,2rem); left: 50%; transform: translateX(-50%);
  color: #cfd3d9; font-size: var(--t-sm); letter-spacing: .06em;
}

/* ---------- 12. Filter bar ---------- */
.filters {
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.chip {
  border: 1px solid var(--line); background: var(--white); color: var(--ink-3);
  border-radius: 999px; padding: .5rem 1rem; font-size: .875rem; font-weight: 500;
  cursor: pointer; min-height: 40px;
  transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.result-n { margin-left: auto; font-size: var(--t-sm); color: var(--muted); }

/* ---------- 13. Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .75rem .9rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(189,79,43,.13);
}
.field-2 { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .field-2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: var(--t-sm); color: var(--muted); }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: .6rem; padding: 0; }
.radios { display: grid; gap: .55rem; }
@media (min-width: 620px) { .radios { grid-template-columns: 1fr 1fr; } }
.radio {
  display: flex; gap: .7rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: .85rem .9rem;
  background: var(--white); cursor: pointer; transition: border-color .2s, background .2s;
}
.radio:hover { border-color: var(--ink-3); }
.radio input { min-height: auto; width: auto; margin-top: .25rem; accent-color: var(--accent); flex: none; }
.radio-t { font-size: .9375rem; font-weight: 600; color: var(--ink); display: block; }
.radio-d { font-size: var(--t-sm); color: var(--muted); line-height: 1.5; display: block; margin-top: .15rem; }
.radio:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }

/* ---------- 14. Contact / info ---------- */
.info-list { list-style: none; padding: 0; display: grid; gap: 1.35rem; }
.info-list li { display: flex; gap: .95rem; align-items: flex-start; }
.info-ic {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent); display: grid; place-items: center;
}
.info-ic svg { width: 19px; height: 19px; }
.info-k { font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-v { font-size: 1.0625rem; font-weight: 600; color: var(--ink); margin-top: .15rem; }
.info-v a:hover { color: var(--accent); }
.info-v small { display: block; font-size: .875rem; font-weight: 400; color: var(--muted); margin-top: .2rem; }

/* ---------- 15. Timeline ---------- */
.tl { list-style: none; padding: 0; display: grid; gap: 0; margin-top: 2rem; }
.tl li { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding-bottom: 2rem; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--accent); flex: none; margin-top: .45rem; }
.tl-line { width: 1px; flex: 1; background: var(--line); margin-top: .4rem; }
.tl li:last-child { padding-bottom: 0; }
.tl li:last-child .tl-line { display: none; }
.tl-y { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.tl-b { font-size: .9375rem; color: var(--muted); margin-top: .3rem; line-height: 1.6; max-width: 56ch; }

/* ---------- 16. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); }
.cta-band-media { position: absolute; inset: 0; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta-band-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,14,17,.95), rgba(12,14,17,.62));
}
.cta-band-in { position: relative; z-index: 2; }

/* ---------- 17. Footer ---------- */
.ft { background: var(--ink); color: #9ba2ac; padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.ft-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .ft-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .ft-grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; } }
.ft .brand-name { color: #fff; }
.ft .brand-sub { color: #7a818b; }
.ft .brand-mark { background: rgba(255,255,255,.1); }
.ft-blurb { font-size: .9375rem; line-height: 1.7; margin-top: 1.2rem; max-width: 40ch; color: #939aa4; }
.ft h4 {
  color: #fff; font-family: var(--font-body); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.ft ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.ft ul a { font-size: .9375rem; color: #9ba2ac; transition: color .2s; }
.ft ul a:hover { color: #fff; }
.ft-contact { font-size: .9375rem; line-height: 1.85; font-style: normal; }
.ft-contact a { color: #fff; font-weight: 500; }
.ft-contact a:hover { color: var(--sand); }
.ft-bot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center;
  font-size: var(--t-sm); color: #7a818b;
}
.ft-langs { display: flex; gap: 1.1rem; margin-left: auto; }
.ft-langs a:hover { color: #fff; }
.ft-flag { display: inline-flex; align-items: center; gap: .45rem; }

/* ---------- 18. Reveal animation ----------
   Scoped to .js (set by an inline script in <head>) so that with JavaScript
   off — or if site.js fails to load — every section is simply visible
   rather than stranded at opacity 0. */
.js [data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 19. Utilities ---------- */
/* Must outrank component rules that set display (e.g. .notice{display:flex}),
   otherwise [hidden] elements such as the form success message stay visible. */
[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.rule { height: 1px; background: var(--line); border: 0; margin-block: clamp(2rem,5vw,3.5rem); }
.notice {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--accent-soft); border: 1px solid rgba(189,79,43,.2);
  border-radius: var(--r); padding: 1rem 1.15rem; font-size: .9375rem; color: var(--ink-3);
}
.notice svg { flex: none; width: 19px; height: 19px; color: var(--accent); margin-top: .18rem; }
.empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }

/* Print */
@media print {
  .hdr, .drawer, .ft, .cta-band, .strip, .btn-row { display: none !important; }
  body { background: #fff; }
}
