/* =============================================
   GCM GLOBAL COPPER MANUFACTURING — Main CSS
   ============================================= */

/* =============================================================
   DESIGN TOKENS
   ============================================================= */
/* 1. CSS VARIABLES */
:root {
  --copper: #ba7c00;
  --copper-60: rgba(186, 124, 0, 0.6);
  --copper-20: rgba(186, 124, 0, 0.2);
  --black: #000000;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --dark-gray: #1a1a1a;
  --mid-gray: #666666;
  --light-gray: #e8e4dc;
  --gradient: linear-gradient(90deg, #ba7c00 0%, #000000 100%);
  --nav-height: 110px;
  --nav-height-mobile: 80px;
  --max-width: 1520px;
  --gutter: 20px;
  --font-main: "CF Asty Std", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 0.3s ease;
}

/* =============================================================
   FONT FACES
   ============================================================= */
/* 2. FONT FACES */
@font-face {
  font-family: "CF Asty Std";
  src: url("../fonts/Asty-Regular.woff2") format("woff2"),
       url("../fonts/Asty-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CF Asty Std";
  src: url("../fonts/Asty-Bold.woff2") format("woff2"),
       url("../fonts/Asty-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"),
       url("../fonts/icomoon.ttf") format("truetype"),
       url("../fonts/icomoon.woff") format("woff"),
       url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* =============================================================
   RESET
   ============================================================= */
/* 3. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (not hidden) — clips horizontal overflow WITHOUT creating a
   scroll container, so descendant position:sticky still works. */
html { font-size: 16px; overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-main); color: var(--black); background: #fff; line-height: 1.6; overflow-x: clip; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; }

/* =============================================================
   LAYOUT PRIMITIVES
   ============================================================= */
/* 4. LAYOUT */
.container-boxed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site { overflow: clip; }
.content-area { padding-top: var(--nav-height); }

/* COLUMNS (simple flex grid) */
.columns { display: flex; flex-wrap: wrap; margin: 0 calc(-1 * var(--gutter)); }
.column { padding: var(--gutter); flex: 1 1 0; min-width: 0; }
.is-12 { flex: 0 0 100%; max-width: 100%; }
.is-6 { flex: 0 0 50%; max-width: 50%; }
.is-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.is-3 { flex: 0 0 25%; max-width: 25%; }
.is-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
.is-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
.is-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.is-multiline { flex-wrap: wrap; }

/* 5. PAGE LOADER */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
#page-loader .loader-logo img { width: 160px; opacity: 0; animation: loaderFadeIn 0.6s 0.2s ease forwards; }
@keyframes loaderFadeIn { to { opacity: 1; } }

/* SCROLL PROGRESS BAR */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--copper);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* =============================================================
   HEADER / FOOTER / NAVIGATION
   ============================================================= */
/* =============================================
   6. HEADER — Two-tier industrial design
   ============================================= */
:root {
  --topbar-height: 36px;
  --mainnav-height: 74px;
}

#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--black);
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
}

/* Transparent state — hero overlay handles the darkness; navbar is invisible */
#main-header.is-transparent { background: transparent !important; }
#main-header.is-transparent .header-topbar { border-bottom-color: rgba(255,255,255,0.1); }
#main-header.is-transparent .topbar-geo,
#main-header.is-transparent .topbar-link { opacity: 0.6; }
#main-header.is-transparent .header-divider { opacity: 0.22; }
#main-header.is-transparent #mega-menu > ul > li > a { color: rgba(255,255,255,0.8); }
/* #main-header.is-transparent .nav-cta-btn { background: rgba(186,124,0,0.85); border-color: rgba(186,124,0,0.85); } */

/* Solid scrolled state */
#main-header.is-solid {
  background: rgba(5,5,5,0.97) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* ── TOP UTILITY BAR ── */
.header-topbar {
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(186,124,0,0.2);
  transition: border-color 0.45s ease;
}
.topbar-inner {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-geo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: opacity 0.45s ease;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s ease, opacity 0.45s ease;
}
.topbar-link:hover { color: var(--copper); }
.topbar-sep {
  width: 1px;
  height: 11px;
  background: rgba(255,255,255,0.12);
}

/* ── MAIN NAV ROW ── */
.header-main { height: var(--mainnav-height); display: flex; align-items: center; }
.header-main-inner {
  position: relative;
  height: 100%;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--copper-20);
}

/* Thin copper vertical divider after logo */
.header-divider {
  width: 1px;
  height: 28px;
  background: rgba(186,124,0,0.35);
  flex-shrink: 0;
  transition: opacity 0.45s ease;
}

/* Logo */
#main-logo a { display: flex; align-items: center; }
#main-logo img { height: 48px; width: auto; transition: opacity 0.2s ease; }
#main-logo img:hover { opacity: 0.82; }

/* ── DESKTOP MEGA MENU ── */
#mega-menu {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
}
#mega-menu > ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
}
#mega-menu > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}

#mega-menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.22s ease;
  white-space: nowrap;
  position: relative;
}

/* Animated bottom line */
#mega-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}
#mega-menu > ul > li:hover > a { color: var(--white); }
#mega-menu > ul > li:hover > a::after { transform: scaleX(1); }
#mega-menu > ul > li.active > a { color: var(--copper); }
#mega-menu > ul > li.active > a::after { transform: scaleX(1); }

/* Chevron on dropdown items */
#mega-menu > ul > li.menu-item-has-children > a::before {
  content: '';
  order: 99;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
  opacity: 0.45;
}
#mega-menu > ul > li.menu-item-has-children:hover > a::before {
  transform: rotate(-135deg) translateY(2px);
  opacity: 1;
  border-color: var(--copper);
}

/* ── STANDARD DROPDOWN ── */
#mega-menu .level-1 {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: rgba(7,7,7,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 2px solid var(--copper);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  list-style: none;
  z-index: 200;
  box-shadow: 0 22px 50px rgba(0,0,0,0.65);
}
#mega-menu > ul > li:hover .level-1 { opacity: 1; visibility: visible; transform: translateY(0); }

#mega-menu .level-1 li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
#mega-menu .level-1 li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--copper);
  flex-shrink: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
#mega-menu .level-1 li a:hover {
  color: var(--white);
  background: rgba(186,124,0,0.06);
  padding-left: 24px;
}
#mega-menu .level-1 li a:hover::before { transform: scaleX(1); }
#mega-menu .level-1 li a span { display: block; }

/* ── MEGA PANEL (Products) ── */
.has-mega-panel { position: static !important; }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 680px;
  background: rgba(7,7,7,0.99);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 2px solid var(--copper);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  overflow: hidden;
}
.has-mega-panel:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  padding: 1px;
}
.mega-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(7,7,7,0.99);
  transition: background 0.16s ease;
  text-decoration: none;
}
.mega-product-item:hover { background: rgba(186,124,0,0.09); }
.mega-product-num {
  font-size: 9px;
  font-weight: 700;
  color: rgba(186,124,0,0.35);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  width: 18px;
  transition: color 0.16s ease;
}
.mega-product-item:hover .mega-product-num { color: var(--copper); }
.mega-product-info { flex: 1; min-width: 0; }
.mega-product-name {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.16s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-product-item:hover .mega-product-name { color: var(--white); }
.mega-product-std {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 400;
}
.mega-product-arrow {
  color: var(--copper);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  flex-shrink: 0;
}
.mega-product-item:hover .mega-product-arrow { opacity: 1; transform: translateX(0); }

.mega-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mega-panel-tagline {
  font-size: 9.5px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  transition: gap 0.22s ease;
}
.mega-view-all:hover { gap: 13px; }

/* ── HEADER CTA BUTTON ── */
.header-actions { flex-shrink: 0; }
.nav-cta-btn {
  display: inline-flex;
  /* align-items: center; */
  gap: 8px;
  padding: 9px 20px;
  background: var(--copper);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  transition: background 0.24s ease, color 0.24s ease;
  white-space: nowrap;
  border-radius: 20px;
}
.nav-cta-btn svg { transition: transform 0.24s ease; flex-shrink: 0; }
.nav-cta-btn:hover { background: transparent; color: var(--copper); }
.nav-cta-btn:hover svg { transform: translateX(4px); }

/* =============================================
   7. BURGER BUTTON — refined two-line design
   ============================================= */
#burger-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: var(--nav-height-mobile);
  padding: 0 20px;
  z-index: 1200;
  align-items: center;
}
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
}
.hline {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.32s ease,
              opacity 0.32s ease;
  transform-origin: center;
}
.hline:first-child { width: 24px; }
.hline:last-child { width: 16px; }
.hamburger:hover .hline:last-child { width: 24px; }
.hamburger.is-active .hline:first-child { transform: translateY(3.75px) rotate(45deg); width: 24px; }
.hamburger.is-active .hline:last-child { transform: translateY(-3.75px) rotate(-45deg); width: 24px; }
.menu-label, .menu-label-close {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
}
.menu-label-close { display: none; }
.hamburger.is-active .menu-label { display: none; }
.hamburger.is-active .menu-label-close { display: block; }

/* 8. MOBILE MENU */
.mobile-menu-wrap {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--black);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu-wrap.is-open { transform: translateX(0); }
.mobile-menu-results { padding: 100px 30px 40px; }
.mobile-menu-results .menu { list-style: none; }
.mobile-menu-results .menu > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu-results .menu > li > a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-menu-results .level-1 { display: none; padding: 0 0 12px 20px; list-style: none; }
.mobile-menu-results .level-1.is-open { display: block; }
.mobile-menu-results .level-1 li a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu-results .level-1 li a:hover { color: var(--copper); }
.mobile-menu-results .menu > li > a .arrow {
  float: right;
  font-size: 10px;
  transition: transform var(--transition);
  color: var(--copper);
}
.mobile-menu-results .menu > li.is-open > a .arrow { transform: rotate(90deg); }

/* 9. HERO VIDEO COMPONENT */
.hero-video-component {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-height));
  display: flex;
  align-items: flex-end;
}
.hero-video-component .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-component .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-component .video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 35%),
    linear-gradient(to top,    rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero-video-component .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-video-component .hero-content .container-boxed { position: relative; }
.hero-video-component h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-video-component p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Hero side panel */
.hero-side-panel {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-side-item {
  border-left: 2px solid rgba(186,124,0,0.4);
  padding: 20px 20px;
  transition: border-color var(--transition);
  cursor: pointer;
}
.hero-side-item:hover { border-color: var(--copper); }
.hero-side-item h3 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hero-side-item p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* =============================================================
   SHARED COMPONENTS
   (Buttons, sections, pillars, product categories, video,
    metal prices, news, bottom banner, breadcrumbs, hero image,
    text/accordion, products, certificates, careers, etc.)
   ============================================================= */
/* 10. BUTTON */
.btn-copper, .button-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--copper);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--copper);
  position: relative;
  overflow: hidden;
}
.btn-copper:hover, .button-more:hover {
  background: transparent;
  color: var(--copper);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--copper); color: var(--copper); }

/* Arrow button */
.moreButton-button-right-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  transition: gap var(--transition);
}
.moreButton-button-right-arrow::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--transition);
}
.moreButton-button-right-arrow:hover { gap: 14px; }

/* 11. SECTION GENERAL */
.comp { padding: 80px 0; }
.comp.is-light { background: var(--off-white); }
.comp.is-dark { background: var(--dark-gray); color: var(--white); }

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 600px;
}

/* Copper rule */
.copper-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--copper);
  margin-bottom: 20px;
}

/* 12. STRATEGIC PILLARS / FAQ ACCORDION */
.pillars-section { background: var(--black); padding: 100px 0; }
.pillars-section .section-title, .pillars-section .section-desc { color: var(--white); }
.pillars-section .section-desc { color: rgba(255,255,255,0.6); }

.pillars-header { margin-bottom: 60px; }
.pillars-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
}
.pillars-header p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 500px; }

.pillar-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  transition: border-color var(--transition);
}
.pillar-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.pillar-item.is-active { border-color: rgba(186,124,0,0.3); }

.pillar-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
.pillar-trigger h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.pillar-item.is-active .pillar-trigger h3 { color: var(--copper); }
.pillar-trigger .sub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}
.pillar-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  transition: all var(--transition);
  position: relative;
}
.pillar-toggle::before, .pillar-toggle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.pillar-toggle::after { transform: rotate(90deg); }
.pillar-item.is-active .pillar-toggle { border-color: var(--copper); background: var(--copper); }
.pillar-item.is-active .pillar-toggle::before,
.pillar-item.is-active .pillar-toggle::after { background: var(--white); }
.pillar-item.is-active .pillar-toggle::after { transform: rotate(0deg); opacity: 0; }

.pillar-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.pillar-item.is-active .pillar-content { max-height: 500px; }
.pillar-content-inner {
  padding: 0 0 28px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
}

/* 13. PRODUCT CATEGORIES */
.product-categories { padding: 100px 0; background: var(--off-white); }
.product-categories .header { margin-bottom: 56px; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.product-categories .header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.product-categories .header p { color: var(--mid-gray); margin-top: 12px; font-size: 1.05rem; }

.product-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-cat-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-gray);
  cursor: pointer;
  border-radius: 4px;
}
.product-cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-cat-item:hover img { transform: scale(1.06); }
.product-cat-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.12) 55%);
  transition: background 0.4s ease;
}
.product-cat-item:hover .overlay { background: linear-gradient(to top, rgba(150,90,0,0.88) 0%, rgba(0,0,0,0.28) 60%); }
.product-cat-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.product-cat-item:hover .product-cat-num { color: rgba(255,255,255,0.75); }
.product-cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.product-cat-info h3 {
  font-size: 1.18rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.product-cat-info .arrow-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all var(--transition);
  transform: translateX(5px);
  opacity: 0.7;
}
.product-cat-item:hover .arrow-btn {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateX(0);
  opacity: 1;
}

/* Placeholder for product cat items without images */
.product-cat-item.no-image { background: var(--dark-gray); }
.product-cat-item.no-image .cat-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(186,124,0,0.15);
}

/* 14. VIDEO SECTION */
.video-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.video-section .video-label {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-section .video-label h2 {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

/* 15. METAL PRICES */
.metal-prices-section { background: var(--black); padding: 60px 0; }
.metal-prices-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.metal-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.metal-price-item { display: flex; flex-direction: column; gap: 6px; }
.metal-price-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.metal-price-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.metal-price-unit { font-size: 13px; color: rgba(255,255,255,0.4); }
.metal-price-change { font-size: 12px; }
.metal-price-change.up { color: #4caf50; }
.metal-price-change.down { color: #f44336; }
.metal-price-source {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.metal-price-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* 16. NEWS SECTION */
.news-section { padding: 100px 0; background: var(--off-white); }
.news-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.news-card .image { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.news-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .image img { transform: scale(1.04); }
.news-card .body { padding: 24px; }
.news-card .date { font-size: 11px; letter-spacing: 0.08em; color: var(--copper); text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.news-card .title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: var(--black); }
.news-card .excerpt { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.6; margin-bottom: 20px; }
.news-card .category { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(0,0,0,0.4); text-transform: uppercase; }

/* 17. BOTTOM BANNER CTA */
.bottom-banner {
  background: var(--copper);
  padding: 80px 0;
}
.bottom-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.bottom-banner h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); color: var(--white); max-width: 600px; }
.bottom-banner p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-top: 14px; max-width: 500px; }
.bottom-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  flex-shrink: 0;
  border: 2px solid var(--white);
}
.bottom-banner .btn-white:hover { background: transparent; color: var(--white); }

/* 18. BREADCRUMBS */
.breadcrumbs {
  padding: 20px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--mid-gray); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--copper); }
