﻿:root {
  --bg: #f2f0eb;
  --paper: #f7f4ef;
  --ink: #131313;
  --muted: #666158;
  --line: rgba(19, 19, 19, 0.12);
  --panel: rgba(255, 255, 255, 0.8);
  --coal: #23211d;
  --graphite: #3f3a33;
  --amber: #dd8b32;
  --amber-soft: #f0b976;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(20, 18, 15, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(221, 139, 50, 0.08), transparent 22%),
    linear-gradient(180deg, #f5f2ec 0%, #ece7de 100%);
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.live-rail {
  background: linear-gradient(90deg, #11100e, #2a2723, #11100e);
  color: #f6f0e6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-rail__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 52px;
}

.live-rail__eyebrow,
.kicker,
.origin-card__tag,
.product-card__label {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.live-rail__eyebrow,
.kicker {
  color: var(--amber-soft);
}

.live-rail__stamp {
  color: rgba(255, 255, 255, 0.7);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: visible;
  backdrop-filter: blur(18px);
  background: rgba(245, 242, 236, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(25, 24, 22, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

/* â??â?? Logo brand â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??
   The logo "floats" â?? it overflows the navbar above and
   below, sitting in its own white elevated pill card.    */
.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.35rem;
  justify-self: start;
  width: fit-content;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 61px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand img {
  display: block;
  height: 61px;
  width: auto;
  max-width: 61px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand__text {
  display: grid;
  gap: 0.28rem;
  font-family: "Archivo", sans-serif;
  line-height: 0.9;
  align-items: start;
  transform: translate(-4%, 5%);
}

.brand__text strong {
  font-size: clamp(1.1rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #7fd62a 0%, #53b51d 42%, #2f7f14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 18px rgba(40, 111, 18, 0.16);
}

.brand__text span {
  display: inline-block;
  justify-self: center;
  padding-left: 0.24rem;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffb13b 0%, #ff8a1f 48%, #d85f07 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255, 245, 230, 0.22), 0 8px 16px rgba(216, 95, 7, 0.14);
}

/* â??â?? Footer brand block â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.brand--footer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  text-decoration: none;
}

.brand--footer::before {
  content: none;
}

.brand--footer img {
  height: 150px;
  width: auto;
  max-width: 360px;
  mix-blend-mode: normal;
  filter: none;
  background: none;
  border-radius: 0;
  padding: 0;
  transition: none;
}

.brand--footer:hover img {
  background: none;
}

.brand--footer::after {
  content: none;
}

.nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0.38rem;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.04);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.nav a {
  position: relative;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.nav a::after {
  content: none;
}

.nav a.nav--active,
.nav a:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(20, 18, 15, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.22rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--amber);
  color: #fffaf3;
}

.button--solid:hover {
  background: #c97518;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #f8f1e8;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(19, 19, 19, 0.04);
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 16px;
  padding: 0;
}

.nav-toggle span {
  width: 1.4rem;
  height: 2px;
  background: var(--coal);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero,
.page-hero {
  position: relative;
}

.hero {
  min-height: calc(86svh - 110px);
  display: grid;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.96);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.86) 0%, rgba(17, 16, 14, 0.72) 42%, rgba(17, 16, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.28), rgba(17, 16, 14, 0.5));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: center;
  padding: 4.4rem 0 3.3rem;
}

.hero__copy {
  max-width: 720px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo", sans-serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.8rem);
  color: #f8f1e8;
  max-width: 9ch;
}

h2 {
  font-size: clamp(1.95rem, 3.25vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.hero__lede {
  max-width: 52ch;
  margin: 1rem 0 0;
  color: rgba(248, 241, 232, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.page-hero__inner p,
.section-copy,
.focus-card p,
.metric-card p,
.media-story__body p,
.origin-card p,
.quote-strip__steps span,
.value-card p,
.product-card p,
.assurance-card p,
.timeline p,
.contact-panel p,
.contact-block p,
.form-note {
  font-size: 0.97rem;
  line-height: 1.75;
}

.section-copy {
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.72;
}

.section-intro .kicker,
.quote-form__head .kicker {
  margin-bottom: 0.7rem;
  letter-spacing: 0.16em;
}

.section-intro h2,
.quote-form__head h2 {
  max-width: 26ch;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
  line-height: 0.98;
}

.split-head .section-intro h2 {
  max-width: 16ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.signal-panel {
  align-self: center;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.9), rgba(247, 244, 239, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
}

.signal-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signal-panel__label {
  font-weight: 800;
  color: var(--muted);
}

.signal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #46b25f;
  box-shadow: 0 0 0 8px rgba(70, 178, 95, 0.16);
}

.signal-panel h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
}

.signal-panel > p {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.signal-list div {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.signal-list dt {
  color: var(--muted);
  font-size: 0.85rem;
}

.signal-list dd {
  margin: 0.35rem 0 0;
  font-weight: 800;
}

.section {
  padding: 4.2rem 0;
}

.section--dark {
  background: linear-gradient(180deg, #171513, #211d18);
  color: #f6efe6;
}

.section--slate {
  background: rgba(255, 255, 255, 0.45);
}

.section--contrast {
  background: linear-gradient(135deg, #1d1a16 0%, #2c261f 45%, #724719 100%);
  color: #fff9f1;
}

.metrics-grid,
.focus-grid,
.origin-grid,
.values-grid,
.assurance-grid {
  display: grid;
  gap: 1.25rem;
}

.metrics-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-card,
.focus-card,
.origin-card,
.value-card,
.assurance-card,
.product-card {
  border-radius: var(--radius);
  padding: 1.25rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card__value {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 2rem;
  align-items: end;
}

.section-copy,
.brand__text span,
.signal-panel__label,
.signal-panel > p,
.timeline p,
.contact-block span,
.form-note,
.form-success {
  color: var(--muted);
}

.focus-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.focus-card,
.value-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(19, 19, 19, 0.06);
}

/* â??â?? Accordion â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â??â?? */
.acc-shell {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(19,19,19,0.1);
}

.acc-item {
  border-bottom: 1px solid rgba(19,19,19,0.1);
  overflow: hidden;
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Archivo", sans-serif;
  transition: background 0.2s;
}

.acc-trigger:hover {
  background: rgba(19,19,19,0.02);
}

.acc-num {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber, #c96a00);
  font-family: "Archivo", sans-serif;
  min-width: 2rem;
}

.acc-q {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink, #131313);
  line-height: 1.3;
}

.acc-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(19,19,19,0.18);
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.35s;
}

/* plus sign */
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--ink, #131313);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.25s, background 0.25s;
}
.acc-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.acc-icon::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* open state */
.acc-trigger[aria-expanded="true"] .acc-icon {
  background: var(--amber, #c96a00);
  border-color: var(--amber, #c96a00);
}
.acc-trigger[aria-expanded="true"] .acc-icon::before,
.acc-trigger[aria-expanded="true"] .acc-icon::after {
  background: #fff;
}
.acc-trigger[aria-expanded="true"] .acc-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
  opacity: 0;
}

/* active row highlight */
.acc-item.is-open {
  background: rgba(201,106,0,0.03);
}

/* body collapse */
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4,0,0.2,1);
}
.acc-body > * { overflow: hidden; }

.acc-item.is-open .acc-body {
  grid-template-rows: 1fr;
}

.acc-body p {
  padding: 0 0 1.4rem 3.25rem;
  color: var(--muted, #5a5a50);
  line-height: 1.7;
  font-size: 0.95rem;
}

.acc-body strong {
  color: var(--ink, #131313);
}

.acc-cta {
  display: inline-block;
  margin: -0.4rem 0 1.4rem 3.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber, #c96a00);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.acc-cta:hover { opacity: 0.7; }

.kicker--dark,
.origin-card__tag,
.product-card__label,
.timeline article span {
  color: var(--amber);
}

.media-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.media-story--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.media-story--reverse .media-story__image {
  order: 2;
}

.media-story--reverse .media-story__body {
  order: 1;
}

.media-story__image img {
  min-height: 360px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.industry-stack,
.check-list,
.quote-strip__steps,
.product-meta {
  display: grid;
  gap: 1rem;
}

.industry-stack article,
.check-list li,
.contact-block,
.timeline article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.origin-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.customer-banner {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(221, 139, 50, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(19, 19, 19, 0.05);
}

.customer-banner::before,
.customer-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 1;
  pointer-events: none;
}

.customer-banner::before {
  left: 0;
  background: linear-gradient(90deg, rgba(242, 240, 235, 1), rgba(242, 240, 235, 0));
}

.customer-banner::after {
  right: 0;
  background: linear-gradient(270deg, rgba(242, 240, 235, 1), rgba(242, 240, 235, 0));
}

.customer-banner__track {
  display: flex;
  width: max-content;
  gap: 2.25rem;
  padding: 1.4rem 1.1rem;
  align-items: center;
  animation: customerScroll 30s linear infinite;
}

.customer-banner__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 72px;
  padding: 0 0.35rem;
  flex: 0 0 auto;
}

.customer-banner__logo {
  width: auto;
  max-width: 220px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.customer-banner__logo--ats {
  height: 50px;
}

.customer-banner__logo--nimir,
.customer-banner__logo--outfitters {
  height: 39px;
}

.customer-banner__logo--ffc,
.customer-banner__logo--mayfair,
.customer-banner__logo--lucky {
  height: 50px;
}

.customer-banner__logo--fauji-fresh,
.customer-banner__logo--qiangsheng {
  max-width: 240px;
  height: 58px;
}

@keyframes customerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.origin-card,
.product-card,
.contact-panel,
.quote-form {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.origin-card h3,
.product-card h2 {
  margin-bottom: 0.75rem;
}

.origin-card span:last-child,
.product-meta span,
.contact-block a {
  font-weight: 800;
}

.quote-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.quote-strip__steps span {
  display: block;
  padding: 0.8rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 1.8rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.88) contrast(0.95);
  transform: scale(1.03);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.82) 0%, rgba(17, 16, 14, 0.72) 48%, rgba(17, 16, 14, 0.44) 100%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.16), rgba(17, 16, 14, 0.54));
}

.page-hero--about::before {
  background-image: url("assets/images/loaded-coal-truck.jpg");
  background-position: center 42%;
}

.page-hero--products::before {
  background-image: url("assets/images/coal-particles-closeup.jpg");
  background-position: center center;
}

.page-hero--contact::before {
  background-image: url("assets/images/pakistan-coal-plant.jpg");
  background-position: center center;
}

.page-hero--about,
.page-hero--products,
.page-hero--contact,
.page-hero__inner {
  color: #f7f1e7;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero .kicker {
  margin-bottom: 0.75rem;
}

.page-hero__inner h1 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  max-width: 15ch;
}

.page-hero__inner p:last-child {
  max-width: 54ch;
  margin-top: 0.8rem;
  color: rgba(247, 241, 231, 0.82);
}

.timeline-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
}

.timeline article span {
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

.product-stack {
  display: grid;
  gap: 1.25rem;
}

.product-stage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.product-stage__nav {
  display: grid;
  gap: 0.8rem;
  position: sticky;
  top: 96px;
}

.product-tab {
  text-align: left;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  background: rgba(255, 255, 255, 0.64);
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.product-tab:hover,
.product-tab.is-active {
  transform: translateY(-1px);
  background: var(--coal);
  border-color: var(--coal);
  color: #f8f1e8;
}

.product-stage__panels {
  position: relative;
}

.product-panel {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.1rem;
  padding: 1rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: var(--shadow);
}

.product-panel.is-active {
  display: grid;
}

.product-panel__media {
  min-height: 460px;
  border-radius: 22px;
  overflow: hidden;
}

.product-panel__media img {
  height: 100%;
  object-fit: cover;
}

.product-panel__body {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 0.8rem 0.3rem;
}

.product-panel__eyebrow {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--amber);
}

.product-panel__body h2 {
  margin: 0;
}

.product-panel__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-panel__specs span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(35, 33, 29, 0.08);
  font-weight: 800;
}

.product-panel__note {
  padding: 1rem 1rem 0;
  border-top: 1px solid rgba(19, 19, 19, 0.1);
}

.product-panel__note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Archivo", sans-serif;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.product-visual-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: var(--shadow);
}

.product-visual-card img {
  height: 260px;
  object-fit: cover;
}

.product-visual-card__body {
  padding: 1.2rem;
}

.product-visual-card__body span {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--amber);
}

.product-visual-card__body h3 {
  margin-bottom: 0.65rem;
}

.product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.assurance-grid,
.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.assurance-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-panel,
.quote-form {
  border-radius: calc(var(--radius) + 4px);
  padding: 1.7rem;
}

.map-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: stretch;
}

.map-block__intro {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-block span {
  display: block;
  font-size: 0.84rem;
}

.contact-block a {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 1.15rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.4rem;
}

.chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
}

.chip.is-active {
  background: var(--coal);
  color: #f7f0e6;
  border-color: var(--coal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  border: 1px solid rgba(19, 19, 19, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(221, 139, 50, 0.14);
}

.quote-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  background: #141310;
  color: #f6efe6;
  padding-top: 3rem;
}

.footer__inner,
.footer__bottom {
  display: grid;
  gap: 1.5rem;
}

.footer__inner {
  grid-template-columns: 0.9fr 1.4fr;
  padding-bottom: 2rem;
  align-items: start;
}

.footer__nav-group,
.footer__meta-group {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 26px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
}

.footer__meta-group {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
}

.footer__inner .footer__brand-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  justify-self: end;
  padding: 1.4rem 1rem 1.4rem 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 1.4rem 1.4rem 1.4rem 1rem;
}

.footer__inner p,
.footer__inner a {
  color: rgba(246, 239, 230, 0.74);
}

.footer__inner h3 {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.footer__inner a {
  display: block;
  margin-bottom: 0.7rem;
}

.footer__bottom {
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 239, 230, 0.56);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__content,
  .split-head,
  .media-story,
  .timeline-layout,
  .contact-layout,
  .quote-strip,
  .product-stage,
  .product-panel,
  .map-block,
  .footer__inner,
  .metrics-grid,
  .focus-grid,
  .origin-grid,
  .product-gallery,
  .values-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .product-stage__nav {
    position: static;
  }

  .product-panel__media {
    min-height: 320px;
  }

  .customer-banner__item {
    min-width: 206px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 3.6rem 0 2.8rem;
  }

  .signal-panel {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .live-rail__inner,
  .footer__bottom,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header {
    top: 0;
  }

  .header__inner {
    flex-wrap: wrap;
  }

  .brand {
    gap: 0.3rem;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand img {
    height: 48px;
    width: auto;
    max-width: 48px;
    padding: 0;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__text span {
    font-size: 0.46rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header__cta {
    display: none;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0 1rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.86rem 1rem;
  }

  .footer__inner .footer__brand-col {
    align-items: center;
  }

  .footer__meta-group {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .brand--footer {
    align-items: flex-end;
  }

  .footer__contact-col {
    text-align: left;
  }

  .footer__inner .footer__brand-col,
  .footer__contact-col {
    padding: 1rem 1.05rem;
  }

  .footer__inner .footer__brand-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .brand--footer::before,
  .brand--footer::after {
    content: none;
  }

  .brand--footer img {
    height: 80px;
    max-width: 160px;
  }

  .hero__content {
    padding-top: 3rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .page-hero {
    padding: 2rem 0 1.4rem;
  }

  .page-hero__inner h1 {
    font-size: clamp(1.75rem, 8vw, 2.3rem);
    max-width: 13ch;
  }

  .contact-panel,
  .quote-form,
  .product-panel,
  .product-visual-card__body,
  .map-block__intro,
  .product-card,
  .metric-card,
  .focus-card,
  .origin-card,
  .value-card,
  .assurance-card {
    padding: 1.2rem;
  }

  .customer-banner::before,
  .customer-banner::after {
    width: 36px;
  }

  .customer-banner__track {
    gap: 1.4rem;
    padding: 0.8rem;
  }

  .customer-banner__item {
    min-width: 138px;
    height: 60px;
  }

  .customer-banner__logo {
    max-width: 150px;
    height: 38px;
  }

  .customer-banner__logo--ats {
    height: 40px;
  }

  .customer-banner__logo--nimir,
  .customer-banner__logo--outfitters {
    height: 32px;
  }

  .customer-banner__logo--ffc,
  .customer-banner__logo--mayfair,
  .customer-banner__logo--lucky {
    height: 38px;
  }

  .customer-banner__logo--fauji-fresh,
  .customer-banner__logo--qiangsheng {
    max-width: 156px;
    height: 40px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }
}


