:root {
  color-scheme: light;
  --header-height: 88px;
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --mist: #f3f1ea;
  --navy: #0b2133;
  --navy-2: #123149;
  --green: #334d35;
  --gold: #b8945f;
  --ink: #0d1a2a;
  --muted: #5d6874;
  --line: rgba(13, 26, 42, 0.12);
  --soft: 0 18px 60px rgba(13, 26, 42, 0.1);
  --radius: 8px;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--navy);
  color: white;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: clamp(72px, 9vw, 124px) 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition: background 220ms ease, border 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled, .site-header.menu-open {
  border-bottom: 1px solid rgba(13, 26, 42, 0.08);
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 12px 36px rgba(13, 26, 42, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 40px));
  min-height: 88px;
  margin-inline: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4.2vw, 52px);
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 31px;
  color: var(--ink);
  font-size: clamp(1rem, 1.08vw, 1.06rem);
  font-weight: 600;
  letter-spacing: 0.018em;
}
.nav-menu > a, .nav-item > a, .nav-parent {
  position: relative;
  padding: 33px 0;
  transition: color 250ms ease;
}
.nav-parent {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}
.nav-menu > a::after, .nav-item > a::after, .nav-parent::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease, background 250ms ease;
}
.nav-menu > a:hover,
.nav-menu > a[aria-current="page"],
.nav-item:hover > a,
.nav-item:hover > .nav-parent,
.nav-item.is-open > .nav-parent,
.nav-parent[aria-expanded="true"] {
  color: var(--green);
}
.nav-menu > a:hover::after,
.nav-menu > a[aria-current="page"]::after,
.nav-item:hover > a::after,
.nav-item:hover > .nav-parent::after,
.nav-item.is-open > .nav-parent::after,
.nav-parent[aria-expanded="true"]::after {
  transform: scaleX(1);
}
.nav-item { position: relative; }
.mega-menu {
  position: absolute;
  top: 82px;
  left: 50%;
  width: 620px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}
.mega-menu.compact { width: 420px; }
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu, .nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-menu a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 6px;
}
.mega-menu a:hover { background: var(--mist); }
.mega-menu strong { color: var(--navy); }
.mega-menu span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button.primary {
  background: var(--green);
  color: white;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 33px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  transition: color 250ms ease;
}
.nav-cta:hover {
  color: var(--green);
}
.button.secondary {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}
.button:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(680px, 76vh, 780px);
  height: clamp(680px, 76vh, 780px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 0 86px;
}
.hero-home {
  min-height: 100vh;
  height: 100vh;
  align-items: center;
  padding: 0;
}
@supports (height: 100dvh) {
  .hero-home {
    min-height: 100dvh;
    height: 100dvh;
  }
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg {
  opacity: 0;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
  transition: opacity 1200ms ease;
}
.hero-bg.is-active {
  opacity: 1;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.97), rgba(251, 248, 241, 0.72) 42%, rgba(251, 248, 241, 0.12)),
    linear-gradient(180deg, rgba(251, 248, 241, 0.16), rgba(251, 248, 241, 0.08));
}
.hero-content {
  position: relative;
  max-width: 640px;
}
.hero-content[data-hero-carousel] {
  width: min(820px, calc(100% - 48px));
  max-width: 820px;
  height: 100%;
  min-height: 100%;
  overflow: visible;
}
.hero-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: min(820px, 100%);
  height: 100%;
  padding: clamp(118px, 14vh, 150px) 0 clamp(72px, 9vh, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1200ms ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
h1 {
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
}
.hero-slide h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.9vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-slide:nth-child(2) h1,
.hero-slide:nth-child(3) h1 {
  font-size: clamp(3.1rem, 5.9vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title-compact {
  max-width: 820px;
  font-size: clamp(3.1rem, 5.9vw, 5.5rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}
.hero-nowrap {
  color: var(--ink);
  white-space: nowrap;
}
.text-accent {
  color: var(--green);
}
.hero-slide-editorial {
  width: min(820px, 100%);
  justify-content: center;
}
.hero-slide-editorial h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.1rem, 5.9vw, 5.5rem) !important;
  line-height: 1.1 !important;
}
.hero-slide-editorial .hero-lead {
  max-width: 620px;
  color: #263546;
  font-size: 1.05rem;
  line-height: 1.62;
}
h1 span, h2 span { color: var(--green); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.8rem); }
h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}
.hero-lead {
  max-width: 620px;
  margin-bottom: 0;
  color: #263546;
  font-size: 1.05rem;
}
.hero-feature {
  position: absolute;
  right: max(36px, calc((100vw - 1180px) / 2));
  bottom: 80px;
  width: min(360px, calc(100% - 48px));
  padding: 28px 30px 30px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--soft);
  backdrop-filter: blur(16px);
}
.hero-feature h2 {
  font-family: var(--sans);
  font-size: 1.22rem;
  line-height: 1.35;
}
.hero-feature p { color: var(--muted); }
.hero-feature a, .text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}
.hero-feature a::after, .text-link::after {
  content: "→";
  transition: transform 180ms ease;
}
.hero-feature a:hover::after, .text-link:hover::after { transform: translateX(4px); }
.invert { color: white; }

