:root {
  --bg: #fafaf8;
  --bg-2: #f1f0ec;
  --fg: #16181d;
  --muted: #6b6f76;
  --accent: #f0821f;   /* Fella orange */
  --accent-2: #3e9fd4; /* Fella blue */
  --line: rgba(22, 24, 29, 0.12);
  --max: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__logo { width: min(260px, 60vw); animation: preloaderPulse 1.6s ease-in-out infinite; }
@keyframes preloaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } }
.preloader__bar { width: min(220px, 50vw); height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 0.3s ease; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s;
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.85); backdrop-filter: blur(14px);
  padding-top: 10px; padding-bottom: 10px;
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 40px; width: auto; display: block; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 600; color: var(--fg); opacity: 0.85; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--accent); transition: width 0.4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  border: 1.5px solid var(--fg); padding: 10px 18px; border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--fg); display: block; transition: 0.3s; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__lang {
  background: none; border: 1.5px solid var(--line); border-radius: 100px;
  padding: 8px 14px; font-family: "Archivo", sans-serif; font-size: 13px; font-weight: 800;
  cursor: pointer; color: var(--fg); transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__lang:hover { background: var(--accent-2); border-color: var(--accent-2); color: #fff; }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 9000; background: var(--bg);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 0 clamp(28px, 8vw, 80px);
  opacity: 0; visibility: hidden; transform: translateY(-3%);
  transition: opacity 0.45s var(--ease), visibility 0.45s, transform 0.45s var(--ease);
}
.mmenu.open { opacity: 1; visibility: visible; transform: none; }
.mmenu__close {
  position: absolute; top: 18px; right: 24px; background: none; border: 0; cursor: pointer;
  font-size: 44px; line-height: 1; color: var(--fg);
}
.mmenu__links { display: flex; flex-direction: column; gap: 6px; }
.mmenu__links a {
  font-family: "Archivo Black", sans-serif; text-transform: uppercase;
  font-size: clamp(30px, 9vw, 54px); letter-spacing: -0.02em; line-height: 1.15;
  transition: color 0.25s;
}
.mmenu__links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  /* Bottom padding reserves room for the absolutely-positioned marquee band
     so hero content can never slide underneath it on short viewports. */
  padding: 120px clamp(20px, 4vw, 56px) 150px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(240, 130, 31, 0.12), transparent 60%),
    radial-gradient(50% 50% at 85% 30%, rgba(62, 159, 212, 0.12), transparent 60%),
    radial-gradient(70% 70% at 60% 100%, rgba(240, 130, 31, 0.07), transparent 60%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-4%, -3%, 0) scale(1.1); }
}
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero__eyebrow {
  font-size: clamp(12px, 1.4vw, 15px); text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--muted); margin-bottom: 28px; font-weight: 700;
}
.hero__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(56px, 15vw, 220px);
  line-height: 0.86; letter-spacing: -0.035em; text-transform: uppercase;
  color: var(--fg);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .accent .reveal-word { color: var(--accent); }
