/* ==========================================================================
   ADLER CLOTHING — Design System + Homepage Layout
   Tokens → Base → Layout primitives → Components → Sections → Responsive
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy: #0b1f3a;
  --navy-deep: #071527;
  --navy-soft: #122c4d;
  --bronze: #b97d3e;
  --bronze-light: #d9a566;
  --bronze-ink: #8a5a2b;          /* accessible bronze for small text on white */
  --white: #ffffff;
  --grey-bg: #f4f5f7;
  --grey-line: #e3e6ea;
  --body: #5a6472;

  --font-display: "Sora", "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --gutter: 24px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(11, 31, 58, .06);
  --shadow-md: 0 18px 40px -18px rgba(11, 31, 58, .28);
  --shadow-lg: 0 40px 80px -40px rgba(11, 31, 58, .45);

  --ease: cubic-bezier(.22, .68, .32, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 4.6rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
p  { margin: 0 0 1.1em; }
a  { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--bronze); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- 3. Layout primitives ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.section { padding: clamp(72px, 8.5vw, 130px) 0; position: relative; }
.section--grey { background: var(--grey-bg); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .78); }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: 26px; }

/* Section eyebrow: 01 ——— LABEL  (mirrors the company-profile PDF) */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.eyebrow__num {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--bronze-ink); letter-spacing: .06em;
}
.section--navy .eyebrow__num { color: var(--bronze-light); }
.eyebrow__rule {
  height: 2px; width: 56px; background: var(--bronze); border-radius: 2px;
  transform-origin: left; transform: scaleX(0); transition: transform .8s var(--ease) .15s;
}
.is-visible .eyebrow__rule { transform: scaleX(1); }
.eyebrow__label {
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--navy);
}
.section--navy .eyebrow__label { color: rgba(255, 255, 255, .72); }

.eyebrow--center { justify-content: center; }
.cta .eyebrow__num { color: var(--bronze-light); }
.cta .eyebrow__label { color: rgba(255, 255, 255, .72); }

.section-more { margin-top: clamp(34px, 4vw, 52px); text-align: center; }

.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.06rem; margin-bottom: 0; }
.section--navy .section-head p { color: rgba(255, 255, 255, .72); }

/* ---------- 4. Buttons + small components ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  letter-spacing: .02em; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--bronze); color: #fff; box-shadow: 0 14px 30px -14px rgba(185, 125, 62, .9); }
.btn--primary:hover { background: #a76d33; box-shadow: 0 20px 38px -14px rgba(185, 125, 62, .95); }
.btn--ghost { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--sm { padding: 11px 22px; font-size: .84rem; }

.link-arrow {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--bronze-ink); display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow::after {
  content: ""; width: 22px; height: 1.5px; background: currentColor;
  transition: width .3s var(--ease);
}
.link-arrow:hover::after { width: 34px; }
.section--navy .link-arrow { color: var(--bronze-light); }

.tag {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--grey-line); background: #fff;
  font-size: .82rem; font-weight: 500; color: var(--navy);
  transition: all .3s var(--ease);
}
.tag:hover { border-color: var(--bronze); color: var(--bronze-ink); transform: translateY(-2px); }
.section--navy .tag { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); color: #fff; }

/* ---------- 5. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-stuck {
  background: rgba(11, 31, 58, .96);
  backdrop-filter: blur(12px);
  height: 68px;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.logo { display: flex; align-items: center; gap: 12px; }
.header__inner .logo { margin-left: clamp(4px, 2vw, 34px); }
.logo img { width: 44px; height: 44px; object-fit: contain; }
.footer .logo img { width: 48px; height: 48px; }
.logo__text { line-height: 1; }
.logo__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .16em; color: #fff;
}
.logo__sub {
  display: block; font-size: .6rem; letter-spacing: .34em;
  color: var(--bronze-light); margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .85rem; font-weight: 500; color: rgba(255, 255, 255, .82);
  position: relative; padding: 6px 0; transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--bronze-light); transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 14px; }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: var(--r-sm);
}
.burger span {
  display: block; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 90px 32px 40px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff;
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav a span { color: var(--bronze-light); font-size: .8rem; margin-right: 14px; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--navy); color: #fff; overflow: hidden; padding-top: var(--header-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 45%;
  opacity: .92;
  transform: scale(1.12);
  animation: heroZoom 32s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.12) translate3d(0, 0, 0); }
  to   { transform: scale(1.2) translate3d(-2%, -1%, 0); }
}

/* Solid navy under the copy, opening up to near-clear photography on the
   right — that reveal is what fills the space the diagonal used to occupy. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(97deg,
      var(--navy) 0%, var(--navy) 27%,
      rgba(11, 31, 58, .96) 40%,
      rgba(11, 31, 58, .74) 56%,
      rgba(11, 31, 58, .42) 76%,
      rgba(11, 31, 58, .24) 100%),
    linear-gradient(to bottom,
      rgba(7, 21, 39, .78) 0%, rgba(7, 21, 39, .1) 20%,
      transparent 55%, rgba(7, 21, 39, .55) 100%),
    radial-gradient(1000px 680px at 6% 42%, rgba(185, 125, 62, .2), transparent 68%);
}
/* Fine film grain over the whole hero — kills gradient banding and reads as
   print texture rather than flat digital navy. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Hairline where the hero meets the stat strip */