.company-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 26, 42, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.92) 48%, rgba(255, 253, 248, 0.76)),
    radial-gradient(circle at 86% 20%, rgba(184, 148, 95, 0.12), transparent 30%),
    radial-gradient(circle at 78% 72%, rgba(51, 77, 53, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 248, 241, 0.94)),
    var(--paper);
  padding: clamp(92px, 10vw, 140px) 0;
}
.company-intro::before {
  position: absolute;
  inset: 0 0 0 45%;
  background:
    linear-gradient(90deg, var(--paper) 0%, rgba(255, 253, 248, 0.68) 24%, rgba(255, 253, 248, 0.18) 58%, var(--paper) 100%),
    radial-gradient(circle at 52% 50%, rgba(255, 253, 248, 0) 0 34%, rgba(255, 253, 248, 0.62) 72%, var(--paper) 100%),
    url("../images/who-sourcing-meeting-photo.png") center right / cover no-repeat;
  content: "";
  opacity: 0.34;
  filter: saturate(0.82) blur(1px);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.intro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.metrics-intro {
  max-width: 690px;
  padding-right: 0;
}
.metrics-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.98;
  color: var(--navy);
}
.metrics-intro p:not(.eyebrow) {
  max-width: 570px;
  color: #44515d;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.82;
}
.gold-rule {
  display: block;
  width: 92px;
  height: 2px;
  margin: 28px 0;
  background: var(--gold);
}
.intro-statement {
  overflow: hidden;
  border: 1px solid rgba(13, 26, 42, 0.09);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.78);
  box-shadow: 0 18px 50px rgba(13, 26, 42, 0.08);
}
.intro-statement img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.intro-statement div {
  padding: 24px;
}
.intro-statement span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.intro-statement p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.metrics-intro p, .service-card p, .areas-copy p, .project-card p, .network-copy p,
.trust-grid p, .process-head p, .process-line p, .insight-card h3, .contact-copy p,
.footer-grid p, .detail-copy p, .template-list p, .faq p, .spec-table td {
  color: var(--muted);
}
.line-icon, .service-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
}
.line-icon::before, .service-icon::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}
.cube-icon::after { content: ""; position: absolute; width: 14px; height: 14px; border: 2px solid currentColor; transform: rotate(45deg); }
.people-icon::after { content: ""; position: absolute; width: 22px; height: 10px; border: 2px solid currentColor; border-top: 0; border-radius: 0 0 14px 14px; bottom: 9px; }
.award-icon::after { content: ""; position: absolute; width: 14px; height: 18px; border: 2px solid currentColor; border-radius: 50%; }
.leaf-icon::after, .icon-leaf::before { content: ""; position: absolute; width: 18px; height: 28px; border: 2px solid currentColor; border-radius: 100% 0 100% 0; transform: rotate(36deg); }
.material-icon::after { content: ""; position: absolute; width: 24px; height: 7px; border: 2px solid currentColor; border-radius: 999px; transform: rotate(-25deg); }
.chat-icon::after { content: ""; position: absolute; width: 20px; height: 14px; border: 2px solid currentColor; border-radius: 5px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.section-head h2 { margin: 0; font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.12; }
.projects .section-head h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 2.55vw, 2.45rem);
  white-space: nowrap;
}
.business, .featured-areas, .insights { background: var(--ivory); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(13, 26, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: 2;
}
.service-card:hover, .project-card:hover, .insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft);
}
.service-card:hover::before { opacity: 1; }
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 480ms ease;
}
.service-card:hover img { transform: scale(1.045); }
.service-card .service-icon {
  position: absolute;
  left: 24px;
  top: 162px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: white;
}
.service-card div { padding: 40px 24px 26px; }
.service-card::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  content: "→";
  font-size: 1.5rem;
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(36px, 7vw, 90px);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.solution-card {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(13, 26, 42, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.solution-card::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 148, 95, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(184, 148, 95, 0.42) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(184, 148, 95, 0.42) 49% 51%, transparent 52%);
  content: "";
  opacity: 0.58;
}
.solution-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}
.solution-card:hover {
  border-color: rgba(184, 148, 95, 0.34);
  box-shadow: var(--soft);
  transform: translateY(-4px);
}
.solution-card:hover::before { opacity: 1; }
.solution-card span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}
.solution-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.22;
}
.solution-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.projects { background: var(--paper); }
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  overflow: hidden;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 14px 38px rgba(13, 26, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.project-card a {
  display: block;
  height: 100%;
}
.project-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}
.project-card div { padding: 24px; }
.project-card span, .insight-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.network-band {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 560px;
  height: clamp(560px, 76vh, 680px);
  max-height: 82vh;
  display: grid;
  align-items: center;
  padding: clamp(48px, 5vw, 70px) 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.98) 0 42%, rgba(7, 24, 39, 0.78) 58%, rgba(7, 24, 39, 0.94)),
    linear-gradient(135deg, #071827, var(--navy) 58%, #081522);
  color: white;
}
.network-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 44px;
  align-items: center;
  transform: none;
}
.network-copy {
  position: relative;
  z-index: 2;
}
.network-band h2, .network-band .eyebrow { color: white; }
.network-copy p { color: rgba(255, 255, 255, 0.72); }
.network-video-frame {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 42%;
  height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(184, 148, 95, 0.08)),
    url("../images/hero-global-supply.png") center / cover no-repeat,
    rgba(5, 19, 32, 0.42);
  box-shadow: none;
}
.network-video-frame video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.network-video-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.88), rgba(7, 24, 39, 0.34) 58%, rgba(7, 24, 39, 0.78)),
    radial-gradient(circle at 52% 46%, rgba(184, 148, 95, 0.18), transparent 44%);
  content: "";
  pointer-events: none;
}