.reveal-word { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.revealed .reveal-word, .hero.in .reveal-word { transform: translateY(0); }
.hero__title .line:nth-child(2) .reveal-word { transition-delay: 0.08s; }
.hero__title .line:nth-child(3) .reveal-word { transition-delay: 0.16s; }
.hero__lead {
  margin-top: 34px; max-width: 620px; font-size: clamp(17px, 2vw, 22px);
  color: var(--muted); font-weight: 500;
}
.hero__meta { display: flex; gap: clamp(28px, 5vw, 70px); margin-top: 46px; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: "Archivo Black", sans-serif; font-size: clamp(20px, 2.4vw, 30px); }
.hero__meta span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero__scroll {
  position: absolute; bottom: 130px; right: clamp(20px, 4vw, 56px); z-index: 2;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.hero__scroll .hero__scrollline { width: 1px; height: 40px; background: var(--muted); position: relative; overflow: hidden; display: inline-block; }
.hero__scroll .hero__scrollline::after { content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px; background: var(--accent); animation: scrolldot 2s var(--ease) infinite; }
.hero__actions { margin-top: 30px; }
.hero__watch {
  background: var(--fg); color: #fff; border: 0; cursor: pointer;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 14px 26px; border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.hero__watch:hover { background: var(--accent); transform: translateY(-2px); }
@keyframes scrolldot { 0% { top: -40px; } 60%,100% { top: 40px; } }

/* Marquee */
.hero__marquee { position: absolute; bottom: 30px; left: 0; width: 100%; z-index: 2; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; background: var(--bg); }
.marquee__track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: "Archivo Black", sans-serif; font-size: 14px; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Fabric scroll (dive into t-shirt → threads → bobbins → cotton) ---------- */
.fabric { position: relative; height: 1200vh; background: var(--bg); }
.fabric__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.fabric__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; /* opacity is driven per-frame from JS for scroll-linked cross-dissolves */
}
.fabric__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(250,250,248,0.55) 100%);
}
.fabric__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.fabric__cap {
  position: absolute; max-width: 1000px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 5.5vw, 76px); line-height: 1.0; letter-spacing: -0.03em;
  text-transform: uppercase; color: var(--fg);
  opacity: 0; transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  text-shadow: 0 2px 30px rgba(250,250,248,0.9), 0 0 60px rgba(250,250,248,0.8);
}
.fabric__cap.show { opacity: 1; transform: translateY(0) scale(1); }
.fabric__dots {
  position: absolute; right: clamp(16px, 3vw, 40px); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 3;
}
.fabric__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--muted);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.fabric__dots span.active { background: var(--accent); border-color: var(--accent); transform: scale(1.35); }
.fabric__hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--muted);
  animation: hintPulse 2s ease-in-out infinite;
}
@keyframes hintPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---------- Generic section ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(90px, 12vw, 180px) clamp(20px, 4vw, 56px); }
.section__label {
  display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 48px;
}
.section__label span { color: var(--accent); font-family: "Archivo Black", sans-serif; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.about__title { font-family: "Archivo Black", sans-serif; font-size: clamp(30px, 4.6vw, 68px); line-height: 1.02; letter-spacing: -0.03em; }
.about__body p { color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); margin-bottom: 22px; }
.about__body p:first-child { color: var(--fg); }
.about__media { margin-top: clamp(50px, 7vw, 90px); }
.about__media video {
  width: 100%; display: block; border-radius: 20px;
  box-shadow: 0 30px 60px -35px rgba(22,24,29,0.35);
}
.about__media figcaption { margin-top: 14px; font-size: 14px; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: clamp(60px, 8vw, 110px); border-top: 1px solid var(--line); padding-top: 50px; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: "Archivo Black", sans-serif; font-size: clamp(44px, 7vw, 96px); line-height: 1; letter-spacing: -0.03em; display: inline; }
.stat__suffix { font-family: "Archivo Black", sans-serif; font-size: clamp(30px, 4vw, 54px); color: var(--accent); }
.stat__cap { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 220px; }

.about__vm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(50px, 7vw, 90px); }
.vm__card { border: 1px solid var(--line); border-radius: 18px; padding: 30px; background: #fff; }
.vm__card h3 { font-family: "Archivo Black", sans-serif; font-size: clamp(17px, 1.8vw, 22px); margin-bottom: 12px; color: var(--accent-2); }
.vm__card p { color: var(--muted); font-size: 15px; }

/* ---------- Capabilities ---------- */
.cap__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.03em; line-height: 1.02; max-width: 900px; margin-bottom: 56px; }
.cap__list { list-style: none; border-top: 1px solid var(--line); }
.cap__item {
  display: grid; grid-template-columns: 80px 320px 1fr; gap: 24px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid var(--line); position: relative;
  transition: padding-left 0.5s var(--ease);
}
.cap__item::before { content: ""; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(240,130,31,0.07)); transition: left 0.6s var(--ease); z-index: -1; }
.cap__item:hover { padding-left: 24px; }
.cap__item:hover::before { left: 0; }
.cap__idx { font-family: "Archivo Black", sans-serif; color: var(--accent); font-size: 15px; }
.cap__item h3 { font-family: "Archivo Black", sans-serif; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.02em; }
.cap__item p { color: var(--muted); font-size: clamp(15px, 1.3vw, 18px); }

