/* =========================================================================
   Srinivasa Group — Design System
   Palette: Deep Navy (trust) + Rust Orange (energy, brand) + Bone (warmth)
   Type: Fraunces (display, editorial gravitas) + Manrope (UI)
   ========================================================================= */

:root {
  /* Brand */
  --navy-900: #08182B;
  --navy-800: #0F2A47;   /* primary */
  --navy-700: #1A3A5C;
  --navy-600: #2C4F75;

  /* Accent — pulled from logo */
  --rust-700: #A24722;
  --rust-600: #C75A2C;   /* primary accent */
  --rust-500: #DA6D3D;
  --rust-300: #C75A2C;   /* accent — deepened to dark brand orange */
  --rust-100: #F7E5D8;

  /* Neutrals */
  --ink: #0B1A2A;
  --slate-700: #364959;
  --slate-500: #5A6B7A;
  --slate-400: #8794A2;
  --slate-300: #B8C2CB;
  --slate-200: #D9DEE3;
  --slate-100: #ECEFF2;

  /* Surfaces */
  --bone: #F7F4EE;
  --bone-soft: #EFEBE3;
  --bone-light: #FBF9F4;
  --white: #FFFFFF;

  /* Borders */
  --border: rgba(15, 42, 71, 0.10);
  --border-strong: rgba(15, 42, 71, 0.20);
  --border-light: rgba(15, 42, 71, 0.06);

  /* Type */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --nav-height: 76px;
  --ticker-height: 34px;

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-height) + var(--ticker-height) + 12px); }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-feature-settings: "ss01", "cv11", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--rust-600); color: var(--bone); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; padding: 10px 14px;
  background: var(--navy-800); color: var(--bone); border-radius: 4px; z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* Container */
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ====================== Typography ====================== */
h1, h2, h3, h4 { color: var(--navy-900); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--rust-600); }
.section-title-light { color: var(--bone); }
.section-title-light em { color: var(--rust-300); }

.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 620px;
  line-height: 1.65;
}
.section-desc-light { color: rgba(247, 244, 238, 0.72); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust-600);
  margin-bottom: 16px;
  position: relative; padding-left: 28px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 18px; height: 1.5px; background: var(--rust-600);
}
.section-head.centered .eyebrow { padding-left: 0; }
.section-head.centered .eyebrow::before { display: none; }
.eyebrow-light { color: var(--rust-300); }
.eyebrow-light::before { background: var(--rust-300); }

p { color: var(--slate-700); }
strong { color: var(--navy-900); font-weight: 600; }

