/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red:         #C8102E;
  --red-hover:   #A00E25;
  --charcoal:    #2B2B2B;
  --cream:       #F9F6F1;
  --light-gray:  #EFEFEF;
  --text-muted:  #999999;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --z-base:       1;
  --z-card-hover: 10;
  --z-navbar:     100;
  --z-mobile-menu: 200;
  --z-toast:      300;

  --section-pad:  clamp(60px, 8vw, 120px);
  --container:    1200px;
  --gutter:       clamp(20px, 4vw, 40px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { font-family: var(--font-sans); font-size: 1rem; line-height: 1.8; max-width: 640px; }

.text-white  { color: var(--white); }
.text-cream  { color: var(--cream); }
.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted); }

/* ============================================================
   SKIP NAV
   ============================================================ */
.skip-nav {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: var(--white);
  padding: 8px 16px; font-size: 0.85rem;
  z-index: 9999; transition: top 0.2s;
  border-radius: 2px;
}
.skip-nav:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============================================================
   FOCUS VISIBLE
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-navbar);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 36px;
  filter: brightness(0) invert(1);
}
.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  color: var(--charcoal);
  text-transform: uppercase;
}
.navbar:not(.scrolled) .logo-wordmark { color: var(--white); }
.navbar:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}
.navbar:not(.scrolled) .nav-links a {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}
.nav-links a.active {
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}
.navbar:not(.scrolled) .nav-links a.active {
  text-shadow:
    0 0 6px rgba(200, 16, 46, 1),
    0 0 16px rgba(200, 16, 46, 0.85),
    0 0 36px rgba(200, 16, 46, 0.55),
    0 0 64px rgba(200, 16, 46, 0.3);
}
.navbar.scrolled .nav-links a.active {
  text-shadow: none;
}
.nav-cta {
  display: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-hover); }

.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: background 0.2s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* ============================================================
   MOBILE OVERLAY
   ============================================================ */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: var(--z-mobile-menu);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-overlay[hidden] { display: none; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  padding: 8px; color: var(--white);
}
.mobile-overlay nav ul {
  display: flex; flex-direction: column; gap: 1.5rem;
  text-align: center;
}
.mobile-overlay nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-overlay nav a:hover,
.mobile-overlay nav a[aria-current="page"] { color: var(--red); }
.mobile-cta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 12px 32px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-cta:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-home { min-height: 100svh; }
.hero-inner { min-height: 50vh; }

.hero-bg {
  position: absolute; inset: 0;
  background: #1a1a1a;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-home .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px var(--gutter) 60px;
  max-width: 900px;
}
.hero-content-left {
  text-align: left;
  margin: 0 auto 0 var(--gutter);
  max-width: 700px;
}
@media (min-width: 768px) {
  .hero-content-left { margin-left: calc((100vw - var(--container)) / 2 + var(--gutter)); }
}
.hero-content h1 { color: var(--white); }
.hero-pre-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.pre-rule {
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--red);
}
.hero-subtext {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--cream);
  margin: 1.25rem auto 0;
  max-width: 520px;
}
.hero-subtext-italic { font-style: italic; }
.hero-ctas {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  margin-top: 2.5rem;
}
.hero-text-cta {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--cream); letter-spacing: 0.05em;
  transition: color 0.2s;
}
.hero-text-cta:hover { color: var(--white); }

/* Home hero title glow */
.hero-home .hero-content h1 {
  animation: hero-title-glow 3s ease-in-out infinite;
}
@keyframes hero-title-glow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(250, 215, 145, 0.55),
      0 0 50px rgba(230, 183, 103, 0.35),
      0 0 90px rgba(204, 151, 78, 0.2),
      0 2px 6px rgba(0, 0, 0, 0.6);
  }
  50% {
    text-shadow:
      0 0 35px rgba(250, 215, 145, 0.9),
      0 0 75px rgba(230, 183, 103, 0.6),
      0 0 130px rgba(204, 151, 78, 0.35),
      0 2px 6px rgba(0, 0, 0, 0.6);
  }
}