/* ---------- Production ---------- */
.prod__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.03em; margin-bottom: 56px; max-width: 900px; }
.prod__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod__card {
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 34px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.prod__card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 24px 50px -30px rgba(22,24,29,0.25); }
.prod__media { margin: -40px -34px 26px; border-radius: 20px 20px 0 0; overflow: hidden; }
.prod__media video, .prod__media img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.6s var(--ease); }
.prod__card:hover .prod__media video, .prod__card:hover .prod__media img { transform: scale(1.05); }

/* Seven steps do not divide by three — the last one closes the row, laid out sideways. */
.prod__card--wide { grid-column: 1 / -1; flex-direction: row; align-items: stretch; gap: 34px; min-height: 0; }
.prod__card--wide .prod__media { flex: 0 0 44%; margin: -40px 0 -40px -34px; border-radius: 20px 0 0 20px; }
.prod__card--wide .prod__media video { height: 100%; aspect-ratio: auto; }
.prod__card--wide .prod__body { display: flex; flex-direction: column; justify-content: center; padding: 12px 0; max-width: 52ch; }
.prod__card--wide .prod__body h3 { margin-top: 22px; }
.prod__num { font-family: "Archivo Black", sans-serif; font-size: clamp(50px, 6vw, 84px); color: var(--accent); line-height: 1; opacity: 0.9; }
.prod__card h3 { font-family: "Archivo Black", sans-serif; font-size: clamp(22px, 2.4vw, 30px); margin-top: 30px; }
.prod__card p { color: var(--muted); margin-top: 14px; font-size: 16px; }

/* ---------- Products ---------- */
.products__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.03em; margin-bottom: 56px; max-width: 900px; }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard {
  border-radius: 18px; overflow: hidden; position: relative;
  border: 1px solid var(--line); background: #fff;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -30px rgba(22,24,29,0.3); }
.pcard img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.pcard:hover img { transform: scale(1.06); }
.pcard__spin {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}
.pcard--spin:hover .pcard__spin { opacity: 1; }
.pcard h3 {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  font-family: "Archivo Black", sans-serif; font-size: clamp(15px, 1.4vw, 19px);
  background: linear-gradient(180deg, transparent, rgba(250,250,248,0.95) 45%);
  padding-top: 40px;
}

.collection__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(20px, 2.4vw, 30px); margin: clamp(50px, 7vw, 80px) 0 26px; }
.collection__river { display: flex; flex-direction: column; gap: 14px; }
.collection__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.collection__track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.collection__cell {
  flex: 0 0 auto; width: clamp(110px, 11vw, 150px); aspect-ratio: 2/3;
  border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--line);
}
.collection__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Career ---------- */
.career__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.03em; }
.career__lead { color: var(--muted); font-size: clamp(15px, 1.5vw, 19px); max-width: 640px; margin: 20px 0 44px; }
.career__form { max-width: 760px; display: flex; flex-direction: column; gap: 16px; }
.career__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.career__form input, .career__form select, .career__form textarea {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; font-family: "Archivo", sans-serif; font-size: 15px; color: var(--fg);
  transition: border-color 0.3s; outline: none; resize: vertical;
}
.career__form input:focus, .career__form select:focus, .career__form textarea:focus { border-color: var(--accent-2); }
.career__submit {
  align-self: flex-start; background: var(--fg); color: #fff; border: 0; cursor: pointer;
  font-family: "Archivo", sans-serif; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 15px 30px; border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.career__submit:hover { background: var(--accent); transform: translateY(-2px); }

/* ---------- Sustainability ---------- */
.sus { background: var(--bg-2); max-width: none; }
.sus > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.sus__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(30px, 4.6vw, 66px); letter-spacing: -0.03em; line-height: 1.02; max-width: 1000px; }
.sus__lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 20px); max-width: 720px; margin-top: 26px; margin-bottom: 60px; }
.sus__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sus__card { border: 1px solid var(--line); border-radius: 18px; padding: 30px; background: #fff; transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.sus__card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(22,24,29,0.2); }
.sus__card h3 { font-size: clamp(18px, 1.8vw, 22px); font-weight: 800; margin-bottom: 12px; }
.sus__card p { color: var(--muted); font-size: 15px; }

/* ---------- References ---------- */
.refs__heading { font-family: "Archivo Black", sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.03em; margin-bottom: 56px; max-width: 900px; }
.refs__river { display: flex; flex-direction: column; gap: 16px; }
.refs__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.refs__track { display: flex; gap: 16px; width: max-content; will-change: transform; }
.refs__cell {
  /* Most client logo PNGs carry a baked light-gray plate; match it so plate
     and transparent logos read uniformly. */
  flex: 0 0 auto; width: clamp(150px, 16vw, 220px); aspect-ratio: 16/9;
  background: #d6d5d2; border: 1px solid rgba(22,24,29,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.refs__cell:hover { transform: translateY(-5px); box-shadow: 0 18px 36px -24px rgba(22,24,29,0.3); }
.refs__cell img {
  width: 88%; height: 88%; object-fit: contain; display: block;
}

/* ---------- World (closing scene) ---------- */
.world { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.world__bg { position: absolute; inset: 0; }
.world__bg video, .world__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.world__bg img { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -2%); }
}
.world::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,250,248,0.75) 0%, rgba(250,250,248,0.25) 45%, rgba(250,250,248,0.8) 100%);
}
.world__inner { position: relative; z-index: 2; text-align: center; padding: 120px 24px; }
.world__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 8.5vw, 130px);
  line-height: 0.92; letter-spacing: -0.035em; text-transform: uppercase;
}
.world__title .line { display: block; overflow: hidden; }
.world__title .accent .reveal-word { color: var(--accent); }
.world__lead { max-width: 640px; margin: 26px auto 0; font-size: clamp(15px, 1.6vw, 19px); color: var(--fg); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { text-align: left; }
.contact__title { font-family: "Archivo Black", sans-serif; font-size: clamp(60px, 16vw, 220px); line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; overflow: hidden; }
.contact__title .accent { color: var(--accent); }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; border-top: 1px solid var(--line); padding-top: 50px; }
.contact__block { display: flex; flex-direction: column; gap: 10px; transition: transform 0.4s var(--ease); }
a.contact__block:hover { transform: translateX(8px); }
a.contact__block:hover .contact__v { color: var(--accent-2); }
.contact__k { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.contact__v { font-size: clamp(18px, 2vw, 26px); font-weight: 700; transition: color 0.3s; }
.contact__social { display: flex; gap: 26px; margin-top: 50px; }
.contact__social a { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 4px; border-bottom: 2px solid transparent; transition: border-color 0.3s, color 0.3s; }
.contact__social a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 60px clamp(20px, 4vw, 56px) 40px; overflow: hidden; background: var(--bg-2); }
.footer__big { font-family: "Archivo Black", sans-serif; font-size: clamp(50px, 16vw, 240px); line-height: 0.9; letter-spacing: -0.04em; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(22,24,29,0.18); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 40px; color: var(--muted); font-size: 13px; }