/* ====================== Buttons ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.005em; border-radius: 4px;
  transition: all 0.25s var(--ease-out); cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--navy-800); color: var(--bone); border-color: var(--navy-800);
}
.btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: 0 12px 28px -16px rgba(15,42,71,0.6); }

.btn-accent { background: var(--rust-600); color: #fff; border-color: var(--rust-600); }
.btn-accent:hover { background: var(--rust-700); transform: translateY(-1px); box-shadow: 0 12px 28px -16px rgba(199,90,44,0.6); }

.btn-ghost { background: transparent; color: var(--bone); border-color: rgba(247,244,238,0.45); }
.btn-ghost:hover { background: var(--bone); color: var(--navy-900); border-color: var(--bone); }

.btn::after { content: "→"; font-weight: 400; transition: transform 0.25s var(--ease-out); }
.btn:hover::after { transform: translateX(3px); }
.btn-accent::after { display: none; }
.btn-accent .btn-arrow { transition: transform 0.25s var(--ease-out); }
.btn-accent:hover .btn-arrow { transform: translateX(4px); }

/* ====================== Ticker ====================== */
.ticker {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--ticker-height);
  background: var(--navy-900); color: var(--bone);
  overflow: hidden; z-index: 101;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: inline-flex; gap: 56px;
  white-space: nowrap; font-family: var(--font-mono);
  font-size: 0.75rem; line-height: var(--ticker-height);
  letter-spacing: 0.05em;
  animation: ticker 50s linear infinite;
  padding-left: 24px;
}
.ticker-track span b { color: var(--rust-500); margin-right: 6px; font-weight: 700; letter-spacing: 0.12em; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================== Nav ====================== */
.nav {
  position: fixed; top: var(--ticker-height); left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(247, 244, 238, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  background: rgba(247, 244, 238, 0.96);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 46px; width: auto; display: block;
  transition: opacity 0.2s ease;
}
.logo:hover .logo-img { opacity: 0.85; }
@media (max-width: 600px) { .logo-img { height: 38px; } }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9375rem; font-weight: 500; color: var(--slate-700);
  transition: color 0.2s ease; position: relative; padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--rust-600); border-radius: 2px;
}
.nav-links a.nav-cta {
  padding: 9px 20px; color: #fff !important;
  background: linear-gradient(180deg, var(--rust-500) 0%, var(--rust-600) 55%, var(--rust-700) 100%);
  border-radius: 7px;
  box-shadow: 0 3px 0 var(--rust-700), 0 7px 14px -5px rgba(162,71,34,0.5);
  transition: transform 0.12s var(--ease-out), box-shadow 0.12s var(--ease-out), background 0.2s ease;
}
.nav-cta:hover {
  background: linear-gradient(180deg, var(--rust-500) 0%, var(--rust-600) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--rust-700), 0 10px 18px -5px rgba(162,71,34,0.55);
}
.nav-cta:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--rust-700), 0 3px 8px -5px rgba(162,71,34,0.5);
}
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1.5px solid var(--border-strong); border-radius: 8px;
  background: var(--white);
}
.menu-toggle span { width: 22px; height: 2.5px; background: var(--navy-900); transition: all 0.3s ease; border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 900px) {
  /* Taller nav: row 1 = logo + Get a Quote, row 2 = scrollable full menu */
  :root { --nav-height: 116px; }
  .menu-toggle { display: none; }
  .nav-container {
    flex-wrap: wrap;
    align-content: center;
    padding: 10px 16px;
    gap: 8px 12px;
    justify-content: space-between;
    position: relative;
  }
  .logo { order: 1; }
  .nav-links {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    display: flex; flex-direction: row; align-items: center;
    gap: 22px;
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0; padding: 4px 2px 2px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 18px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 18px), transparent 100%);
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links li { width: auto; flex: 0 0 auto; }
  .nav-links a {
    display: inline-block; padding: 4px 0; font-size: 0.95rem;
    white-space: nowrap;
  }
  /* Get a Quote lifts onto row 1, top-right, beside the logo */
  .nav-links li:has(.nav-cta) {
    order: 2; position: absolute; top: 14px; right: 16px;
  }
  .nav-links a.nav-cta { padding: 8px 16px !important; font-size: 0.875rem; }
}
@media (max-width: 600px) {
  :root { --nav-height: 108px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.9rem; }
}

main { padding-top: calc(var(--nav-height) + var(--ticker-height)); }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - var(--ticker-height));
  display: flex; align-items: center;
  padding: 48px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(1.08);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,24,43,0.32) 0%, rgba(8,24,43,0.68) 100%),
    linear-gradient(100deg, rgba(8,24,43,0.55) 0%, rgba(8,24,43,0.25) 55%, rgba(8,24,43,0.10) 100%),
    radial-gradient(70% 55% at 75% 35%, rgba(199,90,44,0.18) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(80% 80% at 50% 50%, #000 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 24px;
  color: var(--bone);
}
@media (min-width: 768px) { .hero-inner { padding: 0 32px; } }

.eyebrow.eyebrow-light + .hero-title { margin-top: 8px; }
.hero-inner .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(247,244,238,0.25);
  border-radius: 999px;
  background: rgba(8,24,43,0.35);
  backdrop-filter: blur(8px);
  margin-bottom: 28px; padding-left: 14px;
}
.hero-inner .eyebrow::before { display: none; }
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust-500);
  box-shadow: 0 0 0 0 rgba(218,109,61,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(218,109,61,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(218,109,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(218,109,61,0); }
}

.hero-title { display: block; max-width: 14ch; }
.hero-display {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--bone);
  text-shadow: 0 2px 30px rgba(8,24,43,0.35);
}
.hero-accent { color: var(--bone); }
.hero-accent em {
  font-style: italic; font-weight: 400; color: var(--rust-600);
}