/* Page loader */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo-wrap {
  background: transparent;
  border: none;
  padding: 0;
}
.loader-logo-img {
  height: 68px;
  width: auto;
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: logo-rise-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes logo-rise-up {
  0%   { opacity: 0; transform: translateY(28px); }
  60%  { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-charcoal { background: var(--charcoal); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered p,
.section-header.centered .section-label { justify-content: center; }
.section-header h2 { margin-top: 0.5rem; }

/* ============================================================
   ACCENT LINE COMPONENT
   ============================================================ */
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.accent-rule {
  display: block; width: 40px; height: 1px;
  background: var(--red); flex-shrink: 0;
}
.label-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   TEMPLATE A — SPLIT SECTIONS
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
}
.split-section .split-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.split-section .split-image .section-img,
.split-section .split-image .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.split-section .split-text {
  display: flex; align-items: center;
  padding: var(--section-pad) var(--gutter);
}
.split-who-we-are .split-image {
  overflow: visible;
  min-height: unset;
}
.split-who-we-are .split-image .section-img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
.split-smart .split-image .section-img {
  object-fit: contain;
  background: var(--cream);
  padding: 1.5rem;
}
.split-text-inner { max-width: 540px; }
.split-text-inner h2 { margin: 0.5rem 0 1.25rem; }
.split-text-inner p { margin-bottom: 1rem; }

.split-dark { background: var(--charcoal); }

.value-pills, .feature-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.5rem 0;
}
.pill {
  border: 1px solid var(--charcoal);
  border-radius: 2px; padding: 6px 16px;
  font-family: var(--font-sans); font-size: 0.8rem;
  color: var(--charcoal);
}
.pill-white {
  border-color: rgba(255,255,255,0.4);
  color: var(--cream);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

.btn-red   { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-hover); }

.btn-white { background: var(--white); color: var(--charcoal); }
.btn-white:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--red); border-color: var(--red); }

.text-cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-top: 1.5rem;
  transition: opacity 0.2s;
}
.text-cta:hover { opacity: 0.75; }

/* ============================================================
   VALUE BAND
   ============================================================ */
.value-band { padding: 60px 0; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.value-item { border-left: 2px solid var(--red); padding-left: 1.5rem; }
.value-number {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--red); display: block; line-height: 1;
}
.value-label {
  font-family: var(--font-sans); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text-muted); display: block; margin: 0.5rem 0 0.75rem;
}
.value-outcome {
  font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--charcoal); max-width: 300px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--red); padding: 48px 0; }
.stats-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
}
.stat-item {
  flex: 1; min-width: 140px;
  text-align: center; padding: 1rem 1.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 50%;
  background: rgba(255,255,255,0.3);
}
.stat-number {
  display: block;
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white); line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-sans); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-top: 6px;
}
.stats-bar--narrow {
  padding: 28px 0;
}
.stats-bar--narrow .stats-inner {
  max-width: 640px;
}
.stats-bar--narrow .stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}
.stats-bar--narrow .stat-label {
  font-size: 0.68rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; padding: 36px 28px;
  border-top: 3px solid var(--red);
}
.card h3 { margin-bottom: 0.75rem; }
.card p  { color: var(--text-muted); font-size: 0.92rem; max-width: 100%; }