.trust-strip {
  padding: clamp(76px, 8vw, 108px) 0 clamp(88px, 9vw, 122px);
  background: var(--ivory);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 16px;
}
.trust-title, .trust-grid article {
  padding: 26px 24px;
}
.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  align-content: end;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(13, 26, 42, 0.05);
}
.why-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  content: "";
}
.why-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}
.why-card h3 { margin: 0; }
.why-card p { margin: 0; }
.trust-title h2 {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.process {
  position: relative;
  z-index: 0;
  overflow: visible;
  transform: none;
  padding-top: clamp(112px, 11vw, 156px);
  background: linear-gradient(135deg, #1d2f22, #142216);
  color: white;
}
.process h2, .process h3, .process .eyebrow { color: white; }
.process-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.92fr);
  gap: 8px 42px;
  margin-bottom: 54px;
  align-items: start;
}
.process-head .eyebrow {
  grid-column: 1;
}
.process-head h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  color: white;
  line-height: 1.04;
}
.process-head p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 520px;
  padding-top: 32px;
}
.process-head p, .process-line p { color: rgba(255,255,255,.76); }
.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255,255,255,.16);
}
.process-line li {
  min-height: 210px;
  padding: 28px;
  background: rgba(255,255,255,.03);
}
.process-line span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}
.process-line strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.05rem;
}

.insights-head {
  display: flex;
  max-width: none;
}
.insights {
  position: relative;
  border-top: 1px solid rgba(184, 148, 95, 0.18);
  background:
    linear-gradient(180deg, rgba(243, 241, 234, 0.58), rgba(251, 248, 241, 0) 140px),
    var(--ivory);
}
.insights::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 148, 95, 0.42), transparent);
  content: "";
  transform: translateX(-50%);
}
.insights-head p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.insight-card {
  min-height: 100%;
  display: grid;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.insight-card a {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  height: 100%;
  align-content: start;
  color: inherit;
  padding: 0 22px 22px;
}
.insight-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.insight-card img,
.insight-media {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at 24% 20%, rgba(184, 148, 95, 0.1), transparent 30%),
    var(--mist);
}
.insight-media-wrap {
  width: calc(100% + 44px);
  height: 154px;
  margin: 0 -22px 22px;
  overflow: hidden;
  background: var(--mist);
}
.insight-placeholder {
  background:
    radial-gradient(circle at 24% 24%, rgba(184, 148, 95, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(11, 33, 51, 0.1), rgba(51, 77, 53, 0.14)),
    var(--mist);
}
.insight-card span { margin-top: 0; }
.insight-card h3 {
  min-height: 4.4em;
}
.insight-card time {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}
.insight-card em {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 220ms ease, color 220ms ease;
}
.insight-card:hover,
.resource-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft);
}
.insight-card:hover em {
  color: var(--gold);
  transform: translateX(4px);
}

.insight-page-hero .hero-overlay,
.resources-page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.78) 46%, rgba(251, 248, 241, 0.28)),
    linear-gradient(180deg, rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.18));
}
.insight-page-hero {
  min-height: calc(100vh - var(--header-height, 0px));
  height: calc(100vh - var(--header-height, 0px));
  display: grid;
  align-items: center;
  overflow: hidden;
}
.resources-page-hero {
  min-height: calc(100vh - var(--header-height, 0px));
  height: calc(100vh - var(--header-height, 0px));
  display: grid;
  align-items: center;
  overflow: hidden;
}
.insight-page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.resources-page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.page-hero.insight-page-hero .hero-content {
  max-width: 1180px;
  padding-top: clamp(120px, 15vh, 162px);
}
.page-hero.resources-page-hero .hero-content {
  max-width: 1180px;
  padding-top: clamp(120px, 15vh, 162px);
}
.insight-page-hero h1 {
  max-width: 760px;
}
.resources-page-hero h1 {
  max-width: 760px;
}
.insight-page-hero .hero-lead {
  max-width: 620px;
}
.resources-page-hero .hero-lead {
  max-width: 620px;
}
.insights-page-list {
  padding-top: clamp(120px, 12vw, 180px);
}
.resources-page-list {
  padding-top: clamp(120px, 12vw, 180px);
}
.projects-page-hero {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
@supports (height: 100dvh) {
  .projects-page-hero {
    min-height: 100dvh;
    height: 100dvh;
  }
}
.projects-page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.projects-page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.99) 0 33%, rgba(251, 248, 241, 0.82) 52%, rgba(251, 248, 241, 0.24)),
    linear-gradient(180deg, rgba(251, 248, 241, 0.18), rgba(251, 248, 241, 0.22));
}
.page-hero.projects-page-hero .hero-content {
  max-width: 1180px;
  padding-top: clamp(116px, 14vh, 154px);
}
.projects-page-hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.6vw, 5.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.projects-page-hero .hero-lead {
  max-width: 620px;
}
.insights-page-list,
.resources-page-list {
  background: var(--ivory);
}
.insight-grid-editorial {
  grid-template-columns: repeat(3, 1fr);
}
.insight-grid-editorial .insight-media-wrap {
  height: clamp(190px, 18vw, 260px);
}
.insight-grid-editorial .insight-card h3 {
  min-height: 3.2em;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.resources-band {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    linear-gradient(135deg, rgba(243, 241, 234, 0.96), rgba(251, 248, 241, 0.82)),
    radial-gradient(circle at 16% 12%, rgba(184, 148, 95, 0.15), transparent 28%);
}
.resources-layout {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 40px;
  align-items: start;
}
.resources-layout > .reveal:first-child .eyebrow {
  color: var(--green);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  letter-spacing: 0.04em;
}
.resource-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.resource-list a {
  position: relative;
  display: grid;
  min-height: 228px;
  grid-template-rows: 92px 1fr auto;
  align-content: stretch;
  gap: 12px;
  overflow: hidden;
  padding: 0 22px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(13, 26, 42, 0.05);
}
.resource-list a::before {
  display: block;
  margin: 0 -22px 6px;
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0.74;
}
.resource-list a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.18), transparent 34%);
  content: "";
  pointer-events: none;
}
.resource-profile::before { background-image: linear-gradient(rgba(251, 248, 241, 0.1), rgba(251, 248, 241, 0.04)), url("../images/resource-company-premium-photo.png"); }
.resource-catalog::before { background-image: linear-gradient(rgba(251, 248, 241, 0.1), rgba(251, 248, 241, 0.04)), url("../images/resource-catalog-premium-photo.png"); }
.resource-certificates::before { background-image: linear-gradient(rgba(251, 248, 241, 0.1), rgba(251, 248, 241, 0.04)), url("../images/resource-certificates-premium-photo.png"); }
.resource-list span {
  align-self: start;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
}
.resource-list strong {
  align-self: center;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.18;
}
.resource-list em {
  align-self: end;
  color: var(--green);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.resource-detail-grid {
  display: grid;
  gap: 22px;
}
.resource-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(13, 26, 42, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.resource-detail-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: 0.72;
}
.resource-detail-image {
  min-height: 260px;
  background-position: center;
  background-size: cover;
}
.resource-detail-card.resource-profile .resource-detail-image {
  background-image: linear-gradient(rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.08)), url("../images/resource-company-documents-photo.png");
}
.resource-detail-card.resource-catalog .resource-detail-image {
  background-image: linear-gradient(rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.08)), url("../images/resource-product-catalog-photo.png");
}
.resource-detail-card.resource-certificates .resource-detail-image {
  background-image: linear-gradient(rgba(251, 248, 241, 0.08), rgba(251, 248, 241, 0.08)), url("../images/resource-certification-documents-photo.png");
}
.resource-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(30px, 5vw, 64px);
}
.resource-detail-copy span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
}
.resource-detail-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}
.resource-detail-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
}
.resource-detail-copy .text-link {
  justify-self: start;
  margin-top: 8px;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.contact-image {
  height: 210px;
  background:
    linear-gradient(90deg, rgba(251,248,241,.95), rgba(251,248,241,.48)),
    url("../images/hero-global-supply.png") center 58% / cover;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 68px 0;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 26, 42, 0.14);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
}
.contact-form textarea { resize: vertical; }
.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}
.form-status[data-state="success"] {
  color: var(--green);
}
.form-status[data-state="error"] {
  color: #9f3a2f;
}
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}
.full { grid-column: 1 / -1; }