.breadcrumbs .sep { color: var(--copper); font-size: 10px; }
.breadcrumbs .current { color: var(--black); font-weight: 700; }

/* 19. HERO IMAGE (inner pages) */
.hero-image-comp {
  position: relative;
  height: 55vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-image-comp .bg {
  position: absolute;
  inset: 0;
}
.hero-image-comp .bg img,
.hero-image-comp .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-comp .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}
.hero-image-comp .hero-text {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  width: 100%;
}
.hero-image-comp h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--white);
  max-width: 800px;
  line-height: 1.1;
}

/* 20. TEXT STICKY / ACCORDION CONTENT */
.text-accordion-section { padding: 100px 0; }
.text-accordion-left .title-col { padding-right: 60px; }
.text-accordion-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.text-accordion-left p { font-size: 1rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 16px; }

.accordion-item { border-bottom: 1px solid var(--light-gray); }
.accordion-item:first-child { border-top: 1px solid var(--light-gray); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-trigger h3 { font-size: 1.1rem; color: var(--black); transition: color var(--transition); }
.accordion-item.is-active .accordion-trigger h3 { color: var(--copper); }
.acc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
  font-size: 18px;
  font-weight: 400;
  transition: all var(--transition);
}
.accordion-item.is-active .acc-icon { background: var(--copper); color: var(--white); border-color: var(--copper); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.is-active .accordion-body { max-height: 400px; }
.accordion-body-inner { padding: 0 0 24px 0; color: var(--mid-gray); font-size: 0.95rem; line-height: 1.75; }

/* 21. PRODUCTS PAGE */
.products-page { padding: 80px 0; }
.products-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
  background: transparent;
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--copper); color: var(--copper); background: rgba(186,124,0,0.05); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
  aspect-ratio: 1;
  cursor: pointer;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  transition: background var(--transition);
}
.product-card:hover .card-overlay { background: linear-gradient(to top, rgba(186,124,0,0.7) 0%, rgba(0,0,0,0.3) 60%); }
.product-card .card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.product-card .card-info h3 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.product-card .card-info .cat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
}
.product-card .card-info .specs {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* 22. SINGLE PRODUCT */
.single-product-hero { padding: 80px 0; border-bottom: 1px solid var(--light-gray); }
.single-product-hero .product-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.product-main-img { aspect-ratio: 4/3; overflow: hidden; background: var(--off-white); }
.product-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
.product-thumb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.product-thumb { aspect-ratio: 1; overflow: hidden; background: var(--off-white); cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); }
.product-thumb.active { border-color: var(--copper); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.product-info .tag { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.product-info h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 20px; }
.product-info .desc { font-size: 1rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 30px; }
.product-specs { margin-bottom: 30px; }
.spec-row { display: flex; border-bottom: 1px solid var(--light-gray); padding: 12px 0; font-size: 0.9rem; }
.spec-key { width: 140px; font-weight: 700; color: var(--black); flex-shrink: 0; }
.spec-val { color: var(--mid-gray); }

/* 23. APPLICATIONS PAGE */
.applications-hero { padding: 80px 0; background: var(--black); }
.applications-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.applications-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; }

.applications-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.application-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.application-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.application-item:hover img { transform: scale(1.05); }
.application-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%); transition: background var(--transition); }
.application-item:hover .overlay { background: linear-gradient(to top, rgba(186,124,0,0.65) 0%, rgba(0,0,0,0.3) 60%); }
.app-info { position: relative; z-index: 2; padding: 30px; }
.app-info h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.app-info p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* 24. CONTACT PAGE */
.contact-section { padding: 80px 0; }
.contact-info-box { background: var(--black); padding: 40px; color: var(--white); }
.contact-info-box h2 { font-size: 1.4rem; color: var(--copper); margin-bottom: 20px; letter-spacing: 0.03em; }
.contact-info-box .info-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 0.95rem; }
.contact-info-box .info-line .ic { color: var(--copper); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-info-box .info-line a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.contact-info-box .info-line a:hover { color: var(--copper); }
.contact-info-box .info-line p { color: rgba(255,255,255,0.75); }

.contact-form-box { padding: 40px; background: var(--off-white); }
.contact-form-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-box .subtitle { color: var(--mid-gray); font-size: 0.95rem; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color var(--transition);
  outline: none;
  font-family: var(--font-main);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: right; }

/* 25. CERTIFICATES PAGE */
.certs-header { padding: 80px 0 40px; }
.certs-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.certs-header p { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; }

.certs-filter { display: flex; gap: 0; border-bottom: 1px solid var(--light-gray); margin-bottom: 50px; }
.cert-filter-btn {
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.cert-filter-btn.active, .cert-filter-btn:hover { color: var(--copper); border-bottom-color: var(--copper); }

.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card {
  background: var(--off-white);
  padding: 20px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.cert-card:hover { background: var(--light-gray); }
.cert-card .cert-img { aspect-ratio: 3/4; overflow: hidden; background: var(--white); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.cert-card .cert-img img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 10px; }
.cert-card h3 { font-size: 0.9rem; font-weight: 700; line-height: 1.4; margin-bottom: 12px; flex-grow: 1; }
.cert-card .cert-actions { display: flex; align-items: center; justify-content: space-between; }
.cert-card .cert-size { font-size: 11px; color: var(--mid-gray); }
.cert-card .cert-btns { display: flex; gap: 10px; }
.cert-btn {
  width: 36px;
  height: 36px;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.cert-btn:hover { opacity: 0.8; }
.cert-btn svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }

/* No-photo cert card */
.cert-card.no-img { flex-direction: row; align-items: center; gap: 16px; padding: 20px; }
.cert-card.no-img .cert-img { display: none; }
.cert-card.no-img h3 { margin-bottom: 0; }

/* 26. CAREERS PAGE */
.careers-intro { padding: 80px 0; }
.careers-intro h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.careers-intro p { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; }
.careers-values { display: grid; gap: 30px; margin-top: 60px; }
.value-card { background: var(--off-white); padding: 32px; }
.value-card .icon { font-size: 2rem; color: var(--copper); margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }

.jobs-section { padding: 80px 0; background: var(--off-white); }
.jobs-section h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 40px; }
.job-card {
  background: var(--white);
  padding: 28px 32px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--transition);
}
.job-card:hover { background: var(--black); }
.job-card:hover .job-title, .job-card:hover .job-dept { color: var(--white); }
.job-card:hover .job-location { color: rgba(255,255,255,0.5); }
.job-title { font-size: 1.1rem; font-weight: 700; transition: color var(--transition); }
.job-dept { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); margin-top: 4px; }
.job-location { font-size: 12px; color: var(--mid-gray); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.job-type { padding: 6px 14px; background: rgba(186,124,0,0.1); color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0; }

/* 27. WHERE TO BUY */
.where-to-buy { padding: 80px 0; }
.where-to-buy h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.where-to-buy .subtitle { font-size: 1.05rem; color: var(--mid-gray); max-width: 700px; line-height: 1.7; margin-bottom: 60px; }
.distributors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.distributor-card {
  padding: 36px;
  background: var(--off-white);
  transition: background var(--transition);
}
.distributor-card:hover { background: var(--black); }
.distributor-card:hover h3 { color: var(--white); }
.distributor-card:hover p { color: rgba(255,255,255,0.55); }
.distributor-card:hover a { color: var(--copper); }
.distributor-card .region { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 10px; }
.distributor-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; transition: color var(--transition); }
.distributor-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 6px; transition: color var(--transition); }
.distributor-card a { font-size: 0.9rem; color: var(--copper); transition: color var(--transition); }

/* 28. WORK CULTURE */
.culture-intro { padding: 80px 0; }
.culture-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--light-gray); border-left: 1px solid var(--light-gray); margin-top: 60px; }
.stat-item { padding: 40px 30px; border-right: 1px solid var(--light-gray); text-align: center; }
.stat-value { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; color: var(--copper); display: block; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-top: 6px; }
.culture-content { padding: 80px 0; background: var(--black); }
.culture-content h2 { font-size: clamp(1.8rem, 3vw, 3rem); color: var(--white); margin-bottom: 24px; }
.culture-content p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 16px; max-width: 700px; }
.culture-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 60px; }
.culture-img { aspect-ratio: 4/3; overflow: hidden; background: var(--dark-gray); }
.culture-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.culture-img:hover img { transform: scale(1.04); }

/* 29. QUALITY PAGE */
.quality-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.quality-pillar-item {
  padding: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.quality-pillar-item:hover { border-color: var(--copper); background: rgba(186,124,0,0.03); }
.quality-pillar-item .pillar-num {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(186,124,0,0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}
.quality-pillar-item h3 { font-size: 1.3rem; margin-bottom: 14px; position: relative; z-index: 1; }
.quality-pillar-item p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.7; position: relative; z-index: 1; }

/* 30. FOOTER */
footer.site-footer {
  background: #111111;
  border-top: 2px solid var(--copper);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px 60px;
  margin-bottom: 60px;
}
.footer-col-logo .logo img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-col-logo p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-col-logo .footer-logo-divider {
  width: 40px;
  height: 2px;
  background: var(--copper);
  margin: 24px 0;
  opacity: 0.6;
}
.footer-col-logo .footer-cert {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  padding-bottom: 16px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--copper);
}
.footer-col > h4 { margin-bottom: 28px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--copper); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item .ic {
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}
.footer-contact-item a, .footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--copper); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
.footer-back-top {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.footer-back-top:hover { color: var(--copper); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--copper); background: var(--copper); }
.footer-social svg { width: 15px; height: 15px; fill: none; stroke: white; stroke-width: 1.5; }

/* 31. SWIPER SLIDER (custom dots/nav) */
.slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}
.slider-btn:hover { border-color: var(--copper); background: var(--copper); }
.slider-btn svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.swiper-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 20px; }
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.swiper-pagination-bullet-active { background: var(--copper); width: 20px; border-radius: 3px; }

/* 32. PRODUCTION FACILITIES */
.facilities-section { padding: 80px 0; }
.facility-item {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--light-gray);
}
.facility-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.facility-item.reversed { flex-direction: row-reverse; }
.facility-visual { flex: 0 0 50%; }
.facility-visual img, .facility-visual video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.facility-text { flex: 1; }
.facility-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.facility-text p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 16px; }
.facility-text ul { list-style: none; }
.facility-text ul li {
  font-size: 0.9rem;
  color: var(--mid-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  gap: 10px;
  align-items: center;
}
.facility-text ul li::before { content: ''; width: 4px; height: 4px; background: var(--copper); border-radius: 50%; flex-shrink: 0; }

/* 33. COPPER SEGMENT */
.copper-segment-section { padding: 80px 0; background: var(--black); }
.copper-segment-section h1 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.copper-segment-section p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 700px; margin-bottom: 16px; }
.segment-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.segment-stat { background: rgba(255,255,255,0.04); padding: 40px; border: 1px solid rgba(186,124,0,0.2); }
.segment-stat .num { font-size: 3rem; font-weight: 700; color: var(--copper); display: block; margin-bottom: 8px; }
.segment-stat .lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.copper-segment-content { padding: 80px 0; }

/* 34. TIMELINE (Who We Are history) */
.timeline-section { padding: 80px 0; background: var(--off-white); }
.timeline-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.timeline-section .sub { color: var(--mid-gray); margin-bottom: 50px; font-size: 1rem; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--light-gray); transform: translateX(-50%); }
.timeline-item { display: flex; gap: 60px; align-items: flex-start; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline-item-content { flex: 1; }
.timeline-item:nth-child(even) .timeline-item-content { text-align: right; }
.timeline-year { font-size: 2rem; font-weight: 700; color: var(--copper); margin-bottom: 8px; }
.timeline-item-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.timeline-item-content p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }
.timeline-item-img { flex: 0 0 40%; }
.timeline-item-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* 35. ABOUT PAGE TEXT SECTIONS */
.about-section { padding: 80px 0; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-two-col h2 { font-size: clamp(1.6rem, 2.5vw, 2.5rem); margin-bottom: 20px; }
.about-two-col p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.75; margin-bottom: 16px; }

/* Icomoon icon helpers */
[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.icon-phone::before { content: "\e942"; }
.icon-mail::before { content: "\e943"; }
.icon-map-pin::before { content: "\e944"; }

/* SVG icons inline */
.svg-icon { display: inline-flex; width: 16px; height: 16px; }

/* 36. SHARED INNER PAGE COMPONENTS */

/* Shared breadcrumb bar — dark bg to flow from dark navbar into dark hero sections */
.breadcumb {
  background: var(--dark-gray);
  /* border-bottom: 1px solid rgba(255,255,255,0.08); */
  border-bottom: 3px solid var(--copper);;
  padding: 14px 0;
}
.breadcumb .breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcumb .breadcrumbs a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcumb .breadcrumbs a:hover { color: var(--copper); }
.breadcumb .breadcrumbs .sep { color: var(--copper); font-size: 10px; }
.breadcumb .breadcrumbs .current-item { color: var(--white); font-weight: 700; }

/* Page intro block (dark sections with copper accent) */
.page-intro-dark {
  background: var(--black);
  padding: 80px 0 60px;
}
.page-intro-dark h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 760px;
}
.page-intro-dark h1 span { color: var(--copper); }
.page-intro-dark p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
}

/* =============================================================
   UTILITIES & RESPONSIVE
   ============================================================= */
/* 38. UTILITIES */
.hidden { display: none !important; }
.text-copper { color: var(--copper); }
.text-white { color: var(--white); }
.bg-black { background: var(--black); }
.bg-off-white { background: var(--off-white); }
.mt-0 { margin-top: 0 !important; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0 !important; }
.text-center { text-align: center; }