.hero::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(185, 125, 62, .65) 30%, rgba(185, 125, 62, .65) 70%, transparent);
}
.hero__inner { position: relative; z-index: 3; padding: 60px 0 90px; }
.hero__content { max-width: 660px; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bronze-light); font-weight: 600;
}
.hero__kicker::before { content: ""; width: 40px; height: 1.5px; background: var(--bronze); }

.hero h1 { color: #fff; margin-bottom: 6px; }
.hero h1 .thin { display: block; font-weight: 300; letter-spacing: .22em; font-size: .32em; margin-top: 16px; color: rgba(255,255,255,.9); }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255, 255, 255, .82);
  max-width: 520px; margin: 26px 0 32px;
}
.hero__rule { width: 74px; height: 3px; background: var(--bronze); border-radius: 3px; margin: 26px 0 0; }

.hero__pillars {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-bottom: 40px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .9);
}
.hero__pillars li { display: flex; align-items: center; gap: 26px; }
.hero__pillars li:not(:last-child)::after { content: "•"; color: var(--bronze-light); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 34px; }
.hero__badge { display: flex; align-items: center; gap: 14px; max-width: 220px; }
.hero__badge svg { width: 34px; height: 34px; flex: none; stroke: var(--bronze-light); }
.hero__badge span {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: rgba(255, 255, 255, .82); line-height: 1.5;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 4; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .55);
}
.hero__scroll i { display: block; width: 1px; height: 46px; background: rgba(255, 255, 255, .3); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: var(--bronze-light);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ---------- 6b. Hero quote form ---------- */
.hero__form { position: relative; }

.quote-card {
  /* explicit colour so the card never inherits a dark section's white text */
  background: #fff; color: var(--body);
  border-radius: var(--r-lg); padding: 30px clamp(22px, 2.4vw, 32px) 26px;
  box-shadow: 0 50px 100px -38px rgba(4, 12, 24, .62), 0 0 0 1px rgba(11, 31, 58, .07);
  animation: cardIn .9s var(--ease) .25s both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(26px); } }
@media (prefers-reduced-motion: reduce) { .quote-card { animation: none; } }

.quote-card__head { margin-bottom: 22px; }
/* Label-only head: the surrounding section already carries the heading and copy */
.quote-card__head--compact { margin-bottom: 18px; }
.quote-card__head--compact .quote-card__eyebrow { margin-bottom: 0; }
.quote-card__eyebrow {
  display: block; font-family: var(--font-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--bronze-ink); margin-bottom: 10px;
}
.quote-card h2 { font-size: 1.42rem; margin-bottom: 8px; }
.quote-card__head p { font-size: .86rem; margin: 0; line-height: 1.6; }