.site-footer {
  padding: 64px 0 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 148, 95, 0.12), transparent 28%),
    linear-gradient(135deg, #102218, #071827 58%, #0b2133);
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.78fr 1.1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand {
  color: white;
  margin-bottom: 18px;
}
.footer-brand .brand-logo {
  height: 48px;
}
.footer-about p {
  max-width: 310px;
  color: rgba(255,255,255,.72);
}
.footer-grid h2 {
  margin: 0 0 22px;
  color: #f5efe5;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer-grid nav,
.footer-grid address {
  display: grid;
  align-content: start;
  gap: 17px;
}
.footer-grid address {
  font-style: normal;
}
.footer-grid a:not(.footer-brand),
.footer-grid address span,
.footer-bottom a {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: rgba(255,255,255,.68);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.7;
  opacity: 0.9;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.footer-grid a:not(.footer-brand)::after,
.footer-grid address span::after,
.footer-bottom a::after {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #c8a25a;
  content: "";
  transition: width 0.25s ease;
}
.footer-grid a:not(.footer-brand):hover,
.footer-grid address span:hover,
.footer-bottom a:hover {
  color: #d6b36a;
  opacity: 1;
  transform: translateX(3px);
}
.footer-grid a:not(.footer-brand):hover::after,
.footer-grid address span:hover::after,
.footer-bottom a:hover::after {
  width: 100%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255,255,255,.58);
  font-size: 0.76rem;
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}

/* Detail templates */
.page-hero { min-height: 560px; }
.page-hero .hero-content { max-width: 560px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}
.detail-section {
  padding: clamp(70px, 8vw, 116px) 0;
  background: var(--ivory);
}
.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}
.detail-grid img, .detail-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--soft);
}
.template-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.template-list article, .faq article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.catalog-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}
.spec-table th, .spec-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0 43%, rgba(251, 248, 241, 0.7) 58%, rgba(251, 248, 241, 0.16)),
    linear-gradient(180deg, rgba(251, 248, 241, 0.12), rgba(251, 248, 241, 0.02));
}
.about-hero,
.about-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-page-hero {
  min-height: 100vh;
  height: 100vh;
  display: grid;
  align-items: center;
}
.about-page-hero .hero-media,
.about-page-hero .hero-overlay {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.about-page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
}
.about-page-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-top: clamp(150px, 18vh, 190px);
}
.about-page-hero h1 {
  max-width: 600px;
  font-size: clamp(2.7rem, 5.4vw, 5.25rem);
  line-height: 0.98;
}
.about-page-hero .hero-lead {
  max-width: 540px;
}
.about-page-hero .button {
  margin-top: clamp(28px, 3vw, 40px);
}
.about-intro {
  position: relative;
  z-index: 1;
  padding: clamp(104px, 10vw, 150px) 0 clamp(82px, 8vw, 116px);
  border-top: 1px solid rgba(13, 26, 42, 0.08);
  background: var(--ivory);
  background-image: none;
}
.about-story {
  padding-top: clamp(104px, 10vw, 150px);
  background: var(--ivory);
}
.about-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  background-image: none;
  box-shadow: 0 18px 54px rgba(13, 26, 42, 0.06);
}
.about-story-grid::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  content: "";
}
.about-statement {
  max-width: 960px;
}
.about-story .about-statement {
  display: grid;
  gap: 18px;
}
.about-story .eyebrow {
  color: var(--green);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.about-story .about-statement h2 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  line-height: 1;
}
.about-statement p {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.36;
}
.about-story .about-statement p:not(.eyebrow) {
  margin: 0;
}
.about-story .about-copy {
  margin-top: 28px;
}
.about-copy {
  max-width: 760px;
  margin-bottom: 0;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.about-card {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 22px;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(13, 26, 42, 0.05);
}
.about-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold);
  content: "";
}
.about-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}
.about-card p,
.about-steps p {
  color: var(--muted);
}
.about-business,
.about-values,
.about-do {
  background: var(--ivory);
}
.about-do {
  padding-top: clamp(68px, 7vw, 94px);
  padding-bottom: clamp(78px, 7vw, 104px);
  background: var(--paper);
}
.about-do .section-head h2 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.1;
}
.about-do-grid .about-card h3 {
  font-size: 1.04rem;
}
.about-do-grid .about-card p {
  font-size: 0.92rem;
  line-height: 1.58;
}
.about-philosophy {
  padding: clamp(78px, 7vw, 112px) 0;
  background: var(--ivory);
}
.philosophy-head {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(28px, 3.6vw, 44px);
}
.philosophy-head .eyebrow {
  padding-top: 12px;
  color: var(--green);
  letter-spacing: 0.12em;
}
.philosophy-head h2 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 5vw, 5.8rem);
  line-height: 0.98;
}
.philosophy-grid {
  counter-reset: philosophy;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.philosophy-card {
  position: relative;
  min-height: 248px;
  padding: clamp(30px, 3.2vw, 42px);
  border: 1px solid rgba(13, 26, 42, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 248, 241, 0.9));
  box-shadow: 0 18px 46px rgba(13, 26, 42, 0.07);
  overflow: hidden;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}