/* 37. RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  /* Header: collapse to single-tier mobile bar */
  #main-header { height: var(--nav-height-mobile); }
  .content-area { padding-top: var(--nav-height-mobile); }
  .hero-video-component { margin-top: calc(-1 * var(--nav-height-mobile)); }
  .header-topbar { display: none; }
  .header-main { height: var(--nav-height-mobile); }
  .header-main-inner { padding: 0 20px; }
  .header-divider { display: none; }
  #mega-menu { display: none; }
  .header-actions { display: none; }
  #burger-menu { display: flex; }
  /* Page layout */
  .hero-side-panel { display: none; }
  .product-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .facility-item { flex-direction: column !important; gap: 30px; }
  .facility-visual { flex: none; width: 100%; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; }
  .timeline-item::after { left: 20px; }
  .timeline-item:nth-child(even) .timeline-item-content { text-align: left; }
  .timeline-item-img { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-stats { grid-template-columns: repeat(2, 1fr); }
  .segment-stats { grid-template-columns: 1fr 1fr; }
  .distributors-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .quality-pillars { grid-template-columns: 1fr; }
  .pillars-layout { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --nav-height-mobile: 70px; }
  .hero-video-component { height: 85vh; }
  .hero-video-component h1 { font-size: 2.2rem; }
  .product-cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  /* Filter tabs would overflow on narrow screens — make them swipeable instead of clipping. */
  .certs-filter { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .certs-filter::-webkit-scrollbar { display: none; }
  .cert-filter-btn { padding: 14px 18px; white-space: nowrap; flex: 0 0 auto; }
  .culture-stats { grid-template-columns: 1fr 1fr; }
  .careers-values { grid-template-columns: 1fr; }
  .bottom-banner-inner { flex-direction: column; }
  .single-product-hero .product-images { grid-template-columns: 1fr; }
  .segment-stats { grid-template-columns: 1fr; }
  .comp { padding: 60px 0; }
  #main-logo img { height: 40px; }
  .metal-prices-inner { gap: 24px; }
  .metal-price-value { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .culture-stats { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   HOMEPAGE ENHANCEMENTS
   ============================================================= */

/* Stats Strip */
.stats-strip {
  background: var(--black);
  border-top: 1px solid rgba(186,124,0,0.25);
  border-bottom: 1px solid rgba(186,124,0,0.25);
}
.stats-row { display: flex; align-items: stretch; }
.stat-block {
  flex: 1;
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-block:hover { background: rgba(186,124,0,0.07); }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 1.3rem; vertical-align: super; }
.stat-lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-divider { width: 1px; background: rgba(255,255,255,0.07); }

/* Hero layout */
.hero-text-col { max-width: 650px; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--transition);
}
.hero-scroll-hint:hover { opacity: 0.7; }
.hero-scroll-hint span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.25; transform: translateY(10px); }
}

/* Pillars layout */
.pillars-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pillars-section .pillars-header { margin-bottom: 0; }
.pillars-header .btn-outline { margin-top: 32px; }

/* Product sub-label & CTA */
.product-cat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-weight: 400;
  display: block;
  transition: color 0.3s ease;
}
.product-cat-item:hover .product-cat-sub { color: rgba(255,255,255,0.9); }
.products-cta { text-align: center; margin-top: 54px; }

/* Video section CTA */
.video-section-cta { margin-top: 28px; }

/* News card anchor fix */
.news-card a { display: block; color: inherit; }
.news-card .body .moreButton-button-right-arrow { display: inline-flex; margin-top: 4px; }

/* Button arrow slide animation */
.btn-copper svg,
.btn-white svg,
.btn-outline svg,
.button-more svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.btn-copper:hover svg,
.btn-white:hover svg,
.btn-outline:hover svg,
.button-more:hover svg { transform: translateX(5px); }

/* Responsive */
@media (max-width: 1024px) {
  .pillars-layout { grid-template-columns: 1fr; gap: 50px; }
  .hero-text-col { max-width: 100%; }
}
@media (max-width: 768px) {
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 0 0 50%; padding: 28px 16px; }
  .stat-divider { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-actions { gap: 12px; }
}
@media (max-width: 480px) {
  .stat-block { flex: 0 0 100%; }
}

/* =============================================================
   PAGE-SPECIFIC STYLES
   Each page's former inline <style> block lives here, scoped
   under its body class (e.g. body.page-products) to prevent
   cross-page collisions. Shared rules belong in the sections
   above, NOT here.
   ============================================================= */