.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  color: var(--navy); margin-bottom: 7px;
}
.field .req { color: #c0392b; }

.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .9rem; color: var(--navy);
  background: #f1f4f8; border: 1px solid #dfe4ea; border-radius: var(--r-sm);
  padding: 11px 14px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #9aa4b1; }

.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6472' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 15px;
}
.field select:invalid { color: #9aa4b1; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(185, 125, 62, .16);
}

.field__phone { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 8px; }
.field__phone select { padding-right: 26px; background-position: right 8px center; font-size: .85rem; }

.field__error {
  display: none; font-size: .76rem; color: #c0392b; margin-top: 6px;
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #e0a49c; background: #fdf6f5;
}
.field.has-error .field__error { display: block; }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.quote-card__submit { width: 100%; justify-content: center; margin-top: 6px; }
.quote-card__submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.quote-card__note {
  margin: 12px 0 0; text-align: center; font-size: .74rem; color: #8b95a3;
}

.form-status {
  margin: 12px 0 0; padding: 12px 14px; border-radius: var(--r-sm);
  font-size: .84rem; line-height: 1.55; display: none;
}
.form-status.is-success { display: block; background: #eef7f0; color: #1f6b3a; border: 1px solid #cbe6d4; }
.form-status.is-error   { display: block; background: #fdf3f2; color: #a63127; border: 1px solid #f0cfcb; }
.form-status a { text-decoration: underline; }
.form-status__reason { display: inline-block; margin-top: 6px; font-size: .78rem; opacity: .8; }

/* Success panel replacing the form body */
.quote-card.is-sent .field,
.quote-card.is-sent .quote-card__submit,
.quote-card.is-sent .quote-card__note { display: none; }

/* Stat strip under hero */
.stats { background: var(--navy-deep); color: #fff; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.stats__item { padding: 38px 26px; border-right: 1px solid rgba(255, 255, 255, .08); }
.stats__item:last-child { border-right: 0; }
.stats__num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: #fff; line-height: 1;
}
.stats__num em { font-style: normal; color: var(--bronze-light); }
.stats__label {
  margin-top: 10px; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* ---------- 7. About snapshot ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }

.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; }
.about__media .img-main { aspect-ratio: 4 / 5; }
.about__media .img-float {
  position: absolute; right: -10%; bottom: -8%; width: 54%; aspect-ratio: 1;
  border: 8px solid #fff; box-shadow: var(--shadow-lg);
}
.about__stamp {
  position: absolute; left: -26px; top: 34px; background: var(--navy); color: #fff;
  padding: 20px 24px; border-radius: var(--r-md); box-shadow: var(--shadow-md); max-width: 190px;
}
.about__stamp strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--bronze-light); }
.about__stamp span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.capabilities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--grey-line); margin-top: 34px; border-radius: var(--r-md); overflow: hidden; }
.cap {
  background: #fff; padding: 22px 20px; display: flex; align-items: center; gap: 14px;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.cap:hover { background: #fbfaf8; }
.cap svg { width: 26px; height: 26px; flex: none; stroke: var(--bronze); }
.cap span { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--navy); line-height: 1.35; }