/* ---------- Ambient sound toggle ---------- */
.sound {
  position: fixed; bottom: 22px; left: 22px; z-index: 8000;
  display: flex; align-items: center; gap: 8px;
  background: rgba(250,250,248,0.85); backdrop-filter: blur(10px);
  border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 16px;
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.sound.on { color: var(--accent); border-color: var(--accent); }
.sound.on .sound__icon { animation: soundPulse 1.2s ease-in-out infinite; }
@keyframes soundPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .prod__card--wide { flex-direction: column; }
  .prod__card--wide .prod__media { flex: none; margin: -40px -34px 26px; border-radius: 20px 20px 0 0; }
  .prod__card--wide .prod__media video { height: auto; aspect-ratio: 16/10; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .stats, .prod__row, .sus__grid, .contact__grid { grid-template-columns: 1fr; }
  .cap__item { grid-template-columns: 50px 1fr; }
  .cap__item p { grid-column: 1 / -1; }
  .hero__scroll { display: none; }
  .nav__logo img { height: 32px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .career__row { grid-template-columns: 1fr; }
  .about__vm { grid-template-columns: 1fr; }
  .fabric__dots { right: 10px; }
}
@media (max-width: 620px) {
  .hero__meta { gap: 24px; }
  .products__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Map (click-to-activate) ---------- */
.map {
  position: relative; margin-top: 60px;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 21 / 8; min-height: 300px;
}
.map__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(240,130,31,0.08), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 38px, var(--line) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, var(--line) 38px 39px),
    var(--bg-2);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.map.loaded .map__placeholder { opacity: 0; visibility: hidden; }
.map__pin { width: 46px; height: 46px; color: var(--accent); animation: mapPin 2.4s ease-in-out infinite; }
.map__pin svg { width: 100%; height: 100%; fill: currentColor; }
@keyframes mapPin { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.map__addr { font-size: 14px; font-weight: 700; line-height: 1.6; letter-spacing: 0.02em; }
.map__load {
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; cursor: pointer;
  background: var(--fg); color: var(--bg); border: 0; border-radius: 100px; padding: 12px 26px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.map__load:hover { background: var(--accent); transform: translateY(-2px); }
.map__note { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(1.05); transition: filter 0.6s var(--ease); }
.map:hover iframe { filter: grayscale(0) contrast(1); }
.map__open {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  background: rgba(250,250,248,0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  transition: color 0.3s, border-color 0.3s;
}
.map__open:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Career consent ---------- */
.career__consent {
  display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap;
  font-size: 13px; line-height: 1.6; color: var(--muted); margin-top: -4px;
}
.career__consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); flex: none; cursor: pointer; }
.career__consent-link {
  background: none; border: 0; padding: 0; cursor: pointer; font: inherit;
  color: var(--fg); font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
}
.career__consent-link:hover { color: var(--accent); }

/* ---------- Footer legal links ---------- */
.footer__link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: inherit; opacity: 0.75;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity 0.3s, color 0.3s;
}
.footer__link:hover { opacity: 1; color: var(--accent); }

/* ---------- Cookie bar ---------- */
.cookie {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 9000;
  max-width: 760px; margin: 0 auto;
  display: none; align-items: center; gap: 26px; flex-wrap: wrap;
  background: rgba(250,250,248,0.96); backdrop-filter: blur(14px);
  border: 1.5px solid var(--line); border-radius: 6px; padding: 20px 24px;
  box-shadow: 0 18px 50px rgba(22,24,29,0.14);
  transform: translateY(24px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.cookie.show { display: flex; }
.cookie.in { transform: none; opacity: 1; }
.cookie__text { flex: 1 1 320px; }
.cookie__text strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.cookie__text p { font-size: 13px; line-height: 1.6; color: var(--muted); }
.cookie__actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
  background: var(--fg); color: var(--bg); border: 1.5px solid var(--fg);
  border-radius: 100px; padding: 11px 22px; white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cookie__btn:hover { background: var(--accent); border-color: var(--accent); }
.cookie__btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.cookie__btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.cookie__more {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700;
  color: var(--muted); text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s;
}
.cookie__more:hover { color: var(--accent); }

/* ---------- Legal modal ---------- */
.legal { position: fixed; inset: 0; z-index: 10001; display: none; }
.legal.open { display: block; }
.legal__backdrop {
  position: absolute; inset: 0; background: rgba(22,24,29,0.55);
  backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.4s var(--ease);
}
.legal.in .legal__backdrop { opacity: 1; }
.legal__panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%);
  width: min(860px, calc(100vw - 40px)); max-height: min(84vh, 900px);
  background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 30px 90px rgba(22,24,29,0.3);
  opacity: 0; transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  display: flex; flex-direction: column;
}
.legal.in .legal__panel { opacity: 1; transform: translate(-50%, -50%); }
.legal__close {
  position: absolute; top: 12px; right: 16px; z-index: 2;
  background: none; border: 0; cursor: pointer; font-size: 30px; line-height: 1;
  color: var(--muted); transition: color 0.3s, transform 0.3s var(--ease);
}
.legal__close:hover { color: var(--accent); transform: rotate(90deg); }
.legal__body { overflow-y: auto; padding: 46px clamp(24px, 5vw, 56px) clamp(30px, 5vw, 50px); }
.legal__body h2 {
  font-family: "Archivo Black", sans-serif; font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 8px;
}
.legal__body .legal__sub { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 30px; }
.legal__body h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  margin: 30px 0 10px; padding-top: 16px; border-top: 1px solid var(--line);
}
.legal__body h3:first-of-type { border-top: 0; padding-top: 0; }
.legal__body p, .legal__body li { font-size: 14.5px; line-height: 1.75; color: #3a3e45; }
.legal__body p + p { margin-top: 10px; }
.legal__body ul { margin: 10px 0 0 20px; display: flex; flex-direction: column; gap: 7px; }
.legal__body table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13.5px; }
.legal__body th, .legal__body td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal__body th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; }
.legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.legal__body .legal__foot { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); line-height: 1.8; }