/* ---------- ABOUT (page-about) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — ABOUT / WHO WE ARE
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-about .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-about .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-about .hero-image-comp .image-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    body.page-about .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-about .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-about .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- TEXT + ACCORDION SECTION (Profile) --- */
    body.page-about .text-accordion-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-about .text-accordion-section .col-description .text-container {
      padding-right: 40px;
    }
    body.page-about .text-accordion-section .col-description h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    body.page-about .text-accordion-section .col-description p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      margin-bottom: 16px;
    }
    body.page-about .text-accordion-section .col-article { padding-left: 60px; }

    /* Accordion articles */
    body.page-about .text-accordion-section .col-article article {
      border-bottom: 1px solid var(--light-gray);
      overflow: hidden;
    }
    body.page-about .text-accordion-section .col-article article:first-child {
      border-top: 1px solid var(--light-gray);
    }
    body.page-about .accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      cursor: pointer;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
    }
    body.page-about .accordion-trigger h2 {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--black);
      text-transform: uppercase;
      transition: color var(--transition);
    }
    body.page-about .accordion-trigger .acc-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      position: relative;
      border: 1.5px solid var(--copper);
      border-radius: 50%;
      transition: background var(--transition);
    }
    body.page-about .accordion-trigger .acc-icon::before, 
    body.page-about .accordion-trigger .acc-icon::after {
      content: '';
      position: absolute;
      background: var(--copper);
      transition: transform 0.3s ease;
    }
    body.page-about .accordion-trigger .acc-icon::before {
      width: 10px; height: 1.5px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    body.page-about .accordion-trigger .acc-icon::after {
      width: 1.5px; height: 10px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    body.page-about article.is-open .accordion-trigger .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
    body.page-about article.is-open .accordion-trigger h2 { color: var(--copper); }
    body.page-about .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s ease, padding 0.3s ease;
      padding: 0 0 0 0;
    }
    body.page-about article.is-open .accordion-body {
      max-height: 500px;
      padding-bottom: 24px;
    }
    body.page-about .accordion-body p {
      font-size: 0.97rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- STATS SECTION --- */
    body.page-about .stats-section {
      background: var(--black);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-about .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-about .stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
      border-bottom: none;
    }
    body.page-about .stat-item:last-child { border-right: none; }
    body.page-about .stat-number {
      display: block;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-about .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* --- TIMELINE SECTION --- */
    body.page-about .timeline-section {
      background: var(--black);
      padding: 72px 0 0;
    }
    body.page-about .timeline-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 44px;
      padding: 0 var(--gutter);
    }
    body.page-about .timeline-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--white)
    }
    body.page-about .timeline-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }

    /* ---- TIMELINE IMAGE PANEL ---- */
    body.page-about .gcm-timeline-wrap {
      position: relative;
      overflow: hidden;
      height: 58vh;
      min-height: 340px;
      max-height: 580px;
    }
    /* Lighter gradient — only enough to make year dots readable */
    body.page-about .gcm-timeline-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.48) 20%,
        rgba(0,0,0,0.06) 52%,
        transparent 72%
      );
      z-index: 2;
      pointer-events: none;
    }
    body.page-about .gcm-timeline-img-swiper {
      position: absolute !important;
      inset: 0;
      width: 100%;
      height: 100% !important;
      max-height: none !important;
      min-height: 0 !important;
    }
    body.page-about .gcm-timeline-img-swiper .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Prev / Next — vertically centred on image only */
    body.page-about .gcm-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 44px;
      height: 44px;
      background: rgba(0,0,0,0.40);
      border: 1.5px solid rgba(255,255,255,0.2);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition), border-color var(--transition);
    }
    body.page-about .gcm-nav-prev { left: 20px; }
    body.page-about .gcm-nav-next { right: 20px; }
    body.page-about .gcm-nav-btn:hover { background: var(--copper); border-color: var(--copper); }
    body.page-about .gcm-nav-btn.swiper-button-disabled { opacity: 0.2; pointer-events: none; }
    body.page-about .gcm-nav-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

    /* Year nav bar — pinned inside image bottom */
    body.page-about .gcm-timeline-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 4;
      padding: 0 0 22px;
    }
    body.page-about .gcm-timeline-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      position: relative;
    }
    body.page-about .gcm-timeline-line {
      position: absolute;
      top: 7px;
      left: var(--gutter);
      right: var(--gutter);
      height: 1px;
      background: rgba(255,255,255,0.2);
    }
    body.page-about .gcm-timeline-bullets {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      position: relative;
    }
    body.page-about .gcm-year-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
    }
    body.page-about .gcm-year-btn .bullet {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.32);
      background: transparent;
      transition: all 0.28s ease;
      position: relative;
      z-index: 1;
    }
    body.page-about .gcm-year-btn.active .bullet {
      border-color: var(--copper);
      background: var(--copper);
      box-shadow: 0 0 0 3px rgba(186,124,0,0.3);
    }
    body.page-about .gcm-year-btn:hover .bullet { border-color: var(--copper); background: var(--copper); }
    body.page-about .gcm-year-btn .year-lbl {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.42);
      white-space: nowrap;
      transition: color 0.25s ease;
    }
    body.page-about .gcm-year-btn.active .year-lbl, 
    body.page-about .gcm-year-btn:hover .year-lbl { color: var(--copper); }

    /* ---- TIMELINE TEXT PANEL — below the image ---- */
    body.page-about .gcm-timeline-text {
      background: var(--black);
      border-top: 1px solid rgba(186,124,0,0.18);
      padding: 40px 0 68px;
    }
    body.page-about .gcm-text-slides {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-about .gcm-text-slide { display: none; }
    body.page-about .gcm-text-slide.active {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0 56px;
      align-items: start;
      animation: fadeSlideIn 0.38s ease;
    }
    /* NOTE: @keyframes are global — name kept unique on purpose. */
    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    body.page-about .gcm-text-slide h3 {
      font-size: clamp(3.2rem, 5.5vw, 5.5rem);
      color: var(--copper);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      margin: 0;
      padding-top: 2px;
    }
    body.page-about .gcm-slide-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      margin: 0 0 12px;
      letter-spacing: 0.01em;
    }
    body.page-about .gcm-text-slide p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.78;
      max-width: 640px;
      margin: 0;
    }

    /* --- BOTTOM BANNER CTA --- */
    body.page-about .bottom-banner {
      background: var(--black);
      padding: 80px 0;
    }
    body.page-about .bottom-banner .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-about .bottom-banner h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      letter-spacing: -0.01em;
      max-width: 560px;
      line-height: 1.15;
    }
    body.page-about .bottom-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      margin-top: 14px;
      max-width: 460px;
      line-height: 1.7;
    }
    body.page-about .bottom-banner .btn-copper {
      flex-shrink: 0;
      font-size: 13px;
      padding: 18px 40px;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-about .stat-item:nth-child(2) { border-right: none; }
      body.page-about .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
      body.page-about .text-accordion-section .col-description .text-container { padding-right: 0; }
    }
    @media (max-width: 768px) {
      body.page-about .hero-image-comp { min-height: 480px; }
      body.page-about .text-accordion-section .columns { flex-direction: column; }
      body.page-about .text-accordion-section .column { flex: 0 0 100%; max-width: 100%; }
      body.page-about .text-accordion-section .col-article { padding-left: 20px; }
      body.page-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-about .gcm-timeline-wrap { height: 52vw; min-height: 280px; }
      body.page-about .gcm-nav-btn { width: 38px; height: 38px; }
      body.page-about .gcm-nav-prev { left: 10px; }
      body.page-about .gcm-nav-next { right: 10px; }
      body.page-about .gcm-timeline-bullets { overflow-x: auto; gap: 16px; padding-bottom: 6px; }
      body.page-about .gcm-year-btn .year-lbl { font-size: 10px; }
      body.page-about .gcm-text-slide.active { grid-template-columns: 1fr; gap: 16px 0; }
      body.page-about .gcm-text-slide h3 { font-size: clamp(2.8rem, 8vw, 4rem); }
      body.page-about .gcm-timeline-text { padding: 28px 0 48px; }
      body.page-about .bottom-banner .container-boxed { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      body.page-about .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- PRODUCTION FACILITIES (page-production-facilities) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — PRODUCTION FACILITIES
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-production-facilities .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-production-facilities .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-production-facilities .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-production-facilities .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-production-facilities .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-production-facilities .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- OVERVIEW SECTION --- */
    body.page-production-facilities .overview-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-production-facilities .overview-section .overview-inner {
      max-width: 860px;
    }
    body.page-production-facilities .overview-section h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }
    body.page-production-facilities .overview-section p {
      font-size: 1.07rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    body.page-production-facilities .overview-section p:last-child { margin-bottom: 0; }

    /* --- FACILITIES SECTION --- */
    body.page-production-facilities .facilities-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-production-facilities .facility-item {
      max-width: var(--max-width);
      margin: 0 auto 80px;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    body.page-production-facilities .facility-item:last-child { margin-bottom: 0; }
    body.page-production-facilities .facility-item.reversed { direction: rtl; }
    body.page-production-facilities .facility-item.reversed > * { direction: ltr; }

    body.page-production-facilities .facility-item .facility-image {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    body.page-production-facilities .facility-item .facility-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    body.page-production-facilities .facility-item .facility-image:hover img {
      transform: scale(1.04);
    }
    body.page-production-facilities .facility-item .facility-image .facility-number {
      position: absolute;
      top: 24px;
      left: 24px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--copper);
      padding: 6px 14px;
      border-radius: 2px;
      z-index: 2;
    }
    body.page-production-facilities .facility-item.reversed .facility-image .facility-number {
      left: auto;
      right: 24px;
    }

    body.page-production-facilities .facility-item .facility-content h2 {
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 18px;
      line-height: 1.15;
    }
    body.page-production-facilities .facility-item .facility-content p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    body.page-production-facilities .facility-item .facility-content ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    body.page-production-facilities .facility-item .facility-content ul li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.6;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    body.page-production-facilities .facility-item .facility-content ul li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    body.page-production-facilities .facility-item .facility-content ul li::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* --- PRODUCTION CAPACITY STATS --- */
    body.page-production-facilities .capacity-section {
      background: var(--black);
      padding: 90px 0;
    }
    body.page-production-facilities .capacity-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
      text-align: center;
    }
    body.page-production-facilities .capacity-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    body.page-production-facilities .capacity-section .section-header p {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
      max-width: 540px;
      margin: 0 auto;
    }
    body.page-production-facilities .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-production-facilities .stat-item {
      text-align: center;
      padding: 40px 20px;
      border-right: 1px solid rgba(255,255,255,0.1); /* white-10 — dark section divider */
    }
    body.page-production-facilities .stat-item:last-child { border-right: none; }
    body.page-production-facilities .stat-number {
      display: block;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 14px;
    }
    body.page-production-facilities .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5); /* white-50 — dark section muted text */
    }

    /* --- BTN WHITE (copper bg context) --- */
    body.page-production-facilities .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 20px 44px;
      text-decoration: none;
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }
    body.page-production-facilities .btn-white:hover {
      background: var(--black);
      color: var(--white);
    }

    /* --- CTA SECTION (bottom-banner pattern) --- */
    body.page-production-facilities .cta-section {
      background: var(--copper);
      padding: 90px 0;
      text-align: center;
    }
    body.page-production-facilities .cta-section .cta-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-production-facilities .cta-section h2 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 18px;
    }
    body.page-production-facilities .cta-section p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 40px;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-production-facilities .facility-item {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      body.page-production-facilities .facility-item.reversed { direction: ltr; }
      body.page-production-facilities .facility-item .facility-image img { height: 320px; }
      body.page-production-facilities .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-production-facilities .stat-item:nth-child(2) { border-right: none; }
      body.page-production-facilities .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); /* white-10 divider */ }
    }
    @media (max-width: 768px) {
      body.page-production-facilities .hero-image-comp { min-height: 480px; }
      body.page-production-facilities .overview-section { padding: 64px 0; }
      body.page-production-facilities .facilities-section { padding: 64px 0; }
      body.page-production-facilities .facility-item { margin-bottom: 56px; }
      body.page-production-facilities .facility-item .facility-image img { height: 260px; }
      body.page-production-facilities .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-production-facilities .cta-section { padding: 64px 0; }
    }
    @media (max-width: 480px) {
      body.page-production-facilities .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- COPPER SEGMENT (page-copper-segment) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — COPPER SEGMENT
       ============================================ */

    /* --- COPPER SEGMENT HERO --- */
    body.page-copper-segment .copper-segment-section {
      background: var(--black);
      padding: 120px 0 90px;
      position: relative;
      overflow: hidden;
    }
    body.page-copper-segment .copper-segment-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--copper);
    }
    body.page-copper-segment .copper-segment-section::after {
      content: '';
      position: absolute;
      top: 0;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--copper-20) 0%, transparent 70%);
      pointer-events: none;
    }
    body.page-copper-segment .copper-segment-section .container-boxed {
      position: relative;
      z-index: 1;
    }
    body.page-copper-segment .copper-segment-section h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 820px;
      margin-bottom: 36px;
    }
    body.page-copper-segment .copper-segment-section .hero-lead {
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 720px;
      margin-bottom: 20px;
    }

    /* Hero Stats Row */
    body.page-copper-segment .hero-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 70px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    body.page-copper-segment .hero-stat-item {
      padding: 40px 30px 36px;
      border-right: 1px solid rgba(255,255,255,0.12);
      position: relative;
    }
    body.page-copper-segment .hero-stat-item:last-child { border-right: none; }
    body.page-copper-segment .hero-stat-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 40px;
      background: var(--copper);
    }
    body.page-copper-segment .hero-stat-number {
      display: block;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-copper-segment .hero-stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* --- VALUE CHAIN SECTION --- */
    body.page-copper-segment .value-chain-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-copper-segment .value-chain-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .value-chain-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      color: var(--black);
    }
    body.page-copper-segment .value-chain-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 680px;
    }

    /* Flow Diagram */
    body.page-copper-segment .flow-diagram {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: flex;
      align-items: stretch;
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    body.page-copper-segment .flow-step {
      flex: 1;
      min-width: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }
    body.page-copper-segment .flow-step-box {
      width: 100%;
      background: var(--off-white);
      border: 1.5px solid var(--light-gray);
      border-radius: 4px;
      padding: 24px 16px 20px;
      text-align: center;
      position: relative;
      transition: border-color var(--transition), background var(--transition);
    }
    body.page-copper-segment .flow-step-box:hover {
      border-color: var(--copper);
      background: var(--white);
    }
    body.page-copper-segment .flow-step.highlight .flow-step-box {
      background: var(--black);
      border-color: var(--copper);
    }
    body.page-copper-segment .flow-step-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 12px;
      color: var(--copper);
    }
    body.page-copper-segment .flow-step.highlight .flow-step-icon {
      color: var(--copper);
    }
    body.page-copper-segment .flow-step-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      display: block;
    }
    body.page-copper-segment .flow-step.highlight .flow-step-title {
      color: var(--white);
    }
    body.page-copper-segment .flow-step-sub {
      font-size: 10px;
      color: var(--mid-gray);
      margin-top: 5px;
      line-height: 1.4;
      display: block;
    }
    body.page-copper-segment .flow-step.highlight .flow-step-sub {
      color: rgba(255,255,255,0.6);
    }
    body.page-copper-segment .flow-arrow {
      display: flex;
      align-items: center;
      padding: 0 6px;
      color: var(--copper);
      flex-shrink: 0;
      align-self: center;
    }
    body.page-copper-segment .flow-arrow svg {
      width: 22px;
      height: 22px;
    }

    /* Value chain description boxes below */
    body.page-copper-segment .value-chain-desc {
      max-width: var(--max-width);
      margin: 56px auto 0;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    body.page-copper-segment .vcd-box {
      background: var(--off-white);
      border-left: 3px solid var(--copper);
      padding: 28px 28px 26px;
    }
    body.page-copper-segment .vcd-box h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 10px;
    }
    body.page-copper-segment .vcd-box p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- MARKET FOCUS SECTION --- */
    body.page-copper-segment .market-focus-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-copper-segment .market-focus-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 56px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .market-focus-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--black);
    }
    body.page-copper-segment .market-focus-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 620px;
    }
    body.page-copper-segment .market-cards-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    body.page-copper-segment .market-card {
      background: var(--white);
      border-top: 3px solid var(--copper);
      padding: 40px 32px 36px;
      position: relative;
    }
    body.page-copper-segment .market-card-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--copper);
      background: var(--copper-20);
      padding: 5px 10px;
      border-radius: 2px;
      margin-bottom: 22px;
    }
    body.page-copper-segment .market-card-icon {
      width: 52px;
      height: 52px;
      background: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }
    body.page-copper-segment .market-card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--copper);
    }
    body.page-copper-segment .market-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin-bottom: 16px;
    }
    body.page-copper-segment .market-card p {
      font-size: 0.96rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 24px;
    }
    body.page-copper-segment .market-card-highlights {
      list-style: none;
      border-top: 1px solid var(--light-gray);
      padding-top: 20px;
    }
    body.page-copper-segment .market-card-highlights li {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--black);
      padding: 8px 0;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    body.page-copper-segment .market-card-highlights li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
    }

    /* --- STRATEGIC ADVANTAGES SECTION --- */
    body.page-copper-segment .strategic-section {
      background: var(--black);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-copper-segment .strategic-section::before {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--copper-20) 0%, transparent 70%);
      pointer-events: none;
    }
    body.page-copper-segment .strategic-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-copper-segment .strategic-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      color: var(--white);
    }
    body.page-copper-segment .strategic-section .section-header p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
      max-width: 560px;
    }
    body.page-copper-segment .advantages-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    body.page-copper-segment .advantage-card {
      background: var(--dark-gray);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: background var(--transition);
    }
    body.page-copper-segment .advantage-card:hover {
      background: #161616; /* slightly lighter than dark-gray for hover depth */
    }
    body.page-copper-segment .advantage-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--copper);
      transition: width 0.4s ease;
    }
    body.page-copper-segment .advantage-card:hover::before {
      width: 100%;
    }
    body.page-copper-segment .advantage-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--copper);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
    }
    body.page-copper-segment .advantage-icon {
      width: 56px;
      height: 56px;
      background: var(--copper-20);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    body.page-copper-segment .advantage-icon svg {
      width: 28px;
      height: 28px;
      color: var(--copper);
    }
    body.page-copper-segment .advantage-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    body.page-copper-segment .advantage-card p {
      font-size: 0.96rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.8;
    }

    /* --- CTA SECTION --- */
    body.page-copper-segment .cta-section {
      background: var(--copper);
      padding: 90px 0;
    }
    body.page-copper-segment .cta-section .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-copper-segment .cta-section-text h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 12px;
    }
    body.page-copper-segment .cta-section-text p {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
      max-width: 500px;
    }
    body.page-copper-segment .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--black);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 20px 44px;
      text-decoration: none;
      flex-shrink: 0;
      transition: background 0.25s ease, color 0.25s ease;
    }
    body.page-copper-segment .btn-white:hover {
      background: var(--black);
      color: var(--white);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1100px) {
      body.page-copper-segment .flow-step-box { padding: 18px 10px 16px; }
    }
    @media (max-width: 1024px) {
      body.page-copper-segment .market-cards-grid { grid-template-columns: 1fr 1fr; }
      body.page-copper-segment .advantages-grid { grid-template-columns: 1fr 1fr; }
      body.page-copper-segment .value-chain-desc { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      body.page-copper-segment .hero-stats-row { grid-template-columns: 1fr; border-top: none; }
      body.page-copper-segment .hero-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
      body.page-copper-segment .hero-stat-item:last-child { border-bottom: none; }
      body.page-copper-segment .market-cards-grid { grid-template-columns: 1fr; }
      body.page-copper-segment .advantages-grid { grid-template-columns: 1fr; }
      body.page-copper-segment .advantage-card { padding: 36px 28px; }
      body.page-copper-segment .cta-section .container-boxed { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 600px) {
      body.page-copper-segment .flow-diagram { flex-direction: column; align-items: stretch; }
      body.page-copper-segment .flow-arrow { transform: rotate(90deg); align-self: center; padding: 4px 0; }
      body.page-copper-segment .flow-step { min-width: unset; }
    }

/* ---------- PRODUCTS (page-products) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — PRODUCTS
       ============================================ */

    /* Page Hero */
    body.page-products .page-hero { background: #111; padding: 72px 0 64px; position: relative; overflow: hidden; }
    body.page-products .page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
    body.page-products .page-hero-inner { position: relative; z-index: 1; }
    body.page-products .page-hero .breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
    body.page-products .page-hero .breadcrumbs a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
    body.page-products .page-hero .breadcrumbs a:hover { color: var(--copper); }
    body.page-products .page-hero .breadcrumbs .sep { color: rgba(255,255,255,0.15); }
    body.page-products .page-hero .breadcrumbs .current { color: rgba(255,255,255,0.55); }
    body.page-products .page-hero .section-label { color: var(--copper); margin-bottom: 16px; }
    body.page-products .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 18px; max-width: 680px; }
    body.page-products .page-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 560px; margin-bottom: 44px; }
    body.page-products .page-hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
    body.page-products .page-hero-stat { display: flex; flex-direction: column; gap: 3px; }
    body.page-products .page-hero-stat .sv { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
    body.page-products .page-hero-stat .sk { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    body.page-products .hero-stat-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

    /* Catalog Section */
    body.page-products .catalog-section { background: #f5f3ef; padding: 44px 0 80px; }

    /* Mobile filter toggle */
    body.page-products .mobile-filter-toggle {
      display: none;
      width: 100%;
      padding: 13px 18px;
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-left: 3px solid var(--copper);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
      cursor: pointer;
      align-items: center;
      justify-content: space-between;
      font-family: inherit;
      margin-bottom: 16px;
    }
    body.page-products .mobile-filter-toggle .toggle-badge {
      display: none;
      align-items: center;
      justify-content: center;
      background: var(--copper);
      color: #fff;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 10px;
      margin-left: 6px;
    }
    body.page-products .mobile-filter-toggle .toggle-badge.visible { display: inline-flex; }
    body.page-products .toggle-icon { font-size: 20px; line-height: 1; color: var(--copper); }

    /* Layout */
    body.page-products .catalog-layout { display: grid; grid-template-columns: 252px 1fr; gap: 28px; align-items: start; }

    /* Sidebar */
    body.page-products .filter-sidebar {
      background: var(--white);
      border: 1px solid var(--light-gray);
      position: sticky;
      top: calc(var(--nav-height) + 20px);
      max-height: calc(100vh - var(--nav-height) - 44px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #ddd transparent;
    }
    body.page-products .filter-sidebar::-webkit-scrollbar { width: 4px; }
    body.page-products .filter-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
    body.page-products .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid var(--light-gray);
      position: sticky;
      top: 0;
      background: var(--white);
      z-index: 2;
    }
    body.page-products .sidebar-title-text { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); }
    body.page-products .sidebar-clear-all { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); background: none; border: none; cursor: pointer; padding: 0; font-family: inherit; display: none; }
    body.page-products .sidebar-clear-all.visible { display: block; }
    /* Drawer close button — mobile only (shown in the ≤900px block). */
    body.page-products .sidebar-close { display: none; background: none; border: none; cursor: pointer; font-size: 28px; line-height: 1; color: var(--black); padding: 0 2px; font-family: inherit; }
    /* Drawer backdrop — only active on mobile. */
    body.page-products .filter-backdrop { display: none; }

    body.page-products .filter-group { padding: 16px 18px; border-bottom: 1px solid #f0ede8; }
    body.page-products .filter-group:last-child { border-bottom: none; }
    body.page-products .filter-group-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 10px; }

    body.page-products .filter-item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 4px 0;
      cursor: pointer;
      font-size: 13px;
      color: #444;
      transition: color 0.15s;
      line-height: 1.3;
      user-select: none;
    }
    body.page-products .filter-item:hover { color: var(--copper); }
    body.page-products .filter-item input[type="radio"], 
    body.page-products .filter-item input[type="checkbox"] {
      width: 14px; height: 14px;
      accent-color: var(--copper);
      cursor: pointer;
      flex-shrink: 0;
      margin: 0;
    }
    body.page-products .filter-count { margin-left: auto; font-size: 11px; color: #bbb; flex-shrink: 0; min-width: 16px; text-align: right; }
    body.page-products .filter-sizes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

    /* Category-scoped filter groups (hidden unless their category is active) */
    body.page-products .filter-group-hidden { display: none; }

    /* "View more" for long filter groups */
    body.page-products .filter-item-collapsed { display: none; }
    body.page-products .filter-view-more {
      background: none;
      border: none;
      padding: 6px 0 2px;
      margin-top: 2px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      color: var(--copper);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    body.page-products .filter-view-more:hover { text-decoration: underline; }
    body.page-products .filter-view-more::after { content: "▾"; font-size: 10px; line-height: 1; }
    body.page-products .filter-view-more.is-expanded::after { content: "▴"; }

    /* Active filters bar */
    body.page-products .active-filters-bar {
      display: none;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-bottom: 16px;
      padding: 10px 14px;
      background: rgba(186,124,0,0.05);
      border: 1px solid rgba(186,124,0,0.18);
      border-left: 3px solid var(--copper);
    }
    body.page-products .active-filters-bar.has-filters { display: flex; }
    body.page-products .af-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); }
    body.page-products .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(186,124,0,0.1);
      border: 1px solid rgba(186,124,0,0.28);
      color: var(--copper);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 3px 9px 3px 10px;
      cursor: pointer;
      transition: background 0.15s;
      font-family: inherit;
    }
    body.page-products .filter-chip:hover { background: rgba(186,124,0,0.2); }
    body.page-products .filter-chip .chip-x { font-size: 15px; line-height: 1; opacity: 0.55; font-weight: 400; }
    body.page-products .af-clear-all {
      margin-left: auto;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--copper);
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      white-space: nowrap;
      padding: 0;
      flex-shrink: 0;
    }

    /* Category Banner */
    body.page-products .category-banner {
      display: none;
      border: 1px solid var(--light-gray);
      border-left: 3px solid var(--copper);
      background: var(--white);
      margin-bottom: 20px;
      overflow: hidden;
    }
    body.page-products .category-banner.visible {
      display: block;
      animation: bannerIn 0.28s ease;
    }
    /* NOTE: @keyframes are global — name kept unique on purpose. */
    @keyframes bannerIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
    body.page-products .category-banner-inner {
      display: grid;
      grid-template-columns: 1fr 148px;
      gap: 20px;
      align-items: center;
      padding: 20px 24px;
    }
    body.page-products .cat-banner-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 4px; display: block; }
    body.page-products .cat-banner-title { font-size: 1.2rem; color: var(--black); margin: 0 0 5px; line-height: 1.2; }
    body.page-products .cat-banner-desc { font-size: 12.5px; color: var(--mid-gray); line-height: 1.6; margin: 0; }
    body.page-products .cat-banner-img { width: 148px; height: 92px; object-fit: contain; filter: drop-shadow(0 4px 18px rgba(186,124,0,0.14)); display: block; }

    /* Results bar */
    body.page-products .results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
    body.page-products .results-count { font-size: 12px; color: var(--mid-gray); letter-spacing: 0.05em; }
    body.page-products .results-count strong { color: var(--black); }
    body.page-products .sort-wrap { display: flex; align-items: center; gap: 8px; }
    body.page-products .sort-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); white-space: nowrap; }
    body.page-products .sort-select {
      height: 32px;
      padding: 0 28px 0 11px;
      border: 1px solid var(--light-gray);
      background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
      -webkit-appearance: none;
      appearance: none;
      font-size: 12px;
      font-family: inherit;
      color: var(--black);
      cursor: pointer;
      transition: border-color var(--transition);
    }
    body.page-products .sort-select:focus { outline: none; border-color: var(--copper); }

    /* Products Grid */
    body.page-products .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    /* Product Card */
    body.page-products .product-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.24s, transform 0.24s, border-color 0.24s;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
    }
    body.page-products .product-card:hover { box-shadow: 0 8px 30px rgba(186,124,0,0.13); transform: translateY(-3px); border-color: rgba(186,124,0,0.45); }
    body.page-products .product-card-img {
      background: #f8f6f2;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    body.page-products .product-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform 0.38s; }
    body.page-products .product-card:hover .product-card-img img { transform: scale(1.06); }
    body.page-products .product-card-badge {
      position: absolute;
      top: 10px; left: 10px;
      background: var(--copper);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
    }
    body.page-products .product-card-body { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; }
    body.page-products .product-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); margin-bottom: 5px; }
    body.page-products .product-card-title { font-size: 0.9rem; font-weight: 700; color: var(--dark-gray); line-height: 1.3; margin: 0 0 10px; }
    body.page-products .product-card-specs { list-style: none; padding: 0; margin: 0 0 12px; flex: 1; }
    body.page-products .product-card-specs li { font-size: 11px; color: var(--mid-gray); padding: 2px 0; display: flex; align-items: center; gap: 6px; }
    body.page-products .product-card-specs li::before { content: ''; display: block; width: 3px; height: 3px; background: var(--copper); border-radius: 50%; flex-shrink: 0; }
    body.page-products .product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--light-gray); margin-top: auto; }
    body.page-products .product-card-std { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mid-gray); }
    body.page-products .product-card-arrow { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper); transition: gap var(--transition); flex-shrink: 0; }
    body.page-products .product-card:hover .product-card-arrow { gap: 9px; }

    /* No results */
    body.page-products .no-results { display: none; grid-column: 1/-1; text-align: center; padding: 60px 20px; }
    body.page-products .no-results.visible { display: block; }
    body.page-products .no-results h3 { font-size: 1.05rem; margin: 0 0 8px; color: var(--black); }
    body.page-products .no-results p { font-size: 13.5px; color: var(--mid-gray); }

    /* Pagination */
    body.page-products .pagination { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 36px; flex-wrap: wrap; }
    body.page-products .page-btn {
      min-width: 38px; height: 38px; padding: 0 10px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--light-gray);
      background: var(--white);
      color: var(--mid-gray);
      font-size: 13px; font-weight: 600;
      cursor: pointer;
      transition: all 0.15s;
      font-family: inherit;
    }
    body.page-products .page-btn:hover:not(:disabled) { border-color: var(--copper); color: var(--copper); }
    body.page-products .page-btn.active { background: var(--copper); border-color: var(--copper); color: #fff; }
    body.page-products .page-btn:disabled { opacity: 0.3; cursor: default; }
    body.page-products .page-ellipsis { min-width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--mid-gray); font-size: 14px; }

    /* Responsive */
    @media (max-width: 1100px) {
      body.page-products .catalog-layout { grid-template-columns: 220px 1fr; gap: 20px; }
    }
    @media (max-width: 900px) {
      body.page-products .catalog-layout { grid-template-columns: 1fr; }
      body.page-products .mobile-filter-toggle { display: flex; }
      body.page-products .products-grid { grid-template-columns: repeat(2, 1fr); }

      /* Off-canvas drawer sliding in from the right. */
      body.page-products .filter-sidebar {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(360px, 86vw);
        max-height: none;
        margin: 0;
        border: none;
        border-left: 3px solid var(--copper);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 1200;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      body.page-products .filter-sidebar.mobile-open { transform: translateX(0); }
      body.page-products .sidebar-close { display: inline-flex; align-items: center; }

      /* Dim the page behind the drawer. */
      body.page-products .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1199;
      }
      body.page-products .filter-backdrop.is-visible { opacity: 1; visibility: visible; }
    }
    @media (max-width: 768px) {
      body.page-products .page-hero { padding: 50px 0 40px; }
      body.page-products .category-banner-inner { grid-template-columns: 1fr; }
      body.page-products .cat-banner-img { display: none; }
      body.page-products .page-hero-stats { gap: 16px; }
    }
    @media (max-width: 520px) {
      body.page-products .products-grid { grid-template-columns: 1fr; }
      body.page-products .hero-stat-sep { display: none; }
    }