.card-tag, .card-category {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.step-item { max-width: 360px; }
.step-number {
  display: block;
  font-family: var(--font-serif); font-size: 3rem;
  color: var(--red); line-height: 1; margin-bottom: 1rem;
}
.step-item h3 { margin-bottom: 0.5rem; }
.step-item p { max-width: 100%; color: var(--text-muted); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.service-card-img { aspect-ratio: 16/9; overflow: hidden; }
.service-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-thumb { transform: scale(1.04); }
.service-card-body { padding: 24px 20px; }
.card-outcome { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem; max-width: 100%; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  overflow: hidden; padding: 2.25rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin: 2rem 0 1.5rem;
}
.marquee-track {
  display: flex; gap: 2.5rem; align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.marquee-reverse { animation-direction: reverse; }
.marquee-icon-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; min-width: 108px; flex-shrink: 0;
}
.marquee-icon {
  display: block; width: 28px; height: 28px; padding: 16px;
  box-sizing: content-box; border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.marquee-icon-item:hover .marquee-icon {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(200, 16, 46, 0.18);
}
.marquee-icon-label {
  font-family: var(--font-sans); font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 3rem 1.5rem;
  margin-top: 3.5rem;
}
.category-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem; text-align: center;
}
.category-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.category-card-icon .marquee-icon {
  border: none; padding: 0; background: none; box-shadow: none;
  width: 30px; height: 30px; color: inherit;
}
.category-card:hover .category-card-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 30px rgba(200, 16, 46, 0.28);
}
.category-card-name {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; color: var(--charcoal);
}

.sector-band {
  display: flex; align-items: stretch;
  background: linear-gradient(120deg, var(--white) 0%, #FDEFF1 55%, #FCE4E8 100%);
  margin: 2rem 0 1.5rem;
  overflow: hidden;
}
.sector-static-row {
  flex: 1; min-width: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: flex-start; gap: 2rem 3rem;
  padding: 2.5rem 2rem;
}
.sector-band .marquee-icon {
  border-color: rgba(200, 16, 46, 0.25);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.08);
}
.sector-band .marquee-icon-item:hover .marquee-icon {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(200, 16, 46, 0.28);
}
.sector-band .marquee-icon-label { color: var(--charcoal); }

@media (max-width: 768px) {
  .sector-static-row { gap: 1.75rem 1.5rem; padding: 2rem 1.25rem; }
}
.marquee-pill {
  border: 1px solid var(--light-gray);
  border-radius: 2px; padding: 10px 24px;
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--charcoal); white-space: nowrap;
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.marquee-pill:hover { border-color: var(--red); color: var(--red); }
.marquee-logo-item {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 36px;
  min-width: 170px; height: 96px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.marquee-logo-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.marquee-logo-img {
  height: 58px; max-width: 150px;
  object-fit: contain;
}
.marquee-logo-name {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--text-muted); white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: #333;
  border: 1px solid #3D3D3D;
  border-radius: 4px; padding: 32px 28px;
}
.quote-mark {
  display: block;
  font-family: var(--font-serif); font-size: 4rem;
  color: var(--red); line-height: 0.8; margin-bottom: 1rem;
}
.testimonial-card p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--cream);
  max-width: 100%; margin-bottom: 1.5rem;
}
.testimonial-card footer cite {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); font-style: normal;
}

/* ============================================================
   CLIENT MARQUEE BANNER
   ============================================================ */
.client-marquee-wrapper {
  overflow: hidden;
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.client-marquee-wrapper:hover .client-marquee-track {
  animation-play-state: paused;
}
.client-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.client-logo-badge {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.client-badge-img {
  max-height: 60px;
  height: auto;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.client-badge-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-transform: uppercase;
  white-space: nowrap;
}
.client-grid-logo {
  max-height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.client-logo-grid,
.client-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  border: 1px solid var(--light-gray);
}
.client-full-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.client-logo-cell {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 28px 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.65;
  transition: opacity 0.2s;
  cursor: default;
}
.client-logo-cell:hover { opacity: 1; }
.client-logo-cell span {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: var(--text-muted); text-align: center; line-height: 1.4;
}
.centered-cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--red);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-inner p  { color: var(--cream); font-size: 1rem; max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 1rem 0;
  max-width: 860px; margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--light-gray);
}
.timeline-node {
  position: relative;
  display: flex;
  width: 50%;
  padding: 0 3rem 3rem 0;
  justify-content: flex-end;
}
.timeline-node.timeline-right {
  margin-left: 50%;
  justify-content: flex-start;
  padding: 0 0 3rem 3rem;
}
.timeline-dot {
  position: absolute; top: 4px;
  right: -7px; width: 14px; height: 14px;
  background: var(--red); border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
}
.timeline-right .timeline-dot {
  left: -7px; right: auto;
}
.timeline-year {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--red); display: block; margin-bottom: 0.4rem;
}
.timeline-event {
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--charcoal); max-width: 280px;
}
.timeline-img-wrap { margin-top: 0.75rem; }
.timeline-img {
  width: 200px; height: 130px; object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; padding: 48px 36px;
}
.mv-label {
  font-family: var(--font-sans); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--red); margin-bottom: 1rem; max-width: 100%;
}
.mv-quote {
  font-family: var(--font-serif); font-style: normal; font-weight: 700;
  font-size: 1.25rem; line-height: 1.7; color: var(--charcoal);
  max-width: 520px;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-items: center;
}
.leader-card { max-width: 420px; text-align: center; }
.leader-portrait {
  width: 120px; height: 120px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}