@media (max-width: 720px) {
  .map { aspect-ratio: 4 / 3; }
  .cookie { left: 12px; right: 12px; bottom: 12px; padding: 18px; gap: 16px; }
  .cookie__actions { width: 100%; }
  .cookie__btn { flex: 1 1 auto; text-align: center; }
  .legal__body table, .legal__body thead, .legal__body tbody, .legal__body tr, .legal__body th, .legal__body td { display: block; }
  .legal__body thead { display: none; }
  .legal__body tr { border-bottom: 1px solid var(--line); padding: 8px 0; }
  .legal__body td { border: 0; padding: 3px 0; }
  .legal__body td:first-child { font-weight: 800; }
}

/* Keep the sound toggle clear of the cookie bar on narrow screens */
.sound { transition: color 0.3s, border-color 0.3s, transform 0.5s var(--ease), opacity 0.4s; }
@media (max-width: 860px) {
  body.cookie-open .sound { opacity: 0; pointer-events: none; transform: translateY(20px); }
}

/* ---------- Sustainability: solar feature ---------- */
.solar {
  position: relative; margin-top: 90px; border-radius: 4px; overflow: hidden;
  background: var(--bg-2);
}
.solar img {
  display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  transform: scale(1.04); transition: transform 1.6s var(--ease);
}
.solar:hover img { transform: scale(1); }
.solar__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(24px, 5vw, 60px);
  background: linear-gradient(to top, rgba(10,12,16,0.86) 0%, rgba(10,12,16,0.55) 45%, transparent 100%);
  color: #fff;
}
.solar__eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); font-weight: 800; }
.solar__title {
  font-family: "Archivo Black", sans-serif; font-size: clamp(30px, 5vw, 68px);
  line-height: 0.95; letter-spacing: -0.03em; text-transform: uppercase;
}
.solar__text { max-width: 60ch; font-size: clamp(14px, 1.3vw, 17px); line-height: 1.65; color: rgba(255,255,255,0.86); }