.philosophy-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 148, 95, 0.14));
  content: "";
}
.philosophy-card::after {
  counter-increment: philosophy;
  content: counter(philosophy, decimal-leading-zero);
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
}
.philosophy-card:hover {
  border-color: rgba(184, 148, 95, 0.32);
  box-shadow: 0 24px 58px rgba(13, 26, 42, 0.1);
  transform: translateY(-4px);
}
.philosophy-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.22rem, 1.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.14;
}
.philosophy-card p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.7;
}
.about-approach {
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 148, 95, 0.12), transparent 28%),
    linear-gradient(135deg, #1d2f22, #142216);
  color: white;
}
.about-approach h2,
.about-approach .eyebrow {
  color: white;
}
.about-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}
.about-split h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
}
.about-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}
.about-steps li {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
}
.about-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}
.about-steps strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.1rem;
}
.about-trust {
  padding: clamp(74px, 7vw, 100px) 0;
  background: linear-gradient(180deg, var(--ivory), rgba(243, 241, 234, 0.72));
}
.about-trust .trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-trust .trust-title {
  grid-column: 1 / -1;
  max-width: 620px;
  padding: 0 0 14px;
}
.about-trust .trust-title h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}
.about-trust .why-card {
  min-height: 170px;
  align-content: start;
  padding: 24px 24px 24px 28px;
}
.about-trust .why-card span {
  font-size: 1.7rem;
}
.about-trust .why-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}
.about-process {
  padding: clamp(76px, 7vw, 106px) 0;
}
.about-process .process-head {
  grid-template-columns: 0.62fr 1fr;
  gap: 18px 46px;
  margin-bottom: 36px;
  align-items: center;
}
.about-process .process-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}
.about-process .process-head p:last-child {
  padding-top: 0;
  max-width: 620px;
}
.about-process .process-line li {
  min-height: 158px;
  padding: 22px 20px;
}
.about-process .process-line span {
  margin-bottom: 14px;
  font-size: 1.95rem;
}
.about-process .process-line strong {
  font-size: 0.98rem;
}
.about-process .process-line p {
  font-size: 0.88rem;
  line-height: 1.52;
}
.about-final-cta {
  padding: clamp(112px, 12vw, 170px) 0;
  background: var(--ivory);
}
.about-final-cta .contact-layout {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 0;
  text-align: center;
}
.about-final-cta .contact-copy h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
  line-height: 0.98;
}
.about-final-cta .contact-copy {
  max-width: 780px;
  margin-inline: auto;
}
.about-final-cta .contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.about-final-cta .contact-copy .button {
  margin-top: clamp(30px, 4vw, 44px);
}