/* ---------- 8. Products ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--grey-line);
  background: #fff; font-family: var(--font-body); font-size: .84rem; font-weight: 500;
  color: var(--navy); cursor: pointer; transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--bronze); }
.filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--grey-bg);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .35s var(--ease);
}
.product.is-hidden { display: none; }
.product__img { aspect-ratio: 4 / 3.4; overflow: hidden; background: #e8eaee; }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product:hover .product__img img { transform: scale(1.07); }
.product__body {
  position: absolute; inset: auto 0 0 0; padding: 22px 22px 20px;
  background: linear-gradient(to top, rgba(7, 21, 39, .93), rgba(7, 21, 39, .55) 55%, transparent);
  color: #fff; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.product__body h3 { color: #fff; margin: 0; font-size: 1.02rem; }
.product__body small { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 6px; }
.product__body i {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.product:hover .product__body i { background: var(--bronze); border-color: var(--bronze); }
.product__body i svg { width: 14px; height: 14px; stroke: #fff; }

/* Customization marquee */
.marquee { margin-top: 60px; overflow: hidden; border-block: 1px solid var(--grey-line); padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 54px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: .04em; color: var(--navy); display: flex; align-items: center; gap: 54px; white-space: nowrap;
}
.marquee__track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Process timeline ---------- */
.process { position: relative; }
.process__track { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(40px, 6vw, 90px); }
.process__line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.12); transform: translateX(-50%);
}
.process__line::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: var(--progress, 0%);
  background: linear-gradient(var(--bronze-light), var(--bronze)); transition: height .2s linear;
}
.step {
  display: flex; gap: 20px; padding: 20px 0; align-items: flex-start;
  opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.step.is-visible { opacity: 1; transform: none; }
/* nth-of-type skips the absolutely-positioned .process__line span:
   odd divs sit in the left column and align toward the centre spine. */
.step:nth-of-type(odd) { flex-direction: row-reverse; text-align: right; }
.step__num {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--bronze-light); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.step:hover .step__num { background: var(--bronze); color: #fff; border-color: var(--bronze); }
.step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.step p { font-size: .88rem; margin: 0; color: rgba(255,255,255,.62); }

.process__note {
  margin-top: 56px; padding: 30px 34px; border-left: 3px solid var(--bronze);
  background: rgba(255,255,255,.04); border-radius: 0 var(--r-md) var(--r-md) 0; max-width: 760px;
}
.process__note strong { display: block; font-family: var(--font-display); color: var(--bronze-light); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; }
.process__note p { margin: 0; color: rgba(255,255,255,.82); font-size: 1.02rem; }

/* ---------- 10. Fabrics ---------- */
.fabrics__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.table-wrap { overflow-x: auto; border-radius: var(--r-md); box-shadow: var(--shadow-sm); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 520px; }
thead th {
  background: var(--navy); color: #fff; text-align: left; padding: 16px 22px;
  font-family: var(--font-display); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
}
tbody td { padding: 16px 22px; border-bottom: 1px solid var(--grey-line); font-size: .92rem; }
tbody tr { transition: background-color .25s var(--ease); }
tbody tr:hover { background: #fbfaf8; }
tbody td:first-child { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
tbody td:nth-child(2) { color: var(--bronze-ink); font-weight: 600; white-space: nowrap; }
/* Two-column variant (no GSM column): column 2 is prose, not a figure */
.table--2col { min-width: 0; }
.table--2col tbody td:nth-child(2) { color: var(--body); font-weight: 400; white-space: normal; }

.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.swatch { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.swatch img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.swatch:hover img { transform: scale(1.1); }
/* Woven-texture placeholder tiles: two crossed hatches over a fabric tone.
   Swap for real swatch photography when it exists. */
.swatch--tex {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .07) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, .07) 0 2px, transparent 2px 5px),
    linear-gradient(155deg, var(--tone-a), var(--tone-b));
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.swatch--tex:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.swatch--ecru  { --tone-a: #ece7dd; --tone-b: #d5cec1; }
.swatch--slate { --tone-a: #5a6474; --tone-b: #3c4657; }
.swatch--navy  { --tone-a: #1c3557; --tone-b: #0d2038; }

.swatch span {
  position: absolute; inset: auto 0 0 0; padding: 22px 12px 10px; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; font-weight: 600;
  background: linear-gradient(to top, rgba(7,21,39,.85), transparent);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- 11. Why choose / feature grid ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-line); border: 1px solid var(--grey-line); border-radius: var(--r-md); overflow: hidden; }
.why-card {
  background: #fff; padding: 36px 30px; position: relative; overflow: hidden;
  transition: background-color .4s var(--ease);
}
.why-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--bronze);
  transition: width .45s var(--ease);
}
.why-card:hover::before { width: 100%; }
.why-card:hover { background: #fbfaf8; }
.why-card svg { width: 30px; height: 30px; stroke: var(--bronze); margin-bottom: 20px; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: .88rem; margin: 0; }

/* ---------- 12. Quality control ---------- */
.quality__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.q-card {
  background: #fff; border: 1px solid var(--grey-line); border-radius: var(--r-md);
  padding: 30px 28px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.q-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.q-card__stage {
  font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: rgba(11, 31, 58, .07); position: absolute; right: 22px; top: 18px;
}
.q-card h3 { font-size: 1rem; margin-bottom: 14px; padding-right: 46px; }
.q-card li {
  font-size: .87rem; padding-left: 20px; position: relative; margin-bottom: 6px;
}
.q-card li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px;
  border-radius: 50%; border: 1.5px solid var(--bronze);
}
.q-objective {
  grid-column: 1 / -1; background: var(--navy); color: #fff; border-radius: var(--r-md);
  padding: 34px 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.q-objective h3 { margin: 0; font-size: 1.05rem; color: var(--bronze-light); letter-spacing: .14em; text-transform: uppercase; }
.q-objective p { margin: 0; flex: 1 1 400px; color: rgba(255,255,255,.85); font-size: 1.05rem; }

/* ---------- 13. Private label workflow ---------- */
.workflow__title {
  margin-top: 64px; font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bronze-light);
}
.workflow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.workflow__node {
  flex: 1 1 150px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 18px 18px; position: relative;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.workflow__node:hover { background: rgba(185,125,62,.16); border-color: var(--bronze); transform: translateY(-4px); }
.workflow__node small { display: block; font-family: var(--font-display); font-size: .7rem; color: var(--bronze-light); letter-spacing: .18em; margin-bottom: 8px; }
.workflow__node span { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: #fff; line-height: 1.35; }

.pl__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.pl__services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; margin: 28px 0 34px; }
.pl__services li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.82); }
.pl__services li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); flex: none; }
.pl__media { position: relative; }
.pl__media img { border-radius: var(--r-lg); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }

/* ---------- 14. Markets ---------- */
.markets__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.map { width: 100%; height: auto; }
.map .arc { fill: none; stroke: var(--bronze); stroke-width: 1.4; stroke-dasharray: 6 8; opacity: .75; animation: dash 12s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -280; } }
.map .node { fill: var(--navy); }
.map .node-ring { fill: none; stroke: var(--bronze); stroke-width: 1.4; transform-origin: center; }
.map .hub { fill: var(--bronze); }
.map .pulse { fill: var(--bronze); opacity: .35; animation: pulse 2.6s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.6); opacity: 0; } }
.map text { font-family: var(--font-body); font-size: 12px; fill: var(--navy); font-weight: 600; }

