: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 { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.6s var(--ease); }
.prod__card:hover .prod__media video { transform: scale(1.05); }
.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; }

/* ---------- Story modal ---------- */
.story {
  position: fixed; inset: 0; z-index: 9500; background: rgba(12, 13, 16, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.story.open { opacity: 1; visibility: visible; }
.story__video { width: min(1100px, 92vw); aspect-ratio: 16/9; border-radius: 14px; background: #000; object-fit: cover; }
.story__close {
  position: absolute; top: 18px; right: 26px; background: none; border: 0; cursor: pointer;
  font-size: 46px; line-height: 1; color: #fff; opacity: 0.8; transition: opacity 0.3s;
}
.story__close:hover { opacity: 1; }
.story__meta {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 18px; color: rgba(255,255,255,0.85);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
}

/* ---------- 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) {
  .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; }
}