.hero-lede {
  margin-top: 26px;
  max-width: 580px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(247,244,238,0.92);
  text-shadow: 0 1px 18px rgba(8,24,43,0.45);
  text-wrap: pretty;
}
.hero-lede strong { color: var(--bone); font-weight: 600; }

.hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(247,244,238,0.18);
  border-bottom: 1px solid rgba(247,244,238,0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .hs-divider { display: none; }
}
.hs-item { display: flex; flex-direction: column; gap: 4px; }
.hs-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bone); letter-spacing: -0.025em; line-height: 1;
}
.hs-label {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: rgba(247,244,238,0.7);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hs-divider { width: 1px; height: 36px; background: rgba(247,244,238,0.18); }

.hero-scroll {
  position: absolute; right: 32px; bottom: 24px;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,244,238,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(247,244,238,0.4); animation: scrollHint 2s infinite; }
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* ====================== Trust strip ====================== */
.trust {
  background: var(--navy-800);
  padding: 18px 0;
  color: var(--bone);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-row {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap; justify-content: space-between;
}
.trust-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,244,238,0.55);
}
.trust-marks { display: flex; gap: 36px; flex-wrap: wrap; }
.trust-marks span {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  color: rgba(247,244,238,0.78); letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.trust-marks span:hover { color: var(--bone); }
/* Trust strip pinned directly under the nav, flowing into the hero */
.trust-top {
  background: var(--navy-900);
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ====================== Sections base ====================== */
section { padding: 96px 0; }
@media (min-width: 1024px) { section { padding: 120px 0; } }
.trust { padding: 16px 0; }

/* ====================== Customers ====================== */
.customers {
  background: linear-gradient(180deg, var(--bone-light) 0%, var(--bone) 100%);
}
.cust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}
.cust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.cust-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 48px -28px rgba(15,42,71,0.25);
}
.cust-card-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-color: transparent;
  color: var(--bone);
}
.cust-card-hero h3,
.cust-card-hero .cust-blurb { color: var(--bone); }
.cust-card-hero .cust-blurb { color: rgba(247,244,238,0.78); }
.cust-card-hero .cust-stats b { color: var(--rust-300); }
.cust-card-hero .cust-stats small { color: rgba(247,244,238,0.55); }
.cust-card-hero .cust-since { color: var(--rust-300); }
.cust-card-hero .cust-tag { background: rgba(255,255,255,0.08); color: rgba(247,244,238,0.7); }
.cust-card-hero .cust-logo {
  background: var(--bone);
  padding: 12px 16px;
  border-radius: 6px;
}

@media (max-width: 720px) {
  .cust-card-hero { grid-column: span 1; }
}

.cust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.cust-card-hero .cust-head { border-bottom-color: rgba(255,255,255,0.08); }
.cust-logo {
  height: 56px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 60%;
}
.cust-logo img {
  max-height: 40px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.cust-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-800);
}
.cust-logo-hul {
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #1F36C7;
}
.cust-logo-itc {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #C8102E;
}
.cust-logo-castrol {
  font-family: var(--font-sans);
  font-weight: 800;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #00A551;
  background: linear-gradient(180deg, #00A551 0%, #008542 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cust-logo-pidilite {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: #E94E1B;
}
.cust-logo-marico {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: #00529B;
}
.cust-card-hero .cust-logo-hul { color: #FFFFFF; }
.cust-card-hero .cust-logo {
  background: transparent;
  padding: 0;
}
.cust-meta { text-align: right; }
.cust-since {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-600);
  font-weight: 500;
  margin-bottom: 4px;
}
.cust-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bone-soft);
  color: var(--slate-700);
  letter-spacing: 0.02em;
}
.cust-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  margin: 0;
}
.cust-blurb {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--slate-700);
  flex: 1;
}
.cust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.cust-card-hero .cust-stats { border-top-color: rgba(255,255,255,0.08); }
.cust-stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cust-stats b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.cust-stats small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.cust-award {
  margin-top: 4px;
  display: inline-flex;
  align-self: flex-start;
  background: var(--rust-600);
  color: var(--bone);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Operations table */
@media (max-width: 600px) {
  .ops-table-head { padding: 20px 20px; }
  .ops-table thead th, .ops-table tbody td { padding: 12px 14px; font-size: 0.88rem; }
}
.ops-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.ops-table-head {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.ops-table-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--navy-900);
}
.ops-table-head p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0;
}
.ops-table-scroll {
  overflow-x: auto;
}
.ops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}
.ops-table thead th {
  text-align: left;
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 500;
  background: var(--bone-light);
  border-bottom: 1px solid var(--border-light);
}
.ops-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--slate-700);
  vertical-align: middle;
}
.ops-table tbody tr:last-child td { border-bottom: none; }
.ops-table tbody tr { transition: background 0.2s ease; }
.ops-table tbody tr:hover { background: var(--bone-light); }
.ops-table tbody td b { color: var(--navy-900); font-weight: 600; }