/* ---------- SINGLE PRODUCT (page-single-product) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — SINGLE PRODUCT
       ============================================ */

    /* Breadcrumb */
    body.page-single-product .breadcrumb-bar {
      background: #fff;
      border-bottom: 1px solid var(--light-gray);
      padding: 12px 0;
    }
    body.page-single-product .breadcrumb-bar .container-boxed {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }
    body.page-single-product .breadcrumb-bar a {
      color: var(--mid-gray);
      font-size: 11px;
      text-decoration: none;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      transition: color var(--transition);
    }
    body.page-single-product .breadcrumb-bar a:hover { color: var(--copper); }
    body.page-single-product .breadcrumb-sep {
      color: rgba(0,0,0,0.2);
      margin: 0 8px;
      font-size: 10px;
      display: flex;
      align-items: center;
    }
    body.page-single-product .breadcrumb-current {
      color: var(--black);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    /* Sticky anchor nav */
    body.page-single-product .product-anchor-nav {
      background: #fff;
      border-bottom: 1px solid var(--light-gray);
      position: sticky;
      top: var(--nav-height);
      z-index: 40;
    }
    body.page-single-product .product-anchor-nav .container-boxed {
      display: flex;
      align-items: center;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    body.page-single-product .product-anchor-nav .container-boxed::-webkit-scrollbar { display: none; }
    body.page-single-product .anchor-link {
      display: flex;
      align-items: center;
      padding: 13px 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      text-decoration: none;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color 0.15s, border-color 0.15s;
      margin-bottom: -1px;
    }
    body.page-single-product .anchor-link:hover { color: var(--copper); border-bottom-color: var(--copper); }
    body.page-single-product .anchor-link.active { color: var(--copper); border-bottom-color: var(--copper); }

    /* ── Product Hero ── */
    body.page-single-product .single-product-hero {
      background: #fff;
      padding: 50px 0 64px;
    }
    body.page-single-product .single-product-hero .container-boxed {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 40px;
    }
    body.page-single-product .single-product-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: start;
    }

    /* Product Images */
    body.page-single-product .product-main-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #f8f6f2;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border: 1px solid #ede9e0;
    }
    body.page-single-product .product-main-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 20px;
      transition: transform 0.4s ease;
    }
    body.page-single-product .product-main-img img:hover { transform: scale(1.03); }
    body.page-single-product .product-thumb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    body.page-single-product .product-thumb {
      aspect-ratio: 1;
      background: #f8f6f2;
      border: 2px solid transparent;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body.page-single-product .product-thumb:hover, 
    body.page-single-product .product-thumb.active {
      border-color: #ba7c00;
      transform: translateY(-2px);
    }
    body.page-single-product .product-thumb img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 8px;
    }

    /* Gallery: zoom affordance + prev/next arrows */
    body.page-single-product .product-main-img { position: relative; }
    body.page-single-product .product-main-img.is-zoomable { cursor: zoom-in; }
    body.page-single-product .product-main-img.is-zoomable:focus-visible { outline: 2px solid #ba7c00; outline-offset: 2px; }
    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
      transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
      z-index: 2;
    }
    .gallery-nav:hover { background: #ba7c00; color: #fff; }
    .gallery-prev { left: 12px; }
    .gallery-next { right: 12px; }
    .gallery-zoom-badge {
      position: absolute;
      right: 12px;
      bottom: 12px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(20, 20, 20, 0.55);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 2;
    }

    /* Lightbox (click-to-view) */
    .gcm-lightbox {
      position: fixed;
      inset: 0;
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 40px;
      background: rgba(12, 12, 12, 0.92);
    }
    .gcm-lightbox.is-open { display: flex; }
    .gcm-lb-figure {
      margin: 0;
      max-width: 90vw;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .gcm-lb-img {
      max-width: 88vw;
      max-height: 78vh;
      object-fit: contain;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    }
    .gcm-lb-caption {
      color: #f5f3ee;
      font-size: 13px;
      letter-spacing: 0.04em;
      text-align: center;
    }
    .gcm-lb-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .gcm-lb-close:hover { background: #ba7c00; }
    .gcm-lb-nav {
      flex: 0 0 auto;
      width: 52px;
      height: 52px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.25s ease;
    }
    .gcm-lb-nav:hover { background: #ba7c00; }
    /* Mobile: hide the prev/next arrows — users swipe with a finger instead. */
    @media (max-width: 768px) {
      body.page-single-product .gallery-nav { display: none !important; }
      body.page-single-product .product-main-img.is-zoomable { cursor: pointer; }
      .gcm-lightbox .gcm-lb-nav { display: none !important; }
    }
    @media (max-width: 600px) {
      .gcm-lightbox { padding: 16px; }
      .gcm-lb-nav { width: 42px; height: 42px; font-size: 24px; }
      .gcm-lb-close { top: 12px; right: 12px; }
    }

    /* Product Info */
    body.page-single-product .product-tag {
      display: inline-block;
      background: #ba7c00;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      padding: 5px 14px;
      border-radius: 2px;
      margin-bottom: 18px;
      text-transform: uppercase;
    }
    body.page-single-product .product-info-col h1 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #111;
      line-height: 1.15;
      margin: 0 0 22px;
      letter-spacing: -0.01em;
    }
    body.page-single-product .product-description p {
      color: #444;
      font-size: 15px;
      line-height: 1.75;
      margin-bottom: 14px;
    }

    /* Spec Table */
    body.page-single-product .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0 30px;
      border: 1px solid #e8e3d8;
      border-left: 3px solid #ba7c00;
    }
    body.page-single-product .spec-table .spec-row td {
      padding: 10px 16px;
      border-bottom: 1px solid #edeae4;
      vertical-align: middle;
    }
    body.page-single-product .spec-table .spec-row:last-child td { border-bottom: none; }
    body.page-single-product .spec-row td:first-child {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid-gray);
      width: 36%;
      background: #faf8f4;
      border-right: 1px solid #e8e3d8;
      white-space: nowrap;
    }
    body.page-single-product .spec-row td:last-child {
      font-size: 13.5px;
      color: #111;
    }

    /* CTA Buttons */
    body.page-single-product .product-cta-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    body.page-single-product .btn-primary-copper {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ba7c00;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      border: 2px solid #ba7c00;
    }
    body.page-single-product .btn-primary-copper:hover {
      background: #9a6800;
      border-color: #9a6800;
      transform: translateY(-1px);
    }
    body.page-single-product .btn-outline-copper {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #ba7c00;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      border: 2px solid #ba7c00;
    }
    body.page-single-product .btn-outline-copper:hover {
      background: #ba7c00;
      color: #fff;
      transform: translateY(-1px);
    }

    /* ── Technical Specs Section ── */
    body.page-single-product .tech-specs-section {
      background: #f7f5f1;
      padding: 80px 0;
      border-top: 1px solid #e8e3d8;
    }
    body.page-single-product .section-header-block {
      margin-bottom: 40px;
    }
    body.page-single-product .section-label-line {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }
    body.page-single-product .section-label-line .label-dash {
      display: block;
      width: 36px;
      height: 2px;
      background: #ba7c00;
    }
    body.page-single-product .section-label-line span {
      color: #ba7c00;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    body.page-single-product .section-header-block h2 {
      font-size: clamp(1.6rem, 2.8vw, 2.2rem);
      font-weight: 700;
      color: #111;
      margin: 0 0 12px;
    }
    body.page-single-product .section-header-block p {
      color: #666;
      font-size: 15px;
      line-height: 1.65;
      max-width: 560px;
    }

    body.page-single-product .specs-full-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border: 1px solid #e8e3d8;
      font-size: 14px;
    }
    body.page-single-product .specs-full-table thead tr {
      background: #111;
    }
    body.page-single-product .specs-full-table thead th {
      color: #fff;
      font-weight: 700;
      padding: 14px 20px;
      text-align: left;
      letter-spacing: 0.04em;
      font-size: 13px;
      border-right: 1px solid #333;
    }
    body.page-single-product .specs-full-table thead th:last-child { border-right: none; }
    body.page-single-product .specs-full-table tbody tr {
      border-bottom: 1px solid #eee;
      transition: background 0.15s;
    }
    body.page-single-product .specs-full-table tbody tr:hover { background: #faf7f2; }
    body.page-single-product .specs-full-table tbody tr:last-child { border-bottom: none; }
    body.page-single-product .specs-full-table tbody td {
      padding: 13px 20px;
      color: #444;
      border-right: 1px solid #f0ede6;
      text-align: center;
    }
    body.page-single-product .specs-full-table tbody td:first-child {
      font-weight: 700;
      color: #111;
      text-align: left;
      border-left: 3px solid #ba7c00;
    }
    body.page-single-product .specs-full-table tbody td:last-child { border-right: none; }

    /* ── Applications Section ── */
    body.page-single-product .applications-section {
      background: #111;
      padding: 80px 0;
    }
    body.page-single-product .applications-section .section-label-line span { color: #ba7c00; }
    body.page-single-product .applications-section .section-label-line .label-dash { background: #ba7c00; }
    body.page-single-product .applications-section h2 {
      color: #fff;
    }
    body.page-single-product .applications-section .section-header-block p {
      color: #aaa;
    }
    body.page-single-product .application-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 32px 0 30px;
    }
    body.page-single-product .application-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(186,124,0,0.12);
      border: 1px solid rgba(186,124,0,0.4);
      color: #e8b84b;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 10px 22px;
      border-radius: 100px;
      text-transform: uppercase;
      transition: background 0.2s, border-color 0.2s;
    }
    body.page-single-product .application-pill:hover {
      background: rgba(186,124,0,0.22);
      border-color: #ba7c00;
    }
    body.page-single-product .application-pill .pill-dot {
      width: 7px;
      height: 7px;
      background: #ba7c00;
      border-radius: 50%;
      flex-shrink: 0;
    }
    body.page-single-product .applications-desc {
      color: #bbb;
      font-size: 15px;
      line-height: 1.75;
      max-width: 680px;
      margin: 0;
    }

    /* ── Related Products ── */
    body.page-single-product .related-products-section {
      background: #fff;
      padding: 80px 0;
      border-top: 1px solid #eee;
    }
    body.page-single-product .related-products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 40px;
    }
    body.page-single-product .related-product-card {
      background: #faf8f4;
      border: 1px solid #ede9e0;
      border-radius: 4px;
      overflow: hidden;
      text-decoration: none;
      display: block;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    body.page-single-product .related-product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(186,124,0,0.12);
      border-color: #ba7c00;
    }
    body.page-single-product .related-card-img {
      aspect-ratio: 16/9;
      background: #f0ece2;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    body.page-single-product .related-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 20px;
      transition: transform 0.35s;
    }
    body.page-single-product .related-product-card:hover .related-card-img img { transform: scale(1.05); }
    body.page-single-product .related-card-body {
      padding: 22px 24px 26px;
    }
    body.page-single-product .related-card-tag {
      font-size: 11px;
      color: #ba7c00;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }
    body.page-single-product .related-card-body h3 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin: 0 0 10px;
      line-height: 1.3;
    }
    body.page-single-product .related-card-body p {
      font-size: 13.5px;
      color: #666;
      line-height: 1.6;
      margin: 0 0 18px;
    }
    body.page-single-product .related-card-link {
      font-size: 12px;
      font-weight: 700;
      color: #ba7c00;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    body.page-single-product .related-card-link svg { transition: transform 0.2s; }
    body.page-single-product .related-product-card:hover .related-card-link svg { transform: translateX(4px); }

    /* ── Full Catalog CTA ── */
    body.page-single-product .catalog-cta-section {
      background: #ba7c00;
      padding: 60px 0;
    }
    body.page-single-product .catalog-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }
    body.page-single-product .catalog-cta-inner h2 {
      color: #fff;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      margin: 0;
      font-weight: 700;
    }
    body.page-single-product .catalog-cta-inner p {
      color: rgba(255,255,255,0.82);
      font-size: 15px;
      margin: 8px 0 0;
    }
    body.page-single-product .btn-catalog-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: #ba7c00;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 2px;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      flex-shrink: 0;
    }
    body.page-single-product .btn-catalog-white:hover {
      background: #111;
      color: #fff;
      transform: translateY(-2px);
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      body.page-single-product .single-product-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      body.page-single-product .product-images-col { max-width: 540px; }
      body.page-single-product .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      body.page-single-product .product-anchor-nav { top: var(--nav-height-mobile); }
      body.page-single-product .single-product-hero { padding: 36px 0 48px; }
      body.page-single-product .single-product-hero .container-boxed { padding: 0 20px; }
      body.page-single-product .tech-specs-section, 
      body.page-single-product .applications-section, 
      body.page-single-product .related-products-section { padding: 56px 0; }
      body.page-single-product .product-thumb-grid { grid-template-columns: repeat(4, 1fr); }
      body.page-single-product .related-products-grid { grid-template-columns: 1fr; }
      body.page-single-product .catalog-cta-inner { flex-direction: column; text-align: center; }
      body.page-single-product .specs-full-table { font-size: 12px; }
      body.page-single-product .specs-full-table thead th, 
      body.page-single-product .specs-full-table tbody td { padding: 10px 12px; }
    }
    @media (max-width: 480px) {
      body.page-single-product .product-cta-buttons { flex-direction: column; }
      body.page-single-product .btn-primary-copper, 
      body.page-single-product .btn-outline-copper { justify-content: center; }
      body.page-single-product .application-pills { gap: 8px; }
    }