/* Premium business landing pages */
.business-landing {
  background: var(--ivory);
}
.business-landing main {
  padding-top: var(--header-height);
}
.business-detail-hero {
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.lifestyle-hero {
  background-image: url("../images/kculture-gifts.png");
  background-position: center right;
}
.industrial-hero {
  background-image: url("../images/industrial-materials.png");
  background-position: center right;
}
.climate-hero {
  background-image: url("../images/division-climate.png");
  background-position: center right;
}
.consulting-hero {
  background-image: url("../images/who-sourcing-meeting-photo.png");
  background-position: center right;
}
.business-detail-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 239, 0.96) 0%,
    rgba(250, 247, 239, 0.82) 36%,
    rgba(250, 247, 239, 0.42) 66%,
    rgba(250, 247, 239, 0.18) 100%
  );
  pointer-events: none;
}
.business-detail-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 88vw);
  margin-left: clamp(64px, 9vw, 160px);
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(48px, 6vh, 80px);
}
.business-detail-hero__content h1 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(56px, 6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.business-detail-hero__content p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}
.division-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(112px, 12vh, 148px) 0 clamp(64px, 8vh, 96px);
  background: var(--ivory);
  isolation: isolate;
}
.division-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}
.division-hero-copy {
  max-width: min(760px, 100%);
}
.division-hero .division-hero-copy.reveal,
.division-hero .division-hero-copy.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.division-hero-copy h1 {
  margin-bottom: 22px;
  color: var(--navy);
  max-width: 680px;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.95;
}
.division-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}
.division-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  max-height: none;
  margin: 0;
  overflow: hidden;
}
.division-hero-image.reveal {
  opacity: 1;
  transform: none;
}
.division-hero-image img,
.division-wide-image img,
.division-category-card img,
.gallery-masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.division-hero-image img {
  min-height: inherit;
}
.division-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0 36%, rgba(251, 248, 241, 0.78) 56%, rgba(251, 248, 241, 0.2)),
    linear-gradient(180deg, rgba(251, 248, 241, 0.12), rgba(251, 248, 241, 0.2));
  content: "";
  pointer-events: none;
}
.division-hero-industrial .division-hero-image img,
.division-hero-climate .division-hero-image img,
.division-hero-consulting .division-hero-image img {
  object-position: center right;
}
.division-overview,
.division-offer,
.division-categories,
.division-timeline,
.division-trust,
.division-gallery,
.division-faq {
  padding: clamp(84px, 10vw, 150px) 0;
}
.division-overview,
.division-categories,
.division-gallery {
  background: var(--ivory);
}
.division-categories .section-head h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}
.division-offer,
.division-trust,
.division-faq {
  background: var(--paper);
}
.division-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.division-split h2,
.division-center h2,
.division-cta h2 {
  color: var(--navy);
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: 0.98;
}
.division-split h2 {
  max-width: 620px;
}
.division-overview-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}
.division-wide-image {
  height: clamp(360px, 44vw, 620px);
  margin-top: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.division-center {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
}
.division-feature-grid,
.division-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
}
.division-feature,
.division-trust-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px 28px;
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(13, 26, 42, 0.05);
}
.division-feature span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.division-feature h3 {
  line-height: 1.18;
}
.division-feature p,
.division-trust-grid p,
.division-category-card p,
.faq-accordion p {
  color: var(--muted);
  line-height: 1.62;
}
.division-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.division-category-card {
  height: 100%;
  min-height: 460px;
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid rgba(13, 26, 42, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(13, 26, 42, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease;
}
.division-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--soft);
}
.division-category-card div {
  padding: 28px;
}
.division-category-card img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  object-fit: cover;
  display: block;
}
.division-category-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 900;
}
.division-timeline {
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 148, 95, 0.14), transparent 28%),
    linear-gradient(135deg, #1d2f22, #142216);
  color: white;
}
.division-timeline h2,
.division-timeline .eyebrow {
  color: white;
}
.division-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}
.division-steps li {
  position: relative;
  min-height: 170px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.035);
}
.division-steps li + li::before {
  position: absolute;
  left: -18px;
  top: 50%;
  color: var(--gold);
  content: "↓";
  transform: translateY(-50%) rotate(-90deg);
}
.division-steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.3rem;
}
.division-steps strong {
  color: white;
  line-height: 1.2;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 210px;
  gap: 14px;
}
.gallery-masonry img {
  min-height: 0;
  border-radius: var(--radius);
}
.gallery-masonry img:first-child {
  grid-row: span 2;
}
.gallery-masonry img:nth-child(3) {
  grid-row: span 2;
}
.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-accordion details {
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px 20px;
}
.faq-accordion summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}
.faq-accordion p {
  margin: 14px 0 0;
}
.division-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--ivory);
}
.division-cta-inner {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(20, 34, 22, 0.96), rgba(20, 34, 22, 0.78)),
    url("../images/who-sourcing-meeting-photo.png") center / cover no-repeat;
  color: white;
}
.division-cta h2 {
  margin: 0 0 16px;
  color: white;
}
.division-cta-copy {
  max-width: 760px;
}
.division-cta-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.75;
}
.about-editorial h2,
.about-values h2,
.insight-detail h1,
.admin-head h1 {
  font-family: var(--serif);
}
.insight-detail {
  max-width: 860px;
}
.insight-detail h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.insight-detail time {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
}
.insight-detail img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft);
  margin-bottom: 28px;
}
.insight-detail .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.28;
}
.article-body {
  margin: 28px 0;
}
.article-body p {
  color: var(--muted);
}
.admin-page {
  min-height: 100vh;
  padding: 56px 0;
  background: var(--ivory);
}
.admin-shell {
  display: grid;
  gap: 28px;
}
.admin-head {
  max-width: 760px;
}
.admin-head h1 {
  margin-bottom: 12px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}
.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft);
}
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}
.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 26, 42, 0.14);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 12px 13px;
}
.admin-form textarea,
.admin-form .check-row {
  grid-column: 1 / -1;
}
.check-row {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}
.check-row input {
  width: auto;
}
.admin-list {
  display: grid;
  gap: 10px;
}
.admin-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.admin-item span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}
.admin-item button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  cursor: pointer;
  padding: 0 12px;
  font-weight: 800;
}

.catalog-section {
  background: var(--paper);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-toolbar h2,
.range-intro h2,
.catalog-summary h2 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.catalog-search {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.catalog-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 13px 14px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.catalog-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 850;
}

.catalog-tab.active,
.catalog-tab:hover {
  background: var(--green);
  color: white;
}

.catalog-summary,
.range-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.catalog-group + .catalog-group {
  margin-top: 52px;
}

.range-accordion {
  display: grid;
  gap: 16px;
}

.range-area {
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: var(--radius);
  background: var(--ivory);
  overflow: hidden;
}

.range-area > header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.range-area header p {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-area header h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 1.9rem);
}