.leader-initials {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--red);
}
.leader-name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.leader-role {
  font-family: var(--font-sans); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); margin-bottom: 1rem;
}
.leader-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; max-width: 100%; }
.leader-phone {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--charcoal); letter-spacing: 0.05em;
}

/* ============================================================
   COMPLIANCE STRIP
   ============================================================ */
.compliance-strip {
  background: var(--white);
  padding: 48px 0;
  text-align: center;
}
.compliance-heading {
  font-family: var(--font-sans); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--red); margin-bottom: 1.5rem; max-width: 100%;
}
.compliance-items {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: center;
}
.compliance-item {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--charcoal);
  padding: 0.5rem 1.25rem;
  border-left: 1px solid rgba(0,0,0,0.15);
}
.compliance-item:first-child { border-left: none; padding-left: 0; }

/* ============================================================
   SMART GALLERY
   ============================================================ */
.smart-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.smart-gallery img,
.smart-gallery .img-placeholder {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  transition: transform 0.3s;
}
.smart-gallery img:hover { transform: scale(1.02); }

/* ============================================================
   VENDING SECTION
   ============================================================ */
.vending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.vending-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; overflow: hidden;
}
.vending-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.vending-thumb {
  width: 100%; height: 100%; object-fit: cover;
}
.vending-card h3, .vending-card p {
  padding: 0 20px 16px;
}
.vending-card h3 { padding-top: 20px; font-size: 1.1rem; }
.vending-card p  { font-size: 0.88rem; color: var(--text-muted); max-width: 100%; }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.feature-mini-card {
  background: var(--cream);
  border-radius: 4px; padding: 20px 18px;
}
.feature-mini-card strong {
  display: block;
  font-family: var(--font-sans); font-size: 0.82rem;
  font-weight: 500; color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.feature-mini-card p {
  font-size: 0.82rem; color: var(--text-muted); max-width: 100%;
  line-height: 1.5;
}
.subtitle-small {
  font-size: 0.6em; color: var(--text-muted);
  font-family: var(--font-sans); font-weight: 400;
  letter-spacing: 0.05em; display: block; margin-top: 0.3rem;
}

/* ============================================================
   ENGAGEMENT MODELS
   ============================================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.engagement-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; padding: 36px 28px;
  position: relative;
  border-top: 3px solid var(--red);
}
.engagement-popular { border-top: 3px solid var(--red); }
.popular-badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--red); color: var(--white);
  font-family: var(--font-sans); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 2px;
}
.engagement-card h3 { margin-bottom: 0.75rem; }
.engagement-card p  { color: var(--text-muted); font-size: 0.9rem; max-width: 100%; }
.pricing-note {
  text-align: center; margin: 2.5rem auto 1.5rem;
  color: var(--text-muted); font-size: 0.88rem; max-width: 560px;
}

/* ============================================================
   BRAND GRID
   ============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-bottom-color 0.3s;
  border-bottom: 3px solid transparent;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-bottom-color: var(--red);
}
.brand-logo-wrap {
  height: 40px; display: flex; align-items: center;
  margin-bottom: 1.25rem;
}
.brand-logo {
  height: 40px; width: auto; object-fit: contain;
  max-width: 120px;
}
.brand-logo-wrap-lg { height: 90px; }
.brand-logo-lg { height: 90px; max-width: 220px; }
.brand-logo-wrap-sm { height: 40px; }
.brand-logo-sm { height: 40px; max-width: 120px; }
.brand-name { font-size: 1.15rem; margin-bottom: 0.35rem; }
.brand-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; max-width: 100%; }
.brand-products { font-size: 0.8rem; color: var(--text-muted); max-width: 100%; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  font-family: var(--font-sans); font-size: 0.8rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--light-gray);
  border-radius: 2px; padding: 8px 20px;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-tab:hover { border-color: var(--red); color: var(--red); }
.filter-tab.active {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.product-card.hidden { display: none; }
.product-img-wrap { aspect-ratio: 1; overflow: hidden; }
.product-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-thumb { transform: scale(1.04); }
.product-card-body { padding: 16px 16px 20px; }
.product-brand {
  font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--charcoal); max-width: 100%;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: var(--container);
}
.contact-person-card {
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
}
.details-subhead {
  font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.4rem; max-width: 100%;
}
.contact-person-role {
  font-family: var(--font-sans); font-size: 0.82rem;
  color: var(--text-muted); max-width: 100%; margin-bottom: 0.4rem;
}
.contact-person-phone {
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--charcoal); display: block;
  transition: color 0.2s;
}
.contact-person-phone:hover { color: var(--red); }

/* ============================================================
   CONTACT CARD
   ============================================================ */
.contact-card-section { background: var(--cream); }
.contact-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-card-info {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
}
.contact-info-title {
  color: var(--charcoal);
  font-size: 1.45rem;
  margin-bottom: 2.5rem;
}
.contact-info-items {
  display: flex; flex-direction: column; gap: 1.75rem;
  flex: 1;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  color: var(--charcoal);
  font-family: var(--font-sans); font-size: 0.88rem; line-height: 1.55;
}
.contact-info-icon {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  color: var(--red);
}
.contact-socials {
  display: flex; gap: 0.75rem;
  margin-top: 3rem;
}
.contact-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.contact-social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.contact-card-form {
  background: #FDF8F2;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}
.contact-info-link {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-link:hover { color: var(--red); }

/* Feedback block */
.feedback-block { margin-top: 2.5rem; }
.feedback-divider {
  height: 1px;
  background: rgba(43, 43, 43, 0.15);
  margin-bottom: 1.5rem;
}
.feedback-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: none;
}
.feedback-success {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 0.75rem 0;
}
.feedback-question {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  max-width: none;
}
.feedback-yn {
  display: flex; gap: 1.5rem;
  margin-bottom: 1rem;
}
.feedback-yn-option {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--charcoal); cursor: pointer;
}
.feedback-yn-option input[type="radio"] {
  accent-color: var(--red);
  width: 14px; height: 14px; cursor: pointer;
}
.feedback-field {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 1rem;
}
.feedback-field label {
  font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.feedback-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43, 43, 43, 0.2);
  color: var(--charcoal);
  font-family: var(--font-sans); font-size: 0.85rem;
  padding: 0.45rem 0;
  outline: none;
  resize: none;
  width: 100%;
  transition: border-color 0.2s;
}
.feedback-field textarea:focus { border-bottom-color: var(--red); }
.feedback-field textarea::placeholder { color: rgba(0,0,0,0.25); }
.btn-feedback {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 4px;
  padding: 0.55rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-feedback:hover {
  background: var(--red);
  color: var(--white);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  margin-bottom: 2rem;
}
.contact-form .form-field {
  display: flex; flex-direction: column; gap: 0.35rem;
}
.contact-form .form-field-full {
  margin-bottom: 2rem;
}
.contact-form label {
  font-family: var(--font-sans); font-size: 0.72rem;
  color: #555555;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: var(--charcoal);
  font-family: var(--font-sans); font-size: 0.9rem;
  padding: 0.55rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--red);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.22);
}
.phone-field {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s;
}
.phone-field:focus-within { border-bottom-color: var(--red); }
.phone-prefix {
  color: var(--text-muted);
  font-family: var(--font-sans); font-size: 0.9rem;
  padding: 0.55rem 0.4rem 0.55rem 0;
  white-space: nowrap;
}
.phone-field input { border-bottom: none !important; flex: 1; }
.subject-options {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2.25rem;
  margin-top: 0.85rem;
}
.subject-option {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--charcoal);
  font-family: var(--font-sans); font-size: 0.84rem;
  cursor: pointer;
}
.subject-option input[type="radio"] {
  accent-color: var(--red);
  width: 14px; height: 14px; cursor: pointer;
}
.contact-form textarea { resize: none; }
.form-submit {
  display: flex; justify-content: flex-end;
  margin-top: 2.5rem;
}
.btn-send {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2.25rem;
  font-family: var(--font-sans); font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-send:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
}
.form-success {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  height: 100%; min-height: 320px;
  gap: 1rem;
}
.form-success h3 { color: var(--charcoal); font-size: 1.5rem; }
.form-success p { color: var(--text-muted); font-family: var(--font-sans); }