/* Operations footprint — facility map (dark) */
.ops-map-wrap {
  background: linear-gradient(155deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
}
.ops-map-wrap .ops-table-head {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.ops-map-wrap .ops-table-head h3 { color: var(--bone); }
.ops-map-wrap .ops-table-head p { color: rgba(247,244,238,0.55); }

.ops-map-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
@media (max-width: 860px) { .ops-map-grid { grid-template-columns: 1fr; } }

.ops-map-figure {
  margin: 0;
  padding: 36px 28px;
  background:
    radial-gradient(58% 50% at 52% 44%, rgba(199,90,44,0.16) 0%, transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 60%);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .ops-map-figure { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); } }
.ops-map { width: 100%; max-width: 440px; height: auto; }

.fp-state {
  fill: rgba(255,255,255,0.045);
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.1;
}
.fp-state-hub { fill: rgba(199,90,44,0.24); stroke: rgba(218,109,61,0.75); stroke-width: 1.3; }
.fp-state-label {
  font-family: var(--font-mono); font-size: 8px; font-weight: 600;
  letter-spacing: 0.12em; fill: rgba(247,244,238,0.42); pointer-events: none;
}
.fp-links line { stroke: rgba(218,109,61,0.55); stroke-width: 1; stroke-dasharray: 3 3; }

.fp-dot { fill: var(--rust-500); }
.fp-pin-hub .fp-dot { fill: var(--rust-500); stroke: var(--navy-900); stroke-width: 2; }
.fp-pulse { fill: var(--rust-300); opacity: 0.4; transform-origin: center; transform-box: fill-box; animation: fpPulse 2.6s ease-out infinite; }
@keyframes fpPulse {
  0% { transform: scale(0.6); opacity: 0.55; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .fp-pulse { animation: none; } }
.fp-city {
  font-family: var(--font-mono); font-size: 8px; font-weight: 600;
  letter-spacing: 0.04em; fill: rgba(247,244,238,0.9); pointer-events: none;
}
.fp-pin-hub .fp-city { fill: var(--rust-300); font-size: 8.5px; }
.fp-foot {
  font-family: var(--font-mono); font-size: 6.5px; font-weight: 500;
  letter-spacing: 0.14em; fill: rgba(247,244,238,0.4);
}

.ops-cust-list { display: flex; flex-direction: column; }
.ops-cust-list li {
  padding: 17px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease;
}
.ops-cust-list li:last-child { border-bottom: none; }
.ops-cust-list li:hover { background: rgba(255,255,255,0.035); }
.ocl-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ocl-name {
  font-family: var(--font-display); font-weight: 500; font-size: 1.2rem;
  color: var(--bone); letter-spacing: -0.01em;
}
.ocl-count {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rust-300); font-weight: 500; white-space: nowrap;
}
.ocl-sites { font-size: 0.82rem; color: rgba(247,244,238,0.62); margin: 4px 0 10px; }
.ocl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.ocl-chips span {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: rgba(247,244,238,0.82);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ====================== Gallery ====================== */
.gallery { background: var(--bone); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: 0 18px 40px -28px rgba(15,42,71,0.5);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
  background: linear-gradient(180deg, transparent 0%, rgba(8,24,43,0.82) 100%);
}
.g-tag {
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--rust-300);
}
.g-cap {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  color: var(--bone); letter-spacing: -0.01em;
}
.g-item-feature { grid-column: span 6; grid-row: span 2; }
.gallery-grid .g-item:nth-child(2) { grid-column: span 6; }
.gallery-grid .g-item:nth-child(3) { grid-column: span 3; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 3; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item-feature { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .g-item:nth-child(2) { grid-column: span 2; }
  .gallery-grid .g-item:nth-child(3) { grid-column: span 1; }
  .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
}
.ops-table .num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--font-mono); font-size: 0.85rem; }
.ops-table thead th.num { text-align: right; }