.range-area header strong {
  align-self: start;
  border-radius: 999px;
  background: rgba(51, 77, 53, 0.1);
  color: var(--green);
  padding: 8px 12px;
  font-size: 0.72rem;
  white-space: nowrap;
}

.range-note {
  margin: 18px 24px 0;
  border-left: 3px solid var(--gold);
  background: rgba(184, 148, 95, 0.1);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 0.88rem;
}

.range-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}

.range-category {
  border: 1px solid rgba(13, 26, 42, 0.1);
  border-radius: 6px;
  background: var(--paper);
}

.range-category summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  padding: 15px 16px;
  color: var(--ink);
  font-weight: 850;
}

.range-category summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.range-category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0 16px 16px;
  list-style: none;
}

.range-category li {
  border-radius: 999px;
  background: var(--mist);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.network-band .reveal,
.hero .reveal,
.company-intro .reveal,
.projects .section-head.reveal,
.trust-strip .reveal,
.insights .reveal,
.resources-band .reveal,
.process .reveal {
  transform: none;
  transition: opacity 700ms ease;
}
.network-band .reveal.is-visible,
.hero .reveal.is-visible,
.company-intro .reveal.is-visible,
.projects .section-head.reveal.is-visible,
.trust-strip .reveal.is-visible,
.insights .reveal.is-visible,
.resources-band .reveal.is-visible,
.process .reveal.is-visible {
  transform: none;
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-slide {
    animation: none !important;
  }
  .hero-slide:not(.is-active) {
    display: none;
  }
}

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(13, 26, 42, 0.1);
    border-radius: var(--radius);
    background: rgba(251, 248, 241, 0.98);
    box-shadow: var(--soft);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > a, .nav-item > a, .nav-parent { padding: 13px 0; }
  .nav-menu > a::after, .nav-item > a::after, .nav-parent::after { display: none; }
  .nav-parent {
    width: 100%;
    text-align: left;
  }
  .mega-menu {
    position: static;
    width: auto;
    display: none;
    grid-template-columns: 1fr;
    margin: 4px 0 12px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.5);
  }
  .nav-item:not(.nav-item-business):hover .mega-menu,
  .nav-item:not(.nav-item-business):focus-within .mega-menu,
  .nav-item.is-open .mega-menu {
    display: grid;
    transform: none;
  }
  .hero-home { align-items: center; }
  .trust-grid, .process-line, .insight-grid, .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-title { grid-column: 1 / -1; padding-right: 0; }
  .division-hero-grid,
  .division-split {
    grid-template-columns: 1fr;
  }
  .division-hero {
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    padding: clamp(118px, 14vh, 150px) 0 clamp(64px, 8vh, 92px);
  }
  .division-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(3.35rem, 9vw, 6rem);
  }
  .division-hero-image {
    min-height: 100%;
    max-height: none;
  }
  .division-feature-grid,
  .division-trust-grid,
  .division-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .division-steps li + li::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .business-detail-hero {
    min-height: calc(100vh - var(--header-height));
    align-items: center;
    background-position: center center;
  }
  .business-detail-hero__content {
    width: auto;
    margin-left: 28px;
    margin-right: 28px;
  }
  .business-detail-hero__content h1 {
    font-size: clamp(46px, 13vw, 72px);
    line-height: 0.98;
  }
}