/* ---------- Sustainability: sub-headings ---------- */
.sus__subhead {
  font-family: "Archivo Black", sans-serif; font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.02; letter-spacing: -0.03em; text-transform: uppercase;
  margin-top: 100px;
}
.sus__sublead { max-width: 68ch; margin-top: 16px; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7; color: var(--muted); }

/* ---------- Certification cards ---------- */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.cert {
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--line); border-radius: 4px; padding: 30px 26px 28px;
  background: #fff; transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.cert:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 18px 40px rgba(22,24,29,0.09); }
.cert__mark { height: 108px; display: flex; align-items: center; justify-content: flex-start; }
.cert__mark img { max-height: 100%; max-width: 128px; object-fit: contain; }
.cert figcaption { display: flex; flex-direction: column; gap: 9px; }
.cert strong { font-size: 13px; text-transform: uppercase; letter-spacing: 0.13em; }
.cert span { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ---------- Audit logo strip ---------- */
.audits {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0;
}
/* Several of these marks ship baked onto a white plate, so each one sits on its
   own white chip — the plate disappears into the chip instead of floating. */
.audit {
  display: flex; align-items: center; justify-content: center;
  height: 124px; padding: 0 26px;
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.audit:hover { border-color: var(--accent); transform: translateY(-3px); }
.audit img {
  max-width: 196px; max-height: 72px; object-fit: contain;
  filter: grayscale(1); opacity: 0.68;
  transition: filter 0.4s, opacity 0.4s;
}
.audit:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 1000px) {
  .certs { grid-template-columns: repeat(2, 1fr); }
  .audits { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
}
@media (max-width: 560px) {
  .certs { grid-template-columns: 1fr; }
  .audits { grid-template-columns: repeat(2, 1fr); }
  .solar img { aspect-ratio: 4 / 3; }
}

/* ---------- Fabric library ---------- */
.fabrics__heading {
  font-family: "Archivo Black", sans-serif; font-size: clamp(38px, 6.4vw, 108px);
  line-height: 0.94; letter-spacing: -0.04em; text-transform: uppercase; margin-top: 34px;
}
.fabrics__lead { max-width: 60ch; margin-top: 22px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; color: var(--muted); }

.swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 58px; }
.swatch {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: #fff;
  transition: transform 0.55s var(--ease), border-color 0.4s, box-shadow 0.55s var(--ease);
}
.swatch:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 22px 46px rgba(22,24,29,0.11); }
.swatch__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-2); }
.swatch__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.01); transition: transform 1.1s var(--ease);
}
.swatch:hover .swatch__img img { transform: scale(1.09); }
.swatch__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.swatch__body h3 { display: flex; flex-direction: column; gap: 3px; }
.swatch__body h3 span { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.swatch__body h3 em {
  font-style: normal; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted);
}
.swatch__gsm {
  align-self: flex-start; font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent-2); border: 1px solid rgba(62,159,212,0.35); border-radius: 100px;
  padding: 5px 12px; background: rgba(62,159,212,0.07);
}
.swatch__use { font-size: 14px; line-height: 1.62; color: var(--muted); }
.fabrics__note {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  max-width: 76ch; font-size: 14px; line-height: 1.7; color: var(--muted);
}