/* ---------- APPLICATIONS (page-applications) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — APPLICATIONS
       ============================================ */

    /* --- HERO --- */
    body.page-applications .hero-applications {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--black);
    }
    body.page-applications .hero-applications .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-applications .hero-applications .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-applications .hero-applications .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.18) 100%);
      z-index: 1;
    }
    body.page-applications .hero-applications .hero-text {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-applications .hero-applications h1 {
      font-size: clamp(2.4rem, 5.5vw, 4.5rem);
      color: var(--white);
      line-height: 1.06;
      letter-spacing: -0.018em;
      max-width: 800px;
      margin-bottom: 20px;
    }
    body.page-applications .hero-applications p.hero-sub {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      max-width: 580px;
    }
    body.page-applications .hero-copper-line {
      width: 64px;
      height: 3px;
      background: var(--copper);
      margin-bottom: 28px;
    }

    /* --- APPLICATIONS SECTION --- */
    body.page-applications .applications-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-applications .applications-intro {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-applications .label-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 16px;
    }
    body.page-applications .applications-intro h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.15;
      max-width: 600px;
      margin-bottom: 18px;
    }
    body.page-applications .applications-intro p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 560px;
    }

    /* --- APPLICATIONS GRID --- */
    body.page-applications .applications-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    body.page-applications .app-card {
      position: relative;
      overflow: hidden;
      background: var(--white);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    body.page-applications .app-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.13);
    }

    body.page-applications .app-card-image {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
      background: var(--dark-gray);
    }
    body.page-applications .app-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }
    body.page-applications .app-card:hover .app-card-image img {
      transform: scale(1.06);
    }
    body.page-applications .app-card-image .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
      z-index: 1;
    }
    body.page-applications .app-card-number {
      position: absolute;
      top: 18px;
      left: 20px;
      z-index: 2;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.7);
    }

    body.page-applications .app-card-body {
      padding: 28px 28px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
      border-top: 3px solid transparent;
      transition: border-color 0.3s ease;
    }
    body.page-applications .app-card:hover .app-card-body {
      border-top-color: var(--copper);
    }
    body.page-applications .app-card-body h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }
    body.page-applications .app-card:hover .app-card-body h3 {
      color: var(--copper);
    }
    body.page-applications .app-card-body p {
      font-size: 0.93rem;
      color: var(--mid-gray);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 22px;
    }
    body.page-applications .app-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--copper);
      text-decoration: none;
      transition: gap 0.25s ease;
    }
    body.page-applications .app-card-link:hover { gap: 14px; }
    body.page-applications .app-card-link svg { transition: transform 0.25s ease; }
    body.page-applications .app-card-link:hover svg { transform: translateX(4px); }

    /* --- WHY COPPER SECTION --- */
    body.page-applications .why-copper-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-applications .why-copper-header {
      max-width: var(--max-width);
      margin: 0 auto 64px;
      padding: 0 var(--gutter);
      text-align: center;
    }
    body.page-applications .why-copper-header h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    body.page-applications .why-copper-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto;
    }

    body.page-applications .copper-benefits-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    body.page-applications .benefit-card {
      padding: 40px 36px;
      border: 1px solid var(--light-gray);
      background: var(--off-white);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    body.page-applications .benefit-card:hover {
      border-color: var(--copper);
      box-shadow: 0 12px 40px var(--copper-20);
    }
    body.page-applications .benefit-icon {
      width: 54px;
      height: 54px;
      background: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
    }
    body.page-applications .benefit-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 14px;
    }
    body.page-applications .benefit-card p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- BOTTOM BANNER CTA --- */
    /* background, typography, btn-white, and layout are inherited from main.css .bottom-banner */

    /* --- SVG COPPER COLOR OVERRIDE (uses CSS var instead of hardcoded hex) --- */
    body.page-applications .app-card-link svg path, 
    body.page-applications .benefit-icon svg path {
      stroke: var(--copper);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-applications .applications-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-applications .copper-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body.page-applications .hero-applications { height: 70vh; min-height: 440px; }
      body.page-applications .applications-grid { grid-template-columns: 1fr; }
      body.page-applications .copper-benefits-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      body.page-applications .app-card-image { height: 200px; }
      body.page-applications .benefit-card { padding: 30px 24px; }
    }