@media (max-width: 768px) {
  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
  .contact-card-info { padding: 0; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form .form-row .form-field { margin-bottom: 1.75rem; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--charcoal); text-align: left;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--red); }
.faq-trigger[aria-expanded="true"] { color: var(--red); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer { padding: 0 0 1.5rem; }
.faq-answer p {
  font-size: 0.92rem; color: var(--text-muted); max-width: 100%;
}
.faq-answer[hidden] { display: none; }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-intro {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.25rem; line-height: 1.8;
  color: var(--charcoal); text-align: center;
  max-width: 700px; margin: 0 auto;
}

/* Case studies */
.case-study-block { padding: var(--section-pad) 0; }
.case-study-inner {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.case-headline { font-size: 1.35rem; margin: 0.5rem 0 1rem; }
.case-metric {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}
.metric-number {
  font-family: var(--font-serif); font-size: 2.5rem;
  color: var(--red); line-height: 1;
}
.metric-number--text {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.01em;
}
.metric-label {
  font-family: var(--font-sans); font-size: 0.8rem;
  color: var(--text-muted); letter-spacing: 0.06em;
}

/* Segments */
.segments-row {
  display: flex; flex-wrap: wrap;
  gap: 1rem; justify-content: center;
  margin-top: 2rem;
}
.segment-chip {
  border: 1.5px solid rgba(43, 43, 43, 0.25);
  color: var(--charcoal);
  padding: 14px 28px;
  font-family: var(--font-sans); font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.segment-chip:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); padding: var(--section-pad) var(--gutter);
}
.error-inner { text-align: center; }
.error-code {
  display: block;
  font-family: var(--font-serif); font-size: clamp(5rem, 15vw, 10rem);
  color: var(--red); line-height: 1; margin-bottom: 0.5rem;
}
.error-inner h1 { margin-bottom: 1rem; }
.error-inner p  { color: var(--text-muted); max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
  border-top: 1px solid #3D3D3D;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem; text-decoration: none;
}
.footer-logo span {
  font-family: var(--font-sans); font-size: 0.62rem;
  letter-spacing: 0.15em; font-weight: 300;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: var(--text-muted); max-width: 100%; margin-bottom: 1rem;
}
.footer-copyright {
  font-family: var(--font-sans); font-size: 0.72rem;
  color: var(--text-muted); max-width: 100%;
}
.footer-heading {
  font-family: var(--font-sans); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--red); margin-bottom: 1rem; max-width: 100%;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
  font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--cream); transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-family: var(--font-sans); font-size: 0.85rem;
  color: var(--cream); margin-bottom: 0.6rem; max-width: 100%;
  display: flex; align-items: center; gap: 8px;
}
.footer-contact a { color: var(--cream); transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; display: inline-block;
}
.footer-hours, .footer-location {
  font-family: var(--font-sans); font-size: 0.78rem;
  color: var(--text-muted); max-width: 100%; margin-top: 0.75rem;
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--red); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  z-index: var(--z-toast);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-hover); }
.scroll-top[hidden] { display: none; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  min-height: 200px;
}
.hero-img.img-placeholder,
.section-img.img-placeholder { min-height: 100%; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.fade-up.is-visible,
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-block; }
  .hamburger { display: none; }

  .hero-ctas { flex-direction: row; justify-content: center; }

  .value-grid    { grid-template-columns: repeat(3, 1fr); }
  .card-grid-2   { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .mv-grid       { grid-template-columns: repeat(2, 1fr); }
  .form-row      { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Split section */
  .split-section {
    grid-template-columns: 55fr 45fr;
    min-height: 540px;
  }
  .split-who-we-are {
    min-height: unset;
    align-items: center;
  }
  .split-section.split-reverse {
    grid-template-columns: 45fr 55fr;
  }
  .split-section.split-reverse .split-image { order: 2; }
  .split-section.split-reverse .split-text  { order: 1; }
  .split-text-first { order: 1; }
  .split-dark .split-image { order: 2; }
  .split-dark .split-text-first { order: 1; }

  /* Timeline */
  .timeline::before { display: block; }
  .timeline-node { width: 50%; padding: 0 3rem 3rem 0; }
  .timeline-right { margin-left: 50%; padding: 0 0 3rem 3rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 55fr 45fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.4fr 0.8fr 1.2fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .split-text-inner { max-width: 500px; }
  .client-logo-grid { grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in {
    opacity: 1; transform: none; transition: none;
  }
  .scroll-indicator { animation: none; }
  .marquee-track { animation-play-state: paused; }
}