.segments { display: grid; gap: 18px; }
.segment { border-top: 1px solid var(--grey-line); padding-top: 18px; }
.segment h3 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-ink); margin-bottom: 12px; }
.segment .chips { gap: 8px; }

/* ---------- 15. CTA band ---------- */
.cta {
  position: relative; overflow: hidden; background: var(--navy); color: #fff;
  padding: clamp(70px, 8vw, 110px) 0; text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 20% 20%, rgba(185,125,62,.28), transparent 65%),
              radial-gradient(600px 400px at 85% 80%, rgba(185,125,62,.18), transparent 65%);
}
.cta__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); }
.cta p { color: rgba(255,255,255,.75); font-size: 1.08rem; margin-bottom: 34px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 15b. Closing quote section ---------- */
.quote-section {
  position: relative; overflow: hidden; background: var(--navy);
  color: rgba(255, 255, 255, .78); padding: clamp(70px, 8vw, 112px) 0;
}
.quote-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 460px at 18% 25%, rgba(185, 125, 62, .26), transparent 66%),
              radial-gradient(620px 420px at 88% 82%, rgba(185, 125, 62, .16), transparent 66%);
}
.quote-section__grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 462px);
  gap: clamp(40px, 5vw, 84px); align-items: center;
}
/* Scoped to the intro column: the form card also contains an h2, and must keep
   its own dark-on-white styling rather than inheriting the navy-section colour. */
.quote-section__intro h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.95rem); }
.quote-section__intro > p { font-size: 1.06rem; color: rgba(255, 255, 255, .76); max-width: 480px; }