/* ---------- QUALITY (page-quality) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — QUALITY
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-quality .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-quality .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-quality .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-quality .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.15) 100%);
      z-index: 1;
    }
    body.page-quality .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-quality .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 800px;
    }

    /* --- QUALITY INTRO SECTION --- */
    body.page-quality .quality-intro-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-quality .quality-intro-section .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    body.page-quality .quality-intro-section .col-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
      line-height: 1.1;
    }
    body.page-quality .quality-intro-section .col-text p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 18px;
    }
    body.page-quality .quality-intro-section .col-text p:last-child { margin-bottom: 0; }
    body.page-quality .quality-intro-section .col-visual {
      position: relative;
    }
    body.page-quality .quality-intro-section .col-visual img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }
    body.page-quality .quality-intro-section .col-visual::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      width: 120px;
      height: 120px;
      border-top: 4px solid var(--copper);
      border-left: 4px solid var(--copper);
      z-index: 1;
    }
    body.page-quality .quality-intro-section .col-visual::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      border-bottom: 4px solid var(--copper);
      border-right: 4px solid var(--copper);
      z-index: 1;
    }

    /* --- QUALITY PILLARS SECTION --- */
    body.page-quality .quality-pillars-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-quality .quality-pillars-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-quality .quality-pillars-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-quality .quality-pillars-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 560px;
    }
    body.page-quality .quality-pillars-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }
    body.page-quality .pillar-card {
      background: var(--white);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    body.page-quality .pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--copper);
      transition: height 0.4s ease;
    }
    body.page-quality .pillar-card:hover::before { height: 100%; }
    body.page-quality .pillar-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }
    body.page-quality .pillar-card .pillar-number {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--copper);
      display: block;
      margin-bottom: 24px;
    }
    body.page-quality .pillar-card .pillar-icon {
      width: 56px;
      height: 56px;
      margin-bottom: 24px;
      color: var(--copper);
    }
    body.page-quality .pillar-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 16px;
    }
    body.page-quality .pillar-card p {
      font-size: 0.97rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }
    body.page-quality .pillar-card ul {
      list-style: none;
      margin-top: 18px;
    }
    body.page-quality .pillar-card ul li {
      font-size: 0.92rem;
      color: var(--mid-gray);
      line-height: 1.6;
      padding: 6px 0;
      border-bottom: 1px solid var(--light-gray);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    body.page-quality .pillar-card ul li:last-child { border-bottom: none; }
    body.page-quality .pillar-card ul li::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--copper);
      flex-shrink: 0;
      margin-top: 6px;
    }

    /* --- STANDARDS & CERTIFICATIONS SECTION --- */
    body.page-quality .standards-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-quality .standards-section .inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-quality .standards-section .section-header {
      margin-bottom: 60px;
    }
    body.page-quality .standards-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-quality .standards-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 580px;
    }
    body.page-quality .standards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid var(--light-gray);
    }
    body.page-quality .standard-card {
      padding: 36px 32px;
      border-right: 1px solid var(--light-gray);
      border-bottom: 1px solid var(--light-gray);
      position: relative;
      transition: background var(--transition), border-color var(--transition);
    }
    body.page-quality .standard-card:hover { background: var(--off-white); border-color: var(--copper); }
    body.page-quality .standard-card:nth-child(3n) { border-right: none; }
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n+1), 
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n+2), 
    body.page-quality .standard-card:nth-last-child(-n+3):nth-child(3n) { border-bottom: none; }
    body.page-quality .standard-card .std-code {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.01em;
      display: block;
      margin-bottom: 8px;
    }
    body.page-quality .standard-card h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 10px;
    }
    body.page-quality .standard-card p {
      font-size: 0.9rem;
      color: var(--mid-gray);
      line-height: 1.65;
    }
    body.page-quality .standard-card .std-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--copper-20);
      color: var(--copper);
      padding: 4px 10px;
      border-radius: 2px;
    }
    body.page-quality .standards-footer-note {
      margin-top: 40px;
    }
    body.page-quality .standards-footer-note p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.65;
    }
    body.page-quality .standards-footer-note a {
      color: var(--copper);
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid var(--copper);
      transition: opacity 0.2s ease;
    }
    body.page-quality .standards-footer-note a:hover { opacity: 0.75; }

    /* --- STATS SECTION --- */
    body.page-quality .stats-section {
      background: var(--black);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-quality .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-quality .stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    body.page-quality .stat-item:last-child { border-right: none; }
    body.page-quality .stat-number {
      display: block;
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-quality .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* --- BOTTOM BANNER CTA — styles inherited from main.css .bottom-banner --- */

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-quality .quality-intro-section .inner { grid-template-columns: 1fr; gap: 48px; }
      body.page-quality .quality-intro-section .col-visual { display: none; }
      body.page-quality .quality-pillars-grid { grid-template-columns: 1fr; }
      body.page-quality .standards-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-quality .standards-grid .standard-card:nth-child(3n) { border-right: 1px solid var(--light-gray); }
      body.page-quality .standards-grid .standard-card:nth-child(2n) { border-right: none; }
      body.page-quality .stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-quality .stat-item:nth-child(2) { border-right: none; }
      body.page-quality .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
    }
    @media (max-width: 768px) {
      body.page-quality .hero-image-comp { min-height: 480px; }
      body.page-quality .pillar-card { padding: 36px 28px; }
      body.page-quality .standards-grid { grid-template-columns: 1fr; }
      body.page-quality .standards-grid .standard-card { border-right: none; }
    }
    @media (max-width: 480px) {
      body.page-quality .stats-grid { grid-template-columns: 1fr 1fr; }
    }

/* ---------- CERTIFICATES (page-certificates) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CERTIFICATES
       ============================================ */

    /* Dark Page Hero */
    body.page-certificates .page-hero {
      background: var(--dark-gray);
      padding: 72px 0 56px;
      position: relative;
      overflow: hidden;
    }
    body.page-certificates .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: rgba(255,255,255,0.06);
    }
    body.page-certificates .page-hero-inner { position: relative; z-index: 1; }
    body.page-certificates .page-hero .section-label { color: var(--copper); margin-bottom: 14px; }
    body.page-certificates .page-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      letter-spacing: -.01em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    body.page-certificates .page-hero-desc {
      font-size: 1rem;
      color: rgba(255,255,255,.5);
      line-height: 1.75;
      max-width: 540px;
    }

    /* Cert card extended classes (not yet in main.css) */
    body.page-certificates .cert-card-icon {
      flex-shrink: 0;
    }
    body.page-certificates .cert-card-body {
      flex: 1;
      min-width: 0;
    }
    body.page-certificates .cert-card-type {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 4px;
    }
    body.page-certificates .cert-card-title {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 6px;
      color: var(--black);
    }
    body.page-certificates .cert-card-desc {
      font-size: 0.825rem;
      color: var(--mid-gray);
      line-height: 1.6;
      margin-bottom: 8px;
    }
    body.page-certificates .cert-card-size {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--mid-gray);
    }
    body.page-certificates .cert-card-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex-shrink: 0;
    }
    body.page-certificates .cert-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 7px 14px;
      border: 1px solid var(--light-gray);
      color: var(--black);
      white-space: nowrap;
      transition: all var(--transition);
    }
    body.page-certificates .cert-action-btn.view:hover { background: var(--off-white); border-color: var(--copper); }
    body.page-certificates .cert-action-btn.download { background: var(--copper); border-color: var(--copper); color: var(--white); }
    body.page-certificates .cert-action-btn.download:hover { background: var(--dark-gray); border-color: var(--dark-gray); color: var(--white); }

    /* Enhanced cert card hover */
    body.page-certificates .cert-card {
      transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    body.page-certificates .cert-card:hover {
      border-color: var(--copper) !important;
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    }

    /* Certs layout with sidebar */
    body.page-certificates .certs-layout {
      display: flex;
      gap: 40px;
      align-items: flex-start;
    }
    body.page-certificates .certs-sidebar {
      flex-shrink: 0;
      width: 200px;
    }
    body.page-certificates .certs-sub-filters {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    body.page-certificates .cert-sub-filter-btn {
      padding: 10px 14px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: none;
      background: transparent;
      color: rgba(0,0,0,.38);
      cursor: pointer;
      text-align: left;
      transition: all var(--transition);
      border-left: 2px solid transparent;
    }
    body.page-certificates .cert-sub-filter-btn.active, 
    body.page-certificates .cert-sub-filter-btn:hover {
      color: var(--copper);
      border-left-color: var(--copper);
    }
    body.page-certificates .certs-grid--two-col {
      grid-template-columns: repeat(2, 1fr) !important;
      flex: 1;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      body.page-certificates .certs-grid--two-col { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 768px) {
      body.page-certificates .page-hero { padding: 50px 0 40px; }
      body.page-certificates .certs-layout { flex-direction: column; gap: 24px; }
      body.page-certificates .certs-sidebar { width: 100%; }
      body.page-certificates .certs-sub-filters { flex-direction: row; flex-wrap: wrap; }
      body.page-certificates .cert-sub-filter-btn { border-left: none; border-bottom: 2px solid transparent; }
      body.page-certificates .cert-sub-filter-btn.active, 
      body.page-certificates .cert-sub-filter-btn:hover { border-bottom-color: var(--copper); }
      body.page-certificates .cert-card.no-img { flex-direction: column; align-items: start; }
      body.page-certificates .cert-card-actions { flex-direction: row; }
    }

/* ---------- WORK CULTURE (page-work-culture) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — WORK CULTURE
       ============================================ */

    /* --- HERO IMAGE --- */
    body.page-work-culture .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--dark-gray);
    }
    body.page-work-culture .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-work-culture .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-work-culture .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-work-culture .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-work-culture .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }
    body.page-work-culture .hero-image-comp .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 18px;
    }

    /* --- INTRO TEXT SECTION --- */
    body.page-work-culture .intro-text-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-work-culture .intro-text-section .columns {
      display: flex;
      gap: 60px;
      align-items: flex-start;
      margin: 0; /* reset base .columns negative gutter so it respects .container-boxed padding */
    }
    body.page-work-culture .intro-text-section .col-heading {
      flex: 0 0 360px;
    }
    body.page-work-culture .intro-text-section .col-heading h1 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      line-height: 1.1;
      margin-bottom: 0;
    }
    body.page-work-culture .intro-text-section .col-body {
      flex: 1;
    }
    body.page-work-culture .intro-text-section .col-body p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.78;
      margin-bottom: 20px;
    }
    body.page-work-culture .intro-text-section .col-body p:last-child {
      margin-bottom: 0;
    }

    /* --- CULTURE STATS SECTION --- */
    body.page-work-culture .culture-stats-section {
      background: var(--white);
      border-top: 3px solid var(--copper);
      border-bottom: 3px solid var(--copper);
      padding: 70px 0;
    }
    body.page-work-culture .culture-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }
    body.page-work-culture .culture-stat-item {
      text-align: center;
      padding: 30px 20px;
      border-right: 1px solid var(--light-gray);
    }
    body.page-work-culture .culture-stat-item:last-child { border-right: none; }
    body.page-work-culture .stat-number {
      display: block;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--copper);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 12px;
    }
    body.page-work-culture .stat-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mid-gray);
    }

    /* --- CULTURE CONTENT SECTION (dark) --- */
    body.page-work-culture .culture-content-section {
      background: var(--black);
      padding: 100px 0;
    }
    body.page-work-culture .culture-content-section .columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin: 0; /* reset base .columns negative gutter so it respects .container-boxed padding */
    }
    body.page-work-culture .culture-content-section .col-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--white);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
      line-height: 1.1;
    }
    body.page-work-culture .culture-content-section .col-text p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    body.page-work-culture .culture-content-section .col-text p:last-child {
      margin-bottom: 0;
    }
    body.page-work-culture .culture-content-section .col-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap {
      overflow: hidden;
      border-radius: 2px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:first-child {
      grid-column: 1 / -1;
      height: 320px;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:not(:first-child) {
      height: 200px;
    }
    body.page-work-culture .culture-content-section .col-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    body.page-work-culture .culture-content-section .col-images .img-wrap:hover img {
      transform: scale(1.04);
    }

    /* --- CORE VALUES SECTION --- */
    body.page-work-culture .core-values-section {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-work-culture .core-values-section .section-header {
      max-width: var(--max-width);
      margin: 0 auto 60px;
      padding: 0 var(--gutter);
    }
    body.page-work-culture .core-values-section .section-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    body.page-work-culture .core-values-section .section-header p {
      font-size: 1.05rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }
    body.page-work-culture .values-grid {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    body.page-work-culture .value-card {
      background: var(--white);
      padding: 40px 32px;
      border-bottom: 3px solid transparent;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    body.page-work-culture .value-card:hover {
      border-color: var(--copper);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    body.page-work-culture .value-card .value-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 24px;
      color: var(--copper);
    }
    body.page-work-culture .value-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 14px;
    }
    body.page-work-culture .value-card p {
      font-size: 0.95rem;
      color: var(--mid-gray);
      line-height: 1.75;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-work-culture .intro-text-section .columns { flex-direction: column; gap: 32px; }
      body.page-work-culture .intro-text-section .col-heading { flex: none; }
      body.page-work-culture .culture-content-section .columns { grid-template-columns: 1fr; gap: 48px; }
      body.page-work-culture .culture-stats-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-work-culture .culture-stat-item:nth-child(2) { border-right: none; }
      body.page-work-culture .culture-stat-item:nth-child(3) { border-top: 1px solid var(--light-gray); }
      body.page-work-culture .values-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      body.page-work-culture .hero-image-comp { min-height: 480px; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:first-child { height: 240px; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:not(:first-child) { height: 160px; }
      body.page-work-culture .values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      body.page-work-culture .culture-stats-grid { grid-template-columns: 1fr 1fr; }
      body.page-work-culture .culture-content-section .col-images { grid-template-columns: 1fr; }
      body.page-work-culture .culture-content-section .col-images .img-wrap:first-child { grid-column: auto; }
    }

/* ---------- CAREERS (page-careers) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CAREERS
       ============================================ */

    /* --- HERO IMAGE COMPONENT --- */
    body.page-careers .hero-image-comp {
      position: relative;
      width: 100%;
      height: 65vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background-color: var(--black);
    }
    body.page-careers .hero-image-comp .image-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    body.page-careers .hero-image-comp .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    body.page-careers .hero-image-comp .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.12) 100%);
      z-index: 1;
    }
    body.page-careers .hero-image-comp .text-container {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 80px 0;
    }
    body.page-careers .hero-image-comp h1 {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -0.015em;
      max-width: 760px;
    }

    /* --- INTRO / JOIN OUR TEAM SECTION --- */
    body.page-careers .careers-intro {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-careers .careers-intro .intro-inner {
      max-width: 820px;
    }
    body.page-careers .careers-intro h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 28px;
    }
    body.page-careers .careers-intro p {
      font-size: 1.07rem;
      color: var(--mid-gray);
      line-height: 1.8;
      margin-bottom: 18px;
    }
    body.page-careers .careers-intro p:last-child { margin-bottom: 0; }

    /* --- VALUES GRID --- */
    body.page-careers .careers-values {
      background: var(--off-white);
      padding: 100px 0;
    }
    body.page-careers .careers-values .section-header {
      margin-bottom: 60px;
    }
    body.page-careers .careers-values .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-careers .careers-values .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 540px;
    }
    body.page-careers .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    body.page-careers .value-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-left: 3px solid transparent;
      padding: 36px 30px 38px;
      transition: box-shadow 0.24s, transform 0.24s, border-color 0.24s;
      display: flex;
      flex-direction: column;
    }
    body.page-careers .value-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.09);
      transform: translateY(-3px);
      border-left-color: var(--copper);
    }
    body.page-careers .card-num {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--copper);
      display: block;
      margin-bottom: 16px;
    }
    body.page-careers .value-card .card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(186,124,0,0.08);
      margin-bottom: 22px;
      flex-shrink: 0;
    }
    body.page-careers .value-card .card-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--copper);
      fill: none;
    }
    body.page-careers .value-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }
    body.page-careers .value-card p {
      font-size: 0.925rem;
      color: var(--mid-gray);
      line-height: 1.72;
      flex: 1;
    }

    /* --- OPEN POSITIONS SECTION --- */
    body.page-careers .jobs-section {
      background: var(--white);
      padding: 100px 0;
    }
    body.page-careers .jobs-section .section-header {
      margin-bottom: 56px;
    }
    body.page-careers .jobs-section .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--black);
      letter-spacing: -0.01em;
      margin-bottom: 14px;
    }
    body.page-careers .jobs-section .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      line-height: 1.7;
      max-width: 520px;
    }
    body.page-careers .jobs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    body.page-careers .job-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
      text-decoration: none;
    }
    body.page-careers .job-card:hover {
      border-color: var(--copper);
      background: var(--black);
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
    body.page-careers .job-card-info {
      flex: 1;
    }
    body.page-careers .job-card-department {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 10px;
    }
    body.page-careers .job-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.005em;
      margin-bottom: 14px;
      transition: color var(--transition);
    }
    body.page-careers .job-card:hover .job-card-title {
      color: var(--white);
    }
    body.page-careers .job-card:hover .job-meta-item {
      color: rgba(255,255,255,0.6);
    }
    body.page-careers .job-card:hover .job-meta-item svg {
      stroke: rgba(255,255,255,0.5);
    }
    body.page-careers .job-card-meta {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }
    body.page-careers .job-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--mid-gray);
      letter-spacing: 0.03em;
    }
    body.page-careers .job-meta-item svg {
      width: 13px;
      height: 13px;
      stroke: var(--mid-gray);
      fill: none;
      flex-shrink: 0;
    }
    body.page-careers .job-tag {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      background: rgba(186,124,0,0.1);
      color: var(--copper);
      border: 1px solid rgba(186,124,0,0.28);
    }
    body.page-careers .job-card-arrow {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border: 1.5px solid var(--light-gray);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mid-gray);
      transition: border-color var(--transition), background var(--transition), color var(--transition);
    }
    body.page-careers .job-card:hover .job-card-arrow {
      border-color: var(--copper);
      background: var(--copper);
      color: var(--white);
    }
    body.page-careers .job-card:hover .job-tag {
      background: rgba(186,124,0,0.25);
      border-color: rgba(186,124,0,0.55);
    }
    body.page-careers .job-card-arrow svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }

    /* --- APPLICATION CTA SECTION --- */
    body.page-careers .apply-cta {
      background: var(--black);
      border-top: 4px solid var(--copper);
      padding: 90px 0;
      text-align: center;
    }
    body.page-careers .apply-cta .cta-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    body.page-careers .apply-cta .copper-rule {
      margin: 0 auto 28px;
    }
    body.page-careers .apply-cta h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      color: var(--white);
      letter-spacing: -0.015em;
      margin-bottom: 18px;
      line-height: 1.1;
    }
    body.page-careers .apply-cta p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    body.page-careers .apply-cta .btn-copper {
      font-size: 13px;
      padding: 18px 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    body.page-careers .apply-cta .btn-copper svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }
    body.page-careers .apply-cta .cta-email-link {
      display: inline-block;
      margin-top: 24px;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color var(--transition);
    }
    body.page-careers .apply-cta .cta-email-link:hover {
      color: var(--copper);
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
      body.page-careers .values-grid { grid-template-columns: repeat(2, 1fr); }
      body.page-careers .value-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
      body.page-careers .value-card:last-child:nth-child(odd) p { max-width: 560px; }
    }
    @media (max-width: 768px) {
      body.page-careers .hero-image-comp { min-height: 480px; }
      body.page-careers .values-grid { grid-template-columns: 1fr; }
      body.page-careers .jobs-grid { grid-template-columns: 1fr; }
      body.page-careers .job-card { flex-direction: column; align-items: flex-start; }
      body.page-careers .job-card-arrow { display: none; }
    }
    @media (max-width: 480px) {
      body.page-careers .careers-intro { padding: 64px 0; }
      body.page-careers .careers-values { padding: 64px 0; }
      body.page-careers .jobs-section { padding: 64px 0; }
      body.page-careers .apply-cta { padding: 64px 0; }
    }