/* ====================== Services tabs ====================== */
.services { background: var(--bone); }

.services-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .services-tabs { grid-template-columns: repeat(2, 1fr); }
}
.tab {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px;
  text-align: left;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease;
}
.tab:last-child { border-right: none; }
.tab::before {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--rust-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.tab.active::before { transform: scaleX(1); }
.tab:hover { background: var(--bone-light); }
.tab-num {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--slate-400); letter-spacing: 0.1em;
}
.tab.active .tab-num { color: var(--rust-600); }
.tab-label {
  font-weight: 600; font-size: 1rem; color: var(--slate-500);
}
.tab.active .tab-label { color: var(--navy-900); }

.services-panels { position: relative; min-height: 480px; }

.panel {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  animation: panelIn 0.5s var(--ease-out);
}
.panel.active { display: grid; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .panel { grid-template-columns: 1fr; gap: 32px; }
}

.panel-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px; overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 30px 60px -30px rgba(15,42,71,0.4);
}
.panel-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(8%) contrast(1.05);
  transition: transform 8s linear;
}
.panel.active .panel-media img { transform: scale(1.05); }
.panel-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--bone); color: var(--navy-900);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; font-weight: 500;
}

.panel-body h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 16px;
}
.panel-body > p {
  font-size: 1.05rem; line-height: 1.65; color: var(--slate-500);
  margin-bottom: 24px;
}
.panel-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.panel-bullets li {
  position: relative; padding-left: 22px;
  font-size: 0.95rem; color: var(--slate-700);
}
.panel-bullets li b { color: var(--navy-900); font-weight: 600; }
.panel-bullets li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 1.5px; background: var(--rust-600);
}

.panel-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.panel-stats > div {
  border-right: 1px solid var(--border);
  padding-right: 16px;
}
.panel-stats > div:last-child { border-right: none; }
.panel-stats span {
  display: block;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.6rem; color: var(--navy-900);
  letter-spacing: -0.02em; line-height: 1;
}
.panel-stats small {
  display: block; margin-top: 6px;
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--slate-500);
}

/* ====================== Excellence ====================== */
.excellence { background: var(--bone-soft); }
.excellence-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 900px) {
  .excellence-grid { grid-template-columns: 1fr; gap: 56px; }
}
.features {
  margin-top: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px;
}
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }
.feature {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  align-items: flex-start;
}
.feature-num {
  font-family: var(--font-mono); font-size: 0.78rem;
  font-weight: 500; color: var(--rust-600);
  padding-top: 4px; letter-spacing: 0.06em;
}
.feature h4 { margin-bottom: 6px; font-weight: 700; font-size: 1rem; }
.feature p { font-size: 0.93rem; color: var(--slate-500); line-height: 1.6; }

.excellence-figure {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(15,42,71,0.4);
}
.excellence-figure img,
.excellence-figure video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%) contrast(1.05); display: block; }
.figure-card {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--bone); padding: 20px 24px;
  border-radius: 4px; min-width: 200px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  border-left: 3px solid var(--rust-600);
}
.figure-card-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 2.4rem; color: var(--navy-900);
  letter-spacing: -0.025em; line-height: 1;
}
.figure-card-label {
  margin-top: 6px;
  font-size: 0.82rem; color: var(--slate-500);
  letter-spacing: 0.02em;
}