.quote-section__points { margin: 30px 0 26px; display: grid; gap: 12px; }
.quote-section__points li {
  display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: rgba(255, 255, 255, .84);
}
.quote-section__points li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  border: 1.5px solid var(--bronze); background: var(--bronze) no-repeat center / 10px
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l6 6L20 6'/%3E%3C/svg%3E");
}
.quote-section__alt { font-size: .9rem; color: rgba(255, 255, 255, .6); margin: 0; }
.quote-section__alt a { color: var(--bronze-light); text-decoration: underline; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 80px 0 0; font-size: .9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer h4 { font-family: var(--font-display); color: #fff; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { transition: color .25s var(--ease); }
.footer a:hover { color: var(--bronze-light); }
.footer li { margin-bottom: 10px; }
.footer__tag { color: var(--bronze-light); font-family: var(--font-display); font-size: .92rem; margin-top: 18px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem;
}
.footer__blurb { max-width: 320px; }
.placeholder { color: rgba(255,255,255,.35); font-style: italic; }
.placeholder-light { color: #96a0ad; font-style: italic; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.socials a:hover { background: var(--bronze); border-color: var(--bronze); }
.socials svg { width: 16px; height: 16px; stroke: #fff; }

/* Footer contact block: label stacked above value so long values
   (the email) can't overflow the narrow footer column. */
.footer__contact li { margin-bottom: 14px; line-height: 1.5; }
.footer__k {
  display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .38); margin-bottom: 2px;
}
.footer__contact a, .footer__contact li { overflow-wrap: anywhere; }

.contact-list a { color: var(--bronze-ink); }
.contact-list a:hover { text-decoration: underline; }
.contact-list .v { overflow-wrap: anywhere; }

/* Floating WhatsApp */
.whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37,211,102,.7);
  transition: transform .3s var(--ease);
}
.whatsapp:hover { transform: scale(1.08); }
.whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* ---------- 17. Inner pages ---------- */
.nav a.is-active { color: #fff; }
.nav a.is-active::after { width: 100%; }
.mobile-nav a.is-active { color: var(--bronze-light); }

.page-hero {
  position: relative; background: var(--navy); color: #fff; overflow: hidden;
  padding: calc(var(--header-h) + clamp(60px, 8vw, 104px)) 0 clamp(56px, 7vw, 96px);
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, var(--navy) 0%, rgba(11, 31, 58, .92) 48%, rgba(11, 31, 58, .62) 100%),
              radial-gradient(800px 500px at 15% 40%, rgba(185, 125, 62, .2), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, .78); font-size: 1.06rem; margin: 0; max-width: 620px; }

.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: .78rem; color: rgba(255, 255, 255, .55); }
.breadcrumb a { color: var(--bronze-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .6; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.split--flip .split__media { order: -1; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 5 / 4; object-fit: cover; }

.vmv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vmv__card {
  background: #fff; border: 1px solid var(--grey-line); border-radius: var(--r-md);
  padding: 34px 32px; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vmv__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vmv__card svg { width: 30px; height: 30px; stroke: var(--bronze); margin-bottom: 18px; }
.vmv__card h3 { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-ink); margin-bottom: 12px; }
.vmv__card p { margin: 0; font-size: 1rem; }

.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--grey-line); border: 1px solid var(--grey-line); border-radius: var(--r-md); overflow: hidden; }
.value-card { background: #fff; padding: 30px 24px; text-align: center; transition: background-color .35s var(--ease); }
.value-card:hover { background: #fbfaf8; }
.value-card svg { width: 28px; height: 28px; stroke: var(--bronze); margin: 0 auto 16px; }
.value-card h3 { font-size: .95rem; margin-bottom: 8px; }
.value-card p { font-size: .84rem; margin: 0; }

/* Category list (full products page) */
.cat-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-line); border: 1px solid var(--grey-line); border-radius: var(--r-md); overflow: hidden; }
.cat-list li {
  background: #fff; padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--navy);
  transition: background-color .3s var(--ease), padding-left .3s var(--ease);
}
.cat-list li:hover { background: #fbfaf8; padding-left: 30px; }
.cat-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--bronze); flex: none; }