/* ---------- CONTACT (page-contact) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — CONTACT
       ============================================ */

    /* --- Contact Intro Section --- */
    body.page-contact .contact-intro {
      background: var(--black);
      padding: 80px 0 60px;
      text-align: center;
    }
    body.page-contact .contact-intro h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 20px;
    }
    body.page-contact .contact-intro h1 span {
      color: var(--copper);
    }
    body.page-contact .contact-intro p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* --- Breadcrumb --- */

    /* --- Two-Column Contact Section --- */
    body.page-contact .contact-main-section {
      background: #f5f5f0;
      padding: 80px 0;
    }
    body.page-contact .contact-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    }

    /* --- Left: Contact Info Box --- */
    body.page-contact .contact-info-box {
      background: var(--black);
      padding: 56px 48px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    body.page-contact .contact-info-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--copper);
    }
    body.page-contact .contact-info-box h2 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: var(--copper);
      margin: 0 0 32px;
    }
    body.page-contact .contact-info-box .company-name {
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      margin-bottom: 28px;
      line-height: 1.5;
    }
    body.page-contact .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }
    body.page-contact .contact-info-item .icon {
      width: 22px; height: 22px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--copper);
    }
    body.page-contact .contact-info-item .icon svg {
      width: 100%; height: 100%;
      fill: none; stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round; stroke-linejoin: round;
    }
    body.page-contact .contact-info-item .info-text {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    body.page-contact .contact-info-item .info-text a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color var(--transition);
    }
    body.page-contact .contact-info-item .info-text a:hover { color: var(--copper); }
    body.page-contact .contact-info-item .info-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.3);
      margin-bottom: 4px;
    }
    body.page-contact .contact-hours {
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    body.page-contact .contact-hours h3 {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
      margin: 0 0 10px;
    }
    body.page-contact .contact-hours p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
      margin: 0;
    }
    body.page-contact .copper-accent-bar {
      width: 48px; height: 3px;
      background: var(--copper);
      margin: 32px 0;
      opacity: 0.6;
    }

    /* --- Right: Contact Form Box --- */
    body.page-contact .contact-form-box {
      background: var(--off-white);
      padding: 56px 48px;
    }
    body.page-contact .contact-form-box h2 {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin: 0 0 8px;
    }
    body.page-contact .contact-form-box .form-subtitle {
      font-size: 0.88rem;
      color: var(--mid-gray);
      margin-bottom: 32px;
    }
    body.page-contact .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    body.page-contact .form-group { margin-bottom: 16px; }
    body.page-contact .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--black);
      margin-bottom: 6px;
    }
    body.page-contact .form-group label .req { color: var(--copper); margin-left: 2px; }
    body.page-contact .form-group input, 
    body.page-contact .form-group select, 
    body.page-contact .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      background: var(--white);
      border: 1px solid var(--light-gray);
      font-family: inherit;
      font-size: 0.92rem;
      color: var(--black);
      transition: border-color var(--transition), box-shadow var(--transition);
      box-sizing: border-box;
      appearance: none; -webkit-appearance: none;
      outline: none;
    }
    body.page-contact .form-group input:focus, 
    body.page-contact .form-group select:focus, 
    body.page-contact .form-group textarea:focus {
      border-color: var(--copper);
      box-shadow: 0 0 0 3px var(--copper-20);
    }
    body.page-contact .form-group input.error, 
    body.page-contact .form-group select.error, 
    body.page-contact .form-group textarea.error { border-color: #c0392b; }
    body.page-contact .form-group .field-error {
      font-size: 0.75rem; color: #c0392b;
      margin-top: 4px; display: none;
    }
    body.page-contact .form-group .field-error.visible { display: block; }
    body.page-contact .form-group textarea { resize: vertical; min-height: 130px; }
    body.page-contact .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ba7c00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px; cursor: pointer;
    }
    body.page-contact .btn-copper {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--copper);
      color: var(--white);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      border: 2px solid var(--copper);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      margin-top: 8px;
      font-family: inherit;
    }
    body.page-contact .btn-copper:hover { background: transparent; color: var(--copper); }
    body.page-contact .btn-copper svg {
      width: 16px; height: 16px;
      fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-contact .btn-copper:hover svg { transform: translateX(4px); }
    body.page-contact #form-success {
      padding: 16px 20px;
      background: var(--copper);
      color: var(--white);
      margin-top: 16px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    body.page-contact #form-success svg {
      width: 20px; height: 20px;
      flex-shrink: 0; fill: none; stroke: currentColor;
      stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    }

    /* --- Map / Location Section --- */
    body.page-contact .location-section {
      background: #0d0d0d;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-contact .location-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-contact .location-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    body.page-contact .location-text h2 {
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 16px;
    }
    body.page-contact .location-text h2 span { color: var(--copper); }
    body.page-contact .location-text p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-bottom: 12px;
    }
    body.page-contact .location-text .address-display {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      font-weight: 600;
      line-height: 1.6;
      margin: 24px 0;
      padding: 20px 24px;
      border-left: 3px solid var(--copper);
      background: rgba(186,124,0,0.06);
    }
    body.page-contact .location-text .appointment-note {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.3);
      font-style: italic;
      margin-top: 20px;
    }
    body.page-contact .location-map-visual {
      position: relative;
      height: 360px;
      background: var(--dark-gray);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
    }
    body.page-contact .map-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    body.page-contact .map-placeholder svg {
      width: 48px; height: 48px;
      fill: none; stroke: var(--copper);
      stroke-width: 1.5;
      stroke-linecap: round; stroke-linejoin: round;
      opacity: 0.6;
    }
    body.page-contact .map-placeholder span {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
    }
    body.page-contact .map-coords {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: rgba(0,0,0,0.8);
      padding: 12px 16px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      text-align: center;
      letter-spacing: 0.04em;
    }
    body.page-contact .map-coords a {
      color: var(--copper);
      text-decoration: none;
      font-weight: 600;
    }
    body.page-contact .map-coords a:hover { text-decoration: underline; }

    /* --- Bottom CTA Banner --- */
    body.page-contact .bottom-cta-banner {
      background: var(--copper);
      padding: 80px 0;
    }
    body.page-contact .bottom-cta-banner .container-boxed {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-contact .bottom-cta-banner h2 {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      max-width: 560px;
      margin: 0;
    }
    body.page-contact .bottom-cta-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      margin: 14px 0 0;
      max-width: 500px;
    }
    body.page-contact .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--copper);
      padding: 16px 40px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--white);
      flex-shrink: 0;
      transition: all var(--transition);
    }
    body.page-contact .btn-white:hover { background: transparent; color: var(--white); }
    body.page-contact .btn-white svg {
      width: 16px; height: 16px;
      fill: none; stroke: currentColor; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-contact .btn-white:hover svg { transform: translateX(5px); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      body.page-contact .contact-columns {
        grid-template-columns: 1fr;
      }
      body.page-contact .contact-info-box, 
      body.page-contact .contact-form-box {
        padding: 40px 32px;
      }
      body.page-contact .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
      }
      body.page-contact .location-map-visual {
        height: 280px;
      }
    }
    @media (max-width: 640px) {
      body.page-contact .form-row {
        grid-template-columns: 1fr;
      }
      body.page-contact .contact-info-box, 
      body.page-contact .contact-form-box {
        padding: 32px 20px;
      }
      body.page-contact .contact-intro {
        padding: 60px 0 40px;
      }
    }

/* ---------- WHERE TO BUY (page-where-to-buy) ---------- */
    /* ============================================
       PAGE-SPECIFIC STYLES — WHERE TO BUY
       ============================================ */

    /* --- Page Intro --- */
    body.page-where-to-buy .wtb-intro {
      background: var(--black);
      padding: 80px 0 60px;
      text-align: center;
    }
    body.page-where-to-buy .wtb-intro h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
      margin: 0 0 20px;
    }
    body.page-where-to-buy .wtb-intro h1 span {
      color: var(--copper);
    }
    body.page-where-to-buy .wtb-intro p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 660px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* --- Breadcrumb --- */

    /* --- Coverage Stats Banner --- */
    body.page-where-to-buy .coverage-banner {
      background: var(--copper);
      padding: 56px var(--gutter);
    }
    body.page-where-to-buy .coverage-banner-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    body.page-where-to-buy .coverage-banner-text h2 {
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #fff;
      margin: 0 0 8px;
    }
    body.page-where-to-buy .coverage-banner-text p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      margin: 0;
    }
    body.page-where-to-buy .coverage-stats {
      display: flex;
      gap: 48px;
      flex-shrink: 0;
    }
    body.page-where-to-buy .coverage-stat {
      text-align: center;
    }
    body.page-where-to-buy .coverage-stat .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      display: block;
    }
    body.page-where-to-buy .coverage-stat .stat-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.7);
      margin-top: 4px;
      display: block;
    }

    /* --- Distributors Section --- */
    body.page-where-to-buy .distributors-section {
      background: var(--off-white);
      padding: 80px 0;
    }
    body.page-where-to-buy .distributors-section .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    body.page-where-to-buy .distributors-section .section-header .eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--copper);
      margin-bottom: 12px;
    }
    body.page-where-to-buy .distributors-section .section-header h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--black);
      margin: 0 0 16px;
    }
    body.page-where-to-buy .distributors-section .section-header p {
      font-size: 1rem;
      color: var(--mid-gray);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
    body.page-where-to-buy .section-divider {
      width: 48px;
      height: 3px;
      background: var(--copper);
      margin: 0 auto 20px;
    }

    /* --- Distributors Grid --- */
    body.page-where-to-buy .distributors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    body.page-where-to-buy .distributor-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-top: 3px solid transparent;
      padding: 28px 24px 24px;
      transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
      position: relative;
    }
    body.page-where-to-buy .distributor-card:hover {
      border-top-color: var(--copper);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    body.page-where-to-buy .distributor-card .region-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--copper);
      background: rgba(186,124,0,0.08);
      border: 1px solid rgba(186,124,0,0.2);
      padding: 4px 10px;
      margin-bottom: 16px;
    }
    body.page-where-to-buy .distributor-card .company-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: 0.02em;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    body.page-where-to-buy .distributor-card .location {
      font-size: 0.88rem;
      color: var(--mid-gray);
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 6px;
    }
    body.page-where-to-buy .distributor-card .location svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      margin-top: 2px;
      fill: none;
      stroke: var(--copper);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .distributor-card .card-divider {
      width: 32px;
      height: 2px;
      background: var(--copper);
      margin-bottom: 16px;
      opacity: 0.4;
    }
    body.page-where-to-buy .distributor-card .contact-line {
      font-size: 0.82rem;
      color: var(--mid-gray);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      text-decoration: none;
    }
    body.page-where-to-buy .distributor-card a.contact-line {
      transition: color var(--transition);
    }
    body.page-where-to-buy .distributor-card a.contact-line:hover {
      color: var(--copper);
    }
    body.page-where-to-buy .distributor-card .contact-line svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
      fill: none;
      stroke: var(--copper);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .distributor-card.featured {
      border-top-color: var(--copper);
      background: #0d0d0d;
    }
    body.page-where-to-buy .distributor-card.featured .company-name {
      color: var(--white);
    }
    body.page-where-to-buy .distributor-card.featured .location {
      color: rgba(255,255,255,0.55);
    }
    body.page-where-to-buy .distributor-card.featured .contact-line {
      color: rgba(255,255,255,0.5);
    }
    body.page-where-to-buy .distributor-card.featured a.contact-line {
      color: rgba(255,255,255,0.5);
    }
    body.page-where-to-buy .distributor-card.featured a.contact-line:hover {
      color: var(--copper);
    }
    body.page-where-to-buy .distributor-card.featured .card-divider {
      opacity: 0.6;
    }
    body.page-where-to-buy .distributor-card.featured .region-tag {
      background: rgba(186,124,0,0.15);
      border-color: rgba(186,124,0,0.35);
    }
    body.page-where-to-buy .distributor-card.featured:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    }
    body.page-where-to-buy .direct-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--copper);
      padding: 4px 10px;
      margin-top: 12px;
    }
    body.page-where-to-buy .direct-badge svg {
      width: 10px;
      height: 10px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- Become a Distributor Section --- */
    body.page-where-to-buy .become-distributor {
      background: #0d0d0d;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    body.page-where-to-buy .become-distributor::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-where-to-buy .become-distributor::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--copper), transparent);
    }
    body.page-where-to-buy .become-distributor-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--gutter);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    body.page-where-to-buy .become-distributor-text .eyebrow {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--copper);
      margin-bottom: 16px;
    }
    body.page-where-to-buy .become-distributor-text h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      margin: 0 0 20px;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    body.page-where-to-buy .become-distributor-text h2 span {
      color: var(--copper);
    }
    body.page-where-to-buy .become-distributor-text p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      margin-bottom: 14px;
    }
    body.page-where-to-buy .become-distributor-text p:last-of-type {
      margin-bottom: 36px;
    }
    body.page-where-to-buy .btn-copper-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--copper);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--copper);
      transition: background var(--transition), color var(--transition);
      font-family: inherit;
    }
    body.page-where-to-buy .btn-copper-outline:hover {
      background: var(--copper);
      color: var(--white);
    }
    body.page-where-to-buy .btn-copper-outline svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-where-to-buy .btn-copper-outline:hover svg { transform: translateX(4px); }
    body.page-where-to-buy .btn-copper-solid {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--copper);
      color: var(--white);
      padding: 14px 36px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      text-decoration: none;
      border: 2px solid var(--copper);
      transition: background var(--transition), color var(--transition);
      font-family: inherit;
    }
    body.page-where-to-buy .btn-copper-solid:hover {
      background: transparent;
      color: var(--copper);
    }
    body.page-where-to-buy .btn-copper-solid svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--transition);
    }
    body.page-where-to-buy .btn-copper-solid:hover svg { transform: translateX(4px); }
    body.page-where-to-buy .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    body.page-where-to-buy .become-distributor-benefits {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    body.page-where-to-buy .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 22px 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-left: 3px solid var(--copper);
      transition: background var(--transition);
    }
    body.page-where-to-buy .benefit-item:hover {
      background: rgba(255,255,255,0.07);
    }
    body.page-where-to-buy .benefit-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(186,124,0,0.1);
    }
    body.page-where-to-buy .benefit-icon svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: var(--copper);
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    body.page-where-to-buy .benefit-item h4 {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--white);
      margin: 0 0 6px;
    }
    body.page-where-to-buy .benefit-item p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      margin: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      body.page-where-to-buy .distributors-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 900px) {
      body.page-where-to-buy .become-distributor-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
      }
      body.page-where-to-buy .coverage-stats {
        gap: 32px;
      }
    }
    @media (max-width: 640px) {
      body.page-where-to-buy .distributors-grid {
        grid-template-columns: 1fr;
      }
      body.page-where-to-buy .wtb-intro {
        padding: 60px 0 40px;
      }
      body.page-where-to-buy .distributors-section {
        padding: 60px 0;
      }
      body.page-where-to-buy .become-distributor {
        padding: 70px 0;
      }
      body.page-where-to-buy .coverage-banner-inner {
        flex-direction: column;
        text-align: center;
      }
      body.page-where-to-buy .coverage-stats {
        justify-content: center;
      }
      body.page-where-to-buy .btn-group {
        flex-direction: column;
      }
    }

/* ---------- BLOG (home.php / single.php) ---------- */

/* Blog listing page — outer section spacing */
.blog-listing {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.blog-listing .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section header in blog listing reuses global .section-header, .section-label,
   .section-title — no overrides needed. */

/* The .news-grid already has its 3-col grid and responsive breakpoints defined
   globally. Only add blog-page-specific grid spacing so it doesn't conflict. */
.blog-listing .news-grid {
  margin-top: 0;
}

/* Empty state */
.blog-empty {
  grid-column: 1 / -1;
  font-size: 1rem;
  color: var(--mid-gray, #888);
  padding: 40px 0;
  text-align: center;
}

/* Pagination */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-main);
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(186,124,0,0.3);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}

/* ---- Single post ---- */
.single-post {
  padding: 80px 0 100px;
  background: var(--off-white);
}

/* Narrow reading column (~820 px) centred */
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Post header: date chip + h1 */
.single-post-header {
  margin-bottom: 36px;
}
.single-post-header .news-date {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.single-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

/* Hero / featured image */
.single-post-hero {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e4dc;
}
.single-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body copy */
.single-post-body {
  font-family: var(--font-main);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--black);
}
.single-post-body h2,
.single-post-body h3,
.single-post-body h4 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.single-post-body h2 { font-size: 1.4rem; }
.single-post-body h3 { font-size: 1.15rem; }
.single-post-body p  { margin-bottom: 1.4em; }
.single-post-body a  { color: var(--copper); text-decoration: underline; text-decoration-color: rgba(186,124,0,0.4); }
.single-post-body a:hover { text-decoration-color: var(--copper); }
.single-post-body img { max-width: 100%; height: auto; border-radius: 4px; margin: 1.5em 0; }
.single-post-body blockquote {
  border-left: 3px solid var(--copper);
  padding-left: 20px;
  margin: 2em 0;
  font-style: italic;
  color: #555;
}
.single-post-body ul,
.single-post-body ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.back-link:hover { opacity: 0.75; }

/* ---- Blog responsive ---- */
@media (max-width: 900px) {
  .blog-listing { padding: 60px 0 80px; }
  .single-post  { padding: 60px 0 80px; }
}
@media (max-width: 640px) {
  .blog-listing { padding: 48px 0 64px; }
  .single-post  { padding: 48px 0 64px; }
  .single-post-header h1 { font-size: 1.5rem; }
  .blog-pagination { flex-wrap: wrap; }
}