@media (max-width: 1180px) { .swatches { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .swatches { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 460px)  { .swatches { grid-template-columns: 1fr; } }

/* Nine nav items need more room than eight did — tighten before the burger. */
@media (max-width: 1340px) {
  .nav__links { gap: 22px; }
  .nav__links a { font-size: 13px; }
}
@media (max-width: 1180px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 12.5px; }
  .nav__cta { font-size: 12px; padding: 9px 16px; }
}

/* ---------- Sustainability: intro paragraphs ---------- */
.sus__intro { max-width: 78ch; margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.sus__intro .sus__lead { margin-top: 0; }

/* ---------- The 13 concrete actions ---------- */
.actions {
  list-style: none; margin-top: 44px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.action {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; padding: 28px 26px;
  transition: background 0.4s;
}
.action:hover { background: var(--bg-2); }
.action__n {
  flex: none; font-family: "Archivo Black", sans-serif; font-size: 13px;
  letter-spacing: 0.02em; color: var(--accent); padding-top: 2px;
}
.action p { font-size: 14.5px; line-height: 1.66; color: #3a3e45; }

/* ---------- Certification intro: image + text ---------- */
.certintro {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(24px, 4vw, 56px);
  align-items: center; margin-top: 100px;
}
.certintro__media { border-radius: 4px; overflow: hidden; background: var(--bg-2); }
.certintro__media img {
  display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transform: scale(1.03); transition: transform 1.4s var(--ease);
}
.certintro:hover .certintro__media img { transform: scale(1); }
.certintro__text { display: flex; flex-direction: column; gap: 16px; }
.certintro__text .sus__subhead { margin-top: 0; }
.certintro__text .sus__sublead { margin-top: 0; }
.certintro + .certs { margin-top: 44px; }

@media (max-width: 1000px) {
  .actions { grid-template-columns: repeat(2, 1fr); }
  .certintro { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .actions { grid-template-columns: 1fr; }
  .action { padding: 22px 20px; }
}

/* 13 items never divide evenly — let the last one close the row. */
.action:last-child { grid-column: 1 / -1; }

/* The sixth row is a doorway into the Production section, not a copy of it. */
/* The row itself must stop being a grid, or the anchor lands in the 80px column. */
.cap__item--link { display: block; padding: 0; }
.cap__item--link > a {
  display: grid; grid-template-columns: 80px 320px 1fr; gap: 24px; align-items: baseline;
  padding: 34px 0; width: 100%;
}
.cap__item--link:hover > a { color: inherit; }
.cap__go {
  display: inline-block; margin-left: 6px; color: var(--accent); font-weight: 800;
  white-space: nowrap; transition: transform 0.4s var(--ease);
}
.cap__item--link:hover .cap__go { transform: translateY(3px); }
@media (max-width: 900px) {
  .cap__item--link > a { grid-template-columns: 50px 1fr; }
  .cap__item--link > a p { grid-column: 1 / -1; }
}