@media (max-width: 820px) {
  .section-head, .areas-layout, .network-layout, .process-head, .resources-layout,
  .intro-layout, .contact-layout, .detail-grid, .footer-grid, .catalog-toolbar {
    grid-template-columns: 1fr;
  }
  .process-head .eyebrow,
  .process-head h2,
  .process-head p:last-child {
    grid-column: 1;
    grid-row: auto;
  }
  .process-head p:last-child { padding-top: 0; }
  .section-head { align-items: start; }
  .business-detail-hero { background-position: 62% center; }
  .business-detail-hero__content h1 {
    letter-spacing: -0.035em;
  }
  .business-detail-hero__content p:not(.eyebrow) {
    font-size: clamp(1rem, 2.8vw, 1.14rem);
    line-height: 1.7;
  }
  .service-grid, .solution-grid, .project-grid, .template-list, .faq { grid-template-columns: 1fr; }
  .about-card-grid,
  .about-card-grid-3,
  .about-story-grid,
  .philosophy-head,
  .philosophy-grid,
  .about-split,
  .about-steps {
    grid-template-columns: 1fr;
  }
  .about-story .about-copy {
    margin-top: 0;
  }
  .about-page-hero {
    min-height: 100svh;
    height: 100svh;
  }
  .about-page-hero .hero-content {
    padding-top: clamp(128px, 18vh, 168px);
  }
  .about-page-hero .hero-media img {
    object-position: 62% center;
  }
  .philosophy-head {
    gap: 18px;
    margin-bottom: 28px;
  }
  .philosophy-card {
    min-height: auto;
  }
  .about-trust .trust-grid {
    grid-template-columns: 1fr;
  }
  .about-final-cta .contact-layout {
    grid-template-columns: 1fr;
  }
  .division-category-grid,
  .gallery-masonry,
  .division-cta-inner {
    grid-template-columns: 1fr;
  }
  .division-categories .section-head h2 {
    white-space: normal;
  }
  .division-category-card {
    min-height: auto;
  }
  .gallery-masonry {
    grid-auto-rows: 240px;
  }
  .gallery-masonry img:first-child,
  .gallery-masonry img:nth-child(3) {
    grid-row: span 1;
  }
  .admin-form { grid-template-columns: 1fr; }
  .admin-item { grid-template-columns: 1fr; align-items: stretch; }
  .range-categories { grid-template-columns: 1fr; }
  .resource-list { grid-template-columns: repeat(2, 1fr); }
  .resources-layout { align-items: start; }
  .insights-head {
    display: grid;
    gap: 18px;
  }
  .insight-grid-editorial {
    grid-template-columns: repeat(2, 1fr);
  }
  .resource-detail-card {
    grid-template-columns: 1fr;
  }
  .resource-detail-image {
    min-height: 240px;
  }
  .network-video-frame { height: 340px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 30px, 1180px); }
  .brand-logo {
    height: clamp(34px, 10vw, 42px);
  }
  .footer-brand .brand-logo {
    height: 40px;
  }
  .hero { min-height: 690px; height: 690px; padding-top: 112px; }
  .business-detail-hero { background-position: 68% center; }
  .business-detail-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(250, 247, 239, 0.98) 0%,
      rgba(250, 247, 239, 0.88) 54%,
      rgba(250, 247, 239, 0.52) 100%
    );
  }
  .business-detail-hero__content {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: clamp(28px, 5vh, 48px);
    padding-bottom: clamp(34px, 5vh, 56px);
  }
  .business-detail-hero__content h1 {
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 11.5vw, 4rem);
    line-height: 1;
  }
  .business-detail-hero__content p:not(.eyebrow) {
    max-width: 96%;
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .insight-page-hero {
    min-height: calc(100svh - var(--header-height, 0px));
    height: calc(100svh - var(--header-height, 0px));
    padding-top: 0;
  }
  .insight-page-hero .hero-content {
    padding-top: clamp(108px, 16vh, 146px);
  }
  .insights-page-list {
    padding-top: clamp(108px, 20vw, 140px);
  }
  .resources-page-hero {
    min-height: calc(100svh - var(--header-height, 0px));
    height: calc(100svh - var(--header-height, 0px));
    padding-top: 0;
  }
  .resources-page-hero .hero-content {
    padding-top: clamp(108px, 16vh, 146px);
  }
  .resources-page-list {
    padding-top: clamp(108px, 20vw, 140px);
  }
  .projects-page-hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 0;
  }
  .projects-page-hero .hero-content {
    padding-top: clamp(104px, 16vh, 142px);
  }
  .projects-page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10vw, 4rem);
    line-height: 1.03;
  }
  .projects-page-hero .hero-media img {
    object-position: 55% center;
  }
  .division-hero {
    min-height: 100svh;
    height: 100svh;
    padding: 108px 0 56px;
  }
  .division-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 13vw, 4.45rem);
    line-height: 0.98;
  }
  .division-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }
  .division-hero-image {
    min-height: 100%;
  }
  .hero-home {
    min-height: 100svh;
    height: 100svh;
    padding: 0;
  }
  .hero-content[data-hero-carousel] {
    width: min(100% - 30px, 820px);
    height: 100%;
    min-height: 100%;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251,248,241,.98), rgba(251,248,241,.86) 50%, rgba(251,248,241,.42)),
      linear-gradient(90deg, rgba(251,248,241,.95), rgba(251,248,241,.3));
  }
  h1 { font-size: clamp(1.95rem, 9vw, 4rem); }
  .hero-slide h1 {
    font-size: clamp(1.95rem, 9vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-slide {
    padding: 104px 0 48px;
  }
  .hero-slide:nth-child(2) h1,
  .hero-slide:nth-child(3) h1 {
    font-size: clamp(1.95rem, 9vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero-title-compact {
    font-size: clamp(1.95rem, 9vw, 4rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }
  .hero-nowrap {
    white-space: nowrap;
  }
  .hero-slide-editorial h1 {
    font-size: clamp(1.95rem, 9vw, 4rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }
  .hero-slide-editorial .hero-lead {
    max-width: 100%;
    font-size: clamp(0.78rem, 3.4vw, 0.88rem);
    line-height: 1.45;
  }
  .hero-lead { font-size: 0.98rem; margin-bottom: 20px; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.6rem); }
  .trust-grid, .process-line, .insight-grid, .catalog-grid,
  .contact-form, .footer-bottom, .resource-list {
    grid-template-columns: 1fr;
  }
  .insight-grid-editorial {
    grid-template-columns: 1fr;
  }
  .resource-detail-copy {
    padding: 28px 24px 34px;
  }
  .resources-layout { gap: 20px; }
  .trust-grid article { border-left: 0; border-top: 1px solid var(--line); }
  .footer-bottom { display: grid; }
  .footer-bottom nav { flex-wrap: wrap; }
  .network-band { height: auto; min-height: 560px; }
  .network-video-frame { inset: 45% 0 0; }
  .projects .section-head h2 { white-space: normal; }
  .division-hero {
    min-height: calc(100svh - var(--header-height, 0px));
    height: calc(100svh - var(--header-height, 0px));
    padding: 108px 0 54px;
  }
  .division-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.25rem);
    line-height: 0.98;
  }
  .division-hero-image {
    min-height: 100%;
  }
  .division-feature-grid,
  .division-trust-grid,
  .division-steps {
    grid-template-columns: 1fr;
  }
  .division-category-card {
    min-height: 360px;
  }
  .division-overview,
  .division-offer,
  .division-categories,
  .division-timeline,
  .division-trust,
  .division-gallery,
  .division-faq {
    padding: 72px 0;
  }
}