/* ====================== About / Timeline ====================== */
.about { background: var(--bone); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-prose { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-prose p { font-size: 1.0125rem; line-height: 1.7; color: var(--slate-500); }

.founder-card {
  margin-top: 36px;
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 20px;
  background: var(--bone-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid var(--rust-600);
}
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-800); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  letter-spacing: 0.02em;
}
.founder-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--navy-900); letter-spacing: -0.01em; }
.founder-role { font-size: 0.85rem; color: var(--slate-500); margin-top: 2px; }
.founder-award {
  margin-top: 8px;
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--rust-600);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 12px; bottom: 12px;
  width: 1px; background: var(--border-strong);
}
.t-item {
  position: relative;
  padding-bottom: 28px;
  display: grid; grid-template-columns: 90px 1fr; gap: 20px;
  align-items: start;
}
.t-item::before {
  content: ""; position: absolute; left: -34px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bone); border: 2px solid var(--slate-300);
  transition: all 0.2s ease;
}
.t-item.current::before {
  background: var(--rust-600); border-color: var(--rust-600);
  box-shadow: 0 0 0 4px rgba(199,90,44,0.18);
}
.t-item:hover::before { border-color: var(--rust-600); }
.t-year {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--rust-600); font-weight: 500;
  letter-spacing: 0.06em; padding-top: 4px;
}
.t-card h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.15rem; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.t-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.55; }

/* ====================== Group ====================== */
.group { background: var(--navy-900); color: var(--bone); }
.group .section-title { color: var(--bone); }
.group .section-title em { color: var(--rust-300); }
.group .section-desc { color: rgba(247,244,238,0.7); }
.group .eyebrow { color: var(--rust-300); }
.group .eyebrow::before { background: var(--rust-300); }

.group-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .group-grid { grid-template-columns: 1fr; } }
.group-card {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column;
}
.group-card:hover {
  border-color: var(--rust-500);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}
.gc-logo {
  width: 100%; height: 80px;
  background: var(--bone); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px; margin-bottom: 20px;
}
.gc-logo img { max-height: 60px; max-width: 80%; width: auto; object-fit: contain; }
.gc-meta {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rust-300); margin-bottom: 10px;
}
.group-card h3 {
  color: var(--bone);
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.4rem; letter-spacing: -0.015em;
  margin-bottom: 12px; line-height: 1.15;
}
.group-card p { color: rgba(247,244,238,0.7); font-size: 0.94rem; line-height: 1.6; flex-grow: 1; }
.gc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gc-tags li {
  font-family: var(--font-mono); font-size: 0.7rem;
  padding: 4px 10px; border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; color: rgba(247,244,238,0.75);
  letter-spacing: 0.04em;
}

/* ====================== Coverage ====================== */
.coverage { background: var(--bone); }
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; gap: 40px; } }