/* Customisation option cards */
.custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.custom-card {
  background: #fff; border: 1px solid var(--grey-line); border-radius: var(--r-md); padding: 30px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.custom-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.custom-card svg { width: 30px; height: 30px; stroke: var(--bronze); margin-bottom: 18px; }
.custom-card h3 { font-size: 1rem; margin-bottom: 8px; }
.custom-card p { font-size: .88rem; margin: 0; }

/* Factory floor cards with imagery */
.floor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.floor-card { border-radius: var(--r-md); overflow: hidden; background: #fff; border: 1px solid var(--grey-line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.floor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.floor-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: #e8eaee; }
.floor-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.floor-card:hover .floor-card__img img { transform: scale(1.06); }
.floor-card__body { padding: 24px 26px 26px; }
.floor-card__body h3 { font-size: 1rem; margin-bottom: 8px; }
.floor-card__body p { font-size: .88rem; margin: 0; }

/* Client logo wall placeholder */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-wall div {
  aspect-ratio: 16 / 9; border: 1.5px dashed var(--grey-line); border-radius: var(--r-md);
  display: grid; place-items: center; text-align: center; padding: 14px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #a3abb6; background: #fff;
}

/* Contact page */
.contact__grid { display: grid; grid-template-columns: 1fr minmax(0, 480px); gap: clamp(36px, 5vw, 68px); align-items: start; }
.contact-list { display: grid; gap: 2px; background: var(--grey-line); border: 1px solid var(--grey-line); border-radius: var(--r-md); overflow: hidden; }
.contact-list div { background: #fff; padding: 18px 24px; display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap; }
.contact-list dt, .contact-list .k {
  font-family: var(--font-display); font-weight: 600; font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); min-width: 150px;
}
.contact-list .v { font-size: .95rem; }
.map-embed {
  margin-top: 30px; aspect-ratio: 16 / 9; border-radius: var(--r-md); border: 1.5px dashed var(--grey-line);
  background: var(--grey-bg); display: grid; place-items: center; text-align: center; padding: 24px;
  color: #8b95a3; font-size: .86rem;
}
.contact__grid .quote-card { box-shadow: var(--shadow-md), 0 0 0 1px rgba(11, 31, 58, .07); }

/* ---------- 18. Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(.96); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .step { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track, .map .arc, .map .pulse, .hero__media img, .hero__scroll i::after { animation: none !important; }
  .hero__media img { transform: scale(1.06); }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__cta .btn { display: none; }
  /* Narrower viewports: copy overlays the photo, so darken it uniformly */
  .hero__scrim {
    background:
      linear-gradient(to bottom, rgba(7, 21, 39, .9) 0%, rgba(11, 31, 58, .86) 45%, rgba(7, 21, 39, .92) 100%),
      radial-gradient(700px 500px at 15% 35%, rgba(185, 125, 62, .18), transparent 70%);
  }
  .quote-section__grid { grid-template-columns: 1fr; gap: 44px; }
  .quote-section__form { max-width: 560px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .quality__grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .cat-list, .custom-grid, .floor-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .about__grid, .fabrics__grid, .pl__grid, .markets__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .about__stamp { left: 0; }
  .about__media .img-float { right: 0; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .process__track { grid-template-columns: 1fr; padding-left: 6px; }
  .process__line { left: 26px; }
  .step, .step:nth-of-type(odd) { flex-direction: row; text-align: left; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .split, .vmv { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .products__grid, .why__grid, .quality__grid, .swatches { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(3, 1fr); }
  .capabilities, .pl__services { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 26px 0; }
  .quote-card { padding: 26px 20px 22px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .values, .cat-list, .custom-grid, .floor-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .contact-list dt, .contact-list .k { min-width: 0; }
  .field__phone { grid-template-columns: 88px minmax(0, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .q-objective { padding: 26px 24px; }
}

/* ---------- 20. Temporary overrides ---------- */
/* Client asked for the WhatsApp button to be hidden until a number is issued.
   Delete this rule to bring it back — the markup is untouched on every page. */
.whatsapp { display: none !important; }