.coverage-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.coverage-list li {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  padding: 18px;
  background: var(--bone-light);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coverage-list li:hover { border-left-color: var(--slate-300); }
.coverage-list li.active {
  border-left-color: var(--rust-600);
  background: #fff;
  box-shadow: 0 8px 20px -10px rgba(15,42,71,0.15);
}
.cv-mark {
  width: 56px; height: 56px; border-radius: 6px;
  background: var(--navy-800); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 500; font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.coverage-list li.active .cv-mark { background: var(--rust-600); }
.coverage-list h4 { font-size: 1.05rem; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.coverage-list h4 .hq {
  font-family: var(--font-mono); font-size: 0.65rem;
  background: var(--rust-600); color: #fff;
  padding: 2px 8px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 500;
}
.coverage-list p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.5; margin-bottom: 4px; }
.coverage-list small {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--slate-400); letter-spacing: 0.04em;
}

.coverage-map-wrap {
  position: relative;
  background: var(--bone-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.coverage-map { width: 100%; height: auto; display: block; }
.state-path {
  fill: rgba(15,42,71,0.08);
  stroke: var(--navy-800); stroke-width: 1.6;
  cursor: pointer;
  transition: fill 0.25s ease;
}
.state-path:hover { fill: rgba(199,90,44,0.18); }
.state-path.active { fill: var(--rust-600); stroke: var(--rust-700); }
.state-label { font-family: var(--font-sans); font-size: 11px; font-weight: 700; fill: var(--navy-800); letter-spacing: 0.04em; pointer-events: none; }
.state-label-on { fill: var(--bone); }
.state-path.active + .state-label, .state-label.is-active { fill: var(--bone); }
.hq-dot { fill: var(--rust-300); pointer-events: none; }
.hq-text { font-family: var(--font-mono); font-size: 8px; font-weight: 600; fill: var(--bone); letter-spacing: 0.1em; pointer-events: none; }
.ops-dots circle { fill: var(--navy-800); }
.map-foot { font-family: var(--font-mono); font-size: 9px; font-weight: 500; fill: var(--slate-500); letter-spacing: 0.15em; }

/* ====================== Testimonials ====================== */
.testimonials { background: var(--bone-soft); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  position: relative;
  background: var(--bone-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.t-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(15,42,71,0.2); }
.t-featured {
  background: var(--navy-800); color: var(--bone);
  border-color: var(--navy-800);
}
.t-featured p { color: rgba(247,244,238,0.92); }
.t-featured strong { color: var(--bone); }
.t-featured small { color: rgba(247,244,238,0.6) !important; }
.t-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.7;
  color: var(--rust-600);
  margin-bottom: 8px;
}
.t-featured .t-quote { color: var(--rust-300); }
.t-card p { font-size: 0.98rem; line-height: 1.6; flex-grow: 1; margin-bottom: 24px; }
.t-card footer { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rust-600); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500;
}
.t-featured .t-avatar { background: var(--rust-500); }
.t-card footer strong { display: block; font-size: 0.92rem; }
.t-card footer small { display: block; font-size: 0.8rem; color: var(--slate-500); margin-top: 2px; }
.t-award {
  display: inline-block;
  background: var(--rust-600); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.08em; font-weight: 500;
  margin-bottom: 16px; align-self: flex-start;
}

/* ====================== FAQ ====================== */
.faq { background: var(--bone); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  color: var(--navy-900); letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--rust-600); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--navy-800);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-bottom: 22px; padding-right: 40px; font-size: 0.98rem; line-height: 1.65; color: var(--slate-500); }

/* ====================== Contact ====================== */
.contact { background: var(--navy-900); color: var(--bone); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-details { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; }
@media (max-width: 480px) { .contact-details { grid-template-columns: 1fr; } }
.cd-item {}
.cd-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rust-300); margin-bottom: 8px;
}
.cd-value { font-size: 0.96rem; line-height: 1.55; color: rgba(247,244,238,0.88); overflow-wrap: anywhere; }
.cd-value a { color: inherit; border-bottom: 1px solid rgba(247,244,238,0.3); transition: color 0.2s ease; }
.cd-value a:hover { color: var(--rust-300); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(247,244,238,0.65);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--bone);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rust-500); background: rgba(0,0,0,0.28);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,244,238,0.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23F7F4EE' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field-error {
  display: none;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--rust-300); letter-spacing: 0.04em;
  margin-top: 2px;
}
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--rust-500); }

/* Careers note */
.career-note {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(247,244,238,0.72);
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.career-note-label {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--rust-300); font-weight: 500;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(199,90,44,0.14); border: 1px solid rgba(199,90,44,0.3);
}
.career-note a { color: var(--rust-300); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; overflow-wrap: anywhere; }
.career-note a:hover { color: var(--bone); }

.form-success {
  margin-top: 8px;
  padding: 14px 16px;
  background: rgba(199,90,44,0.16);
  border: 1px solid var(--rust-500);
  border-radius: 4px;
  color: var(--bone);
  font-size: 0.92rem;
}

/* ====================== Footer ====================== */
.footer { background: #06121F; color: var(--bone); padding: 80px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; gap: 48px; } }
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; opacity: 0.95; }
.footer-brand p { color: rgba(247,244,238,0.6); font-size: 0.92rem; line-height: 1.6; max-width: 360px; }
.footer-motto {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem;
  color: var(--rust-300) !important; margin-top: 14px !important;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 560px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; } }
.footer-cols h5 {
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--rust-300); margin-bottom: 16px; font-weight: 500;
}
.footer-cols a {
  display: block; font-size: 0.92rem; color: rgba(247,244,238,0.7);
  padding: 5px 0; transition: color 0.2s ease;
}
.footer-cols a:hover { color: var(--bone); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.84rem; color: rgba(247,244,238,0.5); }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a { font-size: 0.84rem; color: rgba(247,244,238,0.6); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--bone); }

/* ====================== Reveal animations ====================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
