/* ============================================================
   TSAVO OILFIELD SERVICES — style.css
   Light / cool-grey theme
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand */
  --red:          #c8151b;
  --red-dark:     #c0151b;
  --red-tint:     rgba(237, 28, 36, 0.10);
  --red-border:   rgba(237, 28, 36, 0.45);

  /* Grey system */
  --bg:           #f2f2f2;
  --bg-alt:       #ebebeb;
  --bg-card:      #f7f7f7;
  --bg-dark:      #2b2b2b;
  --bg-white:     #ffffff;

  /* Typography */
  --text-primary: #1a1a1a;
  --text-muted:   #666666;
  --text-light:   #999999;
  --text-white:   #ffffff;

  /* Borders */
  --border:       rgba(0, 0, 0, 0.09);
  --border-dark:  rgba(0, 0, 0, 0.15);
  --border-red:   rgba(237, 28, 36, 0.45);

  /* Structure */
  --radius-card:  2rem;
  --radius-pill:  999px;
  --max-width:    1280px;
  --nav-height:   72px;
}

/* ── 2. RESET + BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a       { text-decoration: none; color: inherit; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }
img     { display: block; max-width: 100%; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
h3 { font-size: 1.375rem; font-weight: 900; line-height: 1.2; }
p  { font-size: 1rem; line-height: 1.8; }

/* ── 4. UTILITIES ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Section label */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: left;
}

.section-label.sectors {
  justify-content: center;
  font-size: 1.5rem;
  color: #6b7280;
  font-weight: 600;
}

.section-label__line {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-label span:last-child {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6b7280;
}

/* On light backgrounds (capabilities section) */
.section-label--on-light > span:last-child { color: var(--text-muted); }

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn i { width: 1rem; height: 1rem; transition: transform 0.2s; }
.btn:hover i { transform: translateX(3px); }

.btn--pill    { border-radius: var(--radius-pill); padding: 0.6875rem 1.375rem; }
.btn--square  { border-radius: 10px; padding: 0.75rem 1.75rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;}
.nav-cta.btn--square { border-radius: 0.5rem; }
.btn--red     { background: var(--red-dark); color: #fff; }
.btn--red:hover { background: var(--red-dark); }

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-dark);
}
.btn--outline:hover { background: var(--bg-alt); }

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.70);
  color: #ffffff;
  border-radius: 4px;
  padding: 0.75rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.btn--outline-white:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.btn--outline-dark {
  background: transparent;
  border: 2px solid #0a0a0a;
  color: #0a0a0a;
  border-radius: 4px;
  padding: 0.65rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: fit-content;
}
.btn--outline-dark:hover {
  background-color: #0a0a0a;
  color: #ffffff;
}

/* ── 6. LOGO ──────────────────────────────────────────────── */
.logo { display: inline-block; line-height: 1; }

.logo__img {
  height: 180px;
  width: auto;
  max-width: 240px;
  object-fit: cover;
  display: block;
  border-radius: 12%;
}

.logo__wordmark {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red);
}
.logo__rule {
  height: 3px;
  width: 100%;
  margin-top: 0.2rem;
  background: var(--text-primary);
}
.logo__sub {
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Footer variant */
.logo__rule--dark { background: var(--text-white); }
.logo__sub--dark  { color: var(--text-light); }

/* CONTACT STRIP */

#top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.45rem 1rem;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 40px;
  overflow: hidden;
  opacity: 1;
  background: inherit;
}

#top-bar.hidden {
  max-height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar__link:hover { color: #ED1C24; }

.top-bar__link svg {
  width: 0.85rem;
  height: 0.85rem;
}

.top-bar__divider {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 1rem;
}

/* ── 7. HEADER / NAV ──────────────────────────────────────── */
#site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 0.35s ease, border-color 0.35s ease,
              backdrop-filter 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
  border-bottom: 1px solid transparent;
}

/* Transparent state — over hero image */
#site-header.header--transparent {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* Scrolled state */
#site-header.scrolled {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
#site-header.scrolled:hover,
#site-header.scrolled:focus-within {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-inner {
  width: 100%;
  margin-inline: 0;
  padding-left: 2rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 0;
  flex: 1;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }

.nav-cta { display: none; }

.nav-logo {
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-dark);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(200, 21, 27, 0.35);
}
.nav-cta-link svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.nav-cta-link:hover {
  background: #a81117;
  transform: translateY(-1px);
}
.nav-cta-link:hover svg {
  transform: translateX(3px);
}

/* ── 8. HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0a0a0c;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 5, 8, 0.97) 0%,
    rgba(5, 5, 8, 0.88) 30%,
    rgba(5, 5, 8, 0.45) 55%,
    rgba(5, 5, 8, 0.0) 80%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 700px;
  padding-left: 0;
}

.hero-eyebrow {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8151b;
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline--red {
  color: #c8151b;
  display: block;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: #d1d5db;
  margin-bottom: 2.25rem;
  max-width: 500px;
  font-weight: 600;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; }

.hero-actions .btn--square {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Sector icon strip */
.hero-strip {
  position: relative;
  z-index: 3;
  background: #111114;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}

.hero-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  flex: auto;
  justify-content: left;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.hero-strip__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #c8151b;
  flex-shrink: 0;
}

.hero-strip__sep {
  width: 1px;
  background: rgba(255,255,255,0.10);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0.5rem 0;
}

/* Values sub-strip */
.hero-values {
  position: relative;
  z-index: 3;
  background: #0d0d10;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 100%;
  padding: 0 3rem;
}

.hero-values__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  flex: 0 0 auto;
}

.hero-values__icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #c8151b;
  flex-shrink: 0;
}

.hero-values__title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f3f4f6;
  margin-bottom: 0.05rem;
}

.hero-values__desc {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.4;
  font-weight: 600;
}

.hero-values__sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0.75rem 0;
}

/* Tagline bar */
.hero-tagline {
  position: relative;
  z-index: 3;
  background: #0a0a0c;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.85rem 3rem;
  display: flex;
  justify-content: center;
}

.hero-tagline p {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.hero-tagline--red { color: #c8151b; }

/* Mobile hero */
@media (max-width: 768px) {
  .hero-inner { padding: 7rem 1.5rem 2rem; }
  .hero-strip__inner { overflow-x: auto; gap: 0; padding: 0 1rem; }
  .hero-strip__item { padding: 0.75rem 0.5rem; font-size: 0.65rem; }
  .hero-values { flex-wrap: wrap; padding: 0 1rem; }
  .hero-values__item { flex: 1 1 45%; padding: 0.75rem 0.5rem; }
  .hero-values__sep { display: none; }
  .hero-tagline { padding: 0.75rem 1.5rem; }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--border-dark);
  background: var(--bg-white);
  border-radius: var(--radius-pill);
  padding: 0.4375rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  width: fit-content;
  margin-bottom: 2rem;
}
.badge__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── 9. ABOUT ─────────────────────────────────────────────── */
#about {
  background: #f5f5f5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 0;
}

/* Top two-column row */
.about-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding-bottom: 4rem;
}

.about-left {
  padding-right: 3rem;
}

.about-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.about-headline-rule {
  width: 2.5rem;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.25rem;
}

.about-quote {
  border-left: none;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 380px;
}

/* Vertical divider between columns */
.about-divider {
  width: 1px;
  background: #d1d5db;
  margin: 0 3.5rem;
  align-self: stretch;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.about-right p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #374151;
  font-weight: 600;
}

.about-highlight {
  color: var(--red);
  font-weight: 600;
}

/* Bottom 5-pillar row */
.about-pillars {
  display: flex;
  align-items: flex-start;
  padding: 3rem 0;
}

.about-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.about-pillar__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.about-pillar__icon svg {
  width: 70px;
  height: 70px;
  stroke-width: 1;
}

.about-pillar__icon--logo {
  border-radius: 0.75rem;
  padding: 0.5rem;
  width: 88px;
  height: 88px;
}

.about-pillar__icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-pillar__label {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-pillar__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 500;
}

/* Vertical separators between pillars */
.about-pillar__sep {
  width: 1px;
  align-self: stretch;
  background: #d1d5db;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-divider { display: none; }
  .about-left { padding-right: 0; }

  .about-pillars {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .about-pillar { flex: 1 1 40%; }
  .about-pillar__sep { display: none; }
}

/* ── 10. SECTORS ──────────────────────────────────────────── */
#sectors {
  background: var(--bg-alt);
  padding: 6rem 0;
  padding-inline: 0;
  overflow: hidden;
}

#sectors .container {
  max-width: 100%;
  padding-inline: 1rem;
}

.sectors-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.sectors-header h2 { font-weight: 100; }

.sectors-desc { color: var(--text-light); max-width: 28rem; }

/* Desktop: 7-column grid */
.sectors-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 0.3rem;
  width: 100%;
  overflow: visible !important;
  padding-inline: 0.5rem;
  align-items: start;
}

.sector-card-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sector-card {
  position: relative;
  width: 100% !important;
  min-width: 0 !important;
  height: 260px;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  flex-shrink: unset !important;
  scroll-snap-align: unset !important;
}


.sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

@media (hover: hover) {
  .sector-card:hover {
    border-color: var(--card-accent);
    transform: translateY(-4px);
  }
}

.sector-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem;
  z-index: 2;
}

.sector-card__icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}
.sector-card__icon i { width: 1.5rem; height: 1.5rem; }

.sector-card__body h3 {
  font-size: 0.9rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.sector-card__body p { display: none; }

.sector-card__caption {
  padding: 0.75rem 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sector-card__caption h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.sector-card__caption .sector-card__btn { flex-shrink: 0; }

/* Logo panel above card */
.sector-card__logo {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.sector-card__logo img {
  max-height: 100px;
  max-width: 90%;
  object-fit: cover;
}

/* Background image */
.sector-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.sector-card__bg.marives { object-position: center 20%; }

.sector-card:hover .sector-card__bg { transform: scale(1.04); }

.sector-card:hover .sector-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.40) 40%,
    rgba(0,0,0,0.92) 100%
  );
}

.sector-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ED1C24;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sector-card__btn:hover {
  background: #c8151b;
  transform: translateY(-2px);
}

.sector-card__btn svg {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.2s ease;
}

.sector-card:hover .sector-card__btn {
  background-color: var(--card-accent);
  border-color: var(--card-accent);
}

/* ── 11. CAPABILITIES ─────────────────────────────────────── */
#capabilities .container {
  max-width: 1520px;        
  padding-inline: 4rem;     
}

#capabilities {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.capabilities-left h2 {
  margin: 0.75rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.capabilities-body {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #6b7280;
  max-width: 320px;
  font-weight: 600;
}

/* Architecture circle diagram */
.arch-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.arch-circle-wrap {
  position: relative;
  width: 640px;
  height: 640px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0;
}

/* Dashed circle — light grey matching screenshot */
.arch-circle-wrap::before {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1.5px dashed #d1d5db;
}

.arch-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: #111827;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.20);
  z-index: 2;
  padding: 1rem;
}

.arch-hub__brand {
  font-size: 2.4rem;
  font-weight: 1000;
  color: #c8151b;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.arch-hub__sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: #9ca3af;
  line-height: 1.5;
}

/* Each pillar */
.arch-pillar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 130px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.arch-pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  color: #c8151b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.arch-pillar__icon svg { width: 1.3rem; height: 1.3rem; stroke-width: 1.5; }

.arch-pillar:hover .arch-pillar__icon {
  background-color: #c8151b;
  color: #ffffff;
  transform: scale(1.1);
}

.arch-pillar__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
  line-height: 1.35;
  text-align: center;
}

.arch-pillar__desc {
  font-size: 0.68rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.45;
  text-align: center;
  display: none; /* shown on hover */
}

.arch-pillar:hover .arch-pillar__desc { display: block; }

/* Pillar positions — radius 250px, 45° apart */
.arch-pillar--1 { top: calc(50% - 250px); left: 50%; }
.arch-pillar--2 { top: calc(50% - 177px); left: calc(50% + 177px); }
.arch-pillar--3 { top: 50%;               left: calc(50% + 250px); }
.arch-pillar--4 { top: calc(50% + 177px); left: calc(50% + 177px); }
.arch-pillar--5 { top: calc(50% + 250px); left: 50%; }
.arch-pillar--6 { top: calc(50% + 177px); left: calc(50% - 177px); }
.arch-pillar--7 { top: 50%;               left: calc(50% - 250px); }
.arch-pillar--8 { top: calc(50% - 177px); left: calc(50% - 177px); }

@media (max-width: 1100px) {
  .arch-circle-wrap { width: 460px; height: 460px; }
  .arch-pillar--1 { top: calc(50% - 175px); left: 50%; }
  .arch-pillar--2 { top: calc(50% - 124px); left: calc(50% + 124px); }
  .arch-pillar--3 { top: 50%;               left: calc(50% + 175px); }
  .arch-pillar--4 { top: calc(50% + 124px); left: calc(50% + 124px); }
  .arch-pillar--5 { top: calc(50% + 175px); left: 50%; }
  .arch-pillar--6 { top: calc(50% + 124px); left: calc(50% - 124px); }
  .arch-pillar--7 { top: 50%;               left: calc(50% - 175px); }
  .arch-pillar--8 { top: calc(50% - 124px); left: calc(50% - 124px); }
  .arch-pillar { width: 100px; }
}

/* ── 12. LEADERSHIP / FOUNDER BANNER ─────────────────────── */
#leadership {
  padding: 0;
  background: #f3f3f3;
}

.leadership-grid { display: block; }

.founder-banner {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.founder-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 1%;
  display: block;
}

.founder-banner__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 1;
}

.founder-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 4rem;
  padding-left: 4rem;
  padding-right: 2rem;
}

.founder-banner__content {
  max-width: 550px;
  padding-left: 2rem;
  padding-top: 6rem;
}

.founder-banner__role {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8151b;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.founder-banner__name {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.founder-banner__bio {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  font-weight: bold;
}

.founder-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ED1C24;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.founder-banner__cta:hover {
  background: #c8151b;
  transform: translateY(-2px);
}

.founder-banner__cta svg { width: 1rem; height: 1rem; }

#leadership .section-label span:last-child { color: #6b7280; }
#leadership .section-label__line { background-color: #c8151b; }

/* Founder showcase */
#founder-showcase { background: #f3f3f3; }

.founder-showcase__content {
  display: grid;
  grid-template-columns: 34% 66%;
  height: 360px;
  overflow: hidden;
}

.founder-showcase__copy {
  padding: 2.25rem 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-showcase__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.8rem;
}

.founder-showcase__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: #c8151b;
  margin-bottom: 1.5rem;
}

.founder-showcase__text {
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

.founder-showcase__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.85rem 1.4rem;
  border: 1px solid rgba(200,21,27,0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #222;
  transition: all 0.2s ease;
}

.founder-showcase__btn:hover {
  background: #c8151b;
  color: #fff;
}

.founder-showcase__image-wrap { overflow: hidden; }

.founder-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  display: block;
}

/* ── 13. LOCAL CONTENT ────────────────────────────────────── */
#local-content {
  padding: 0;
  background: #f4f0ea;
}

.local-banner {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  min-height: 0;
  height: auto;          
  overflow: hidden;
}

.local-banner__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  background-color: #f4f0ea;
}

.local-banner__eyebrow {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8151b;
  margin-bottom: 0.6rem;
}

.local-banner__rule {
  width: 2rem;
  height: 2px;
  background: #c8151b;
  margin-bottom: 1rem;
}

.local-banner__heading {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.0;
  color: #0a0a0a;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.local-banner__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1.5rem;
  max-width: 360px;
  font-weight: 400;
}

/* Stacked pillars */
.local-pillars {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.local-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.5rem 0;
}

.local-pillar__sep {
  height: 1px;
  background: #d1d5db;
  width: 100%;
}

.local-pillar__icon {
  color: #c8151b;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.local-pillar__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.5;
}

.local-pillar__title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111114;
  margin-bottom: 0.15rem;
}

.local-pillar__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #6b7280;
  font-weight: 600;
}

.local-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Slideshow — fills height of text column exactly */
.local-slideshow {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  height: 100%;           
}

.local-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.local-slide.active { opacity: 1; }

.local-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;        
  object-position: center;
  display: block;
}

/* Dots */
.local-slide__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.local-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.local-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

/* Arrows */
.local-slide__prev,
.local-slide__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: #ED1C24;      
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* REPLACE hover rule */
.local-slide__prev:hover,
.local-slide__next:hover { background: #c8151b; }

/* REPLACE position rules */
.local-slide__prev { left: 1rem; }
.local-slide__next { right: 1rem; }

.local-slide__prev svg,
.local-slide__next svg { width: 1rem; height: 1rem; }

/* Bottom stats bar */
.local-stats {
  display: flex;
  align-items: center;
  background: #ebe7e0;
  border-top: 1px solid #d1d5db;
  padding: 1.25rem 2.5rem;
}

.local-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1.25rem;
}

.local-stat__icon {
  color: #c8151b;
  flex-shrink: 0;
}
.local-stat__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
}

.local-stat__title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111114;
  margin-bottom: 0.15rem;
}

.local-stat__desc {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #6b7280;
}

.local-stat__sep {
  width: 1px;
  height: 2.5rem;
  background: #d1d5db;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .local-banner { grid-template-columns: 1fr; }
  .local-slideshow { height: 300px; }
  .local-banner__text { padding: 2rem 1.5rem; }
  .local-stats { flex-wrap: wrap; padding: 1rem 1.5rem; gap: 1rem; }
  .local-stat { flex: 1 1 40%; padding: 0.5rem; }
  .local-stat__sep { display: none; }
}

/* ── 14. WHY TSAVO ────────────────────────────────────────── */
#why-tsavo {
  background: var(--bg-white);
  padding: 2rem 0;
}

#why-tsavo .container {
  max-width: 95%;
}

.why-card {
  background: #16181f;
  border-radius: var(--radius-card);
  padding: 3rem 3rem 3rem 3rem;
  color: var(--text-white);
  overflow: hidden;
}

/* Two-column layout: left text | vertical divider | right grid */
.why-layout {
  display: grid;
  grid-template-columns: 0.85fr auto 1.4fr;
  gap: 0;
  align-items: stretch;
}

/* Left column */
.why-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

.why-left .section-label span:last-child { color: #9ca3af; }

.why-left h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}

.why-body {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 2rem;
}

.why-cta {
  width: fit-content;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
}

/* Vertical divider */
.why-divider {
  width: 1px;
  background: rgba(255,255,255,0.10);
  margin: 0 3rem;
  align-self: stretch;
}

/* Right: 2×3 pillar grid */
.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}

.why-pillar {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Remove right border on last column, bottom border on last row */
.why-pillar:nth-child(3),
.why-pillar:nth-child(6) { border-right: none; }
.why-pillar:nth-child(4),
.why-pillar:nth-child(5),
.why-pillar:nth-child(6) { border-bottom: none; }

.why-pillar__icon {
  color: #c8151b;
  margin-bottom: 0.25rem;
}
.why-pillar__icon svg { width: 2rem; height: 2rem; stroke-width: 1.5; }

.why-pillar__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

.why-pillar__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: #9ca3af;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
  .why-divider {
    width: 100%;
    height: 1px;
    margin: 2rem 0;
  }
  .why-left { padding-right: 0; }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }
  .why-pillar:nth-child(3) { border-right: none; }
  .why-pillar:nth-child(2n) { border-right: none; }
  .why-pillar:nth-child(5),
  .why-pillar:nth-child(6) { border-bottom: none; }
}

@media (max-width: 560px) {
  .why-card { padding: 2rem 1.25rem; }
  .why-pillars { grid-template-columns: 1fr; }
  .why-pillar { border-right: none; }
  .why-pillar:last-child { border-bottom: none; }
}

/* ── 15. NAV DROPDOWNS & HAMBURGER ───────────────────────── */
.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 900;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav-link:hover { color: #ffffff; }

.nav-chevron {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-link--dropdown[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Desktop dropdown panel */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 200px;
  background-color: #1e2028;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  padding: 0.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 100;
}
.dropdown-menu.is-open { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  color: #d1d5db;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.dropdown-menu a:hover {
  background-color: rgba(255,255,255,0.06);
  color: #ffffff;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) { .hamburger { display: flex; } }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  background-color: #1e2028;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.is-open { display: block; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-item { width: 100%; }

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #d1d5db;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: color 0.15s ease;
}
.mobile-nav-link:hover { color: #ffffff; }

/* Mobile accordion dropdown */
.mobile-dropdown {
  display: none;
  padding: 0.25rem 0 0.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-dropdown.is-open { display: block; }

.mobile-dropdown a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #9ca3af;
  transition: color 0.15s ease;
}
.mobile-dropdown a:hover { color: #ffffff; }

.mobile-nav-link--dropdown[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.mobile-nav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
}

/* ── 16. PARTNERS TICKER ──────────────────────────────────── */
#partners {
  background-color: #f4f0ea;
  padding-block: 5rem;
  overflow: hidden;
}

.partners-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #0a0a0a;
  max-width: 36rem;
  margin-bottom: 3rem;
  line-height: 1.25;
}

.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f4f0ea 0%, transparent 100%);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f4f0ea 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  height: 80px;
  width: 160px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ticker-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.ticker-item img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── 17. FOOTER ───────────────────────────────────────────── */
#contact { position: relative; }

/* Full-bleed container — light background with image fading in from right */
.footer-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.footer-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}

.footer-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1.00)  0%,
    rgba(255, 255, 255, 1.00) 38%,
    rgba(255, 255, 255, 0.70) 55%,
    rgba(255, 255, 255, 0.00) 80%
  );
}

/* Two-column inner layout */
.footer-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;   
  gap: 2rem;                             
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

/* ── Left column ── */
.footer-col--left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Wordmark logo */
.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.footer-brand__name {
  font-size: 3.2rem;
  font-weight: 1000;
  color: #c8151b;
  letter-spacing: 0.02em;
  line-height: 1;
}
.footer-brand__sub {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 0.25rem;
}

/* Closing statement */
.footer-closing {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  color: #111114;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

/* Horizontal rule */
.footer-rule {
  height: 2px;
  background: #c8151b;
  width: 2.5rem;
  margin-bottom: 1.5rem;
}
.footer-rule--dim {
  height: 1px;
  background: #e5e7eb;
  margin: 1.25rem 0;
  width: 100%;
}

/* "CONTACT US" label */
.footer-contact-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-contact-label__line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: #c8151b;
  flex-shrink: 0;
}
.footer-contact-label__text {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111114;
}

/* Contact rows */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-icon {
  width: 1rem;
  height: 1rem;
  color: #c8151b;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer-contact-row p {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.7;
  font-weight: 600;
}
.footer-contact-row a {
  color: #374151;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-contact-row a:hover { color: #c8151b; }

/* ── Right column ── */
.footer-col--right {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

/* Site map */
.footer-sitemap__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.footer-sitemap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.footer-sitemap__col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-sitemap__col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111114;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.footer-sitemap__col a:hover { color: #c8151b; }
.footer-sitemap__chevron {
  width: 0.85rem;
  height: 0.85rem;
  color: #c8151b;
  flex-shrink: 0;
}

/* AI usage + Stay connected row */
.footer-lower-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* AI usage block */
.footer-ai__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-ai__icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #c8151b;
}
.footer-ai__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
  font-weight: bold;
}

/* Stay connected */
.footer-social__label {
  display: block;
  margin-bottom: 1rem;
}
.footer-social__icons {
  display: flex;
  gap: 0.75rem;
}
.footer-social__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111114;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-social__btn svg { width: 1.4rem; height: 1.4rem; }

.footer-social__btn:hover {
  border-color: #c8151b;
  background: #c8151b;
  color: #ffffff;
}

/* ── Values bar ── */
.footer-values {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 3rem;
  gap: 0;
}
.footer-values__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
}
.footer-values__icon {
  color: #c8151b;
  flex-shrink: 0;
}
.footer-values__icon svg { width: 2rem; height: 2rem; stroke-width: 1.5; }
.footer-values__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111114;
  margin-bottom: 0.2rem;
}
.footer-values__desc {
  font-size: 0.825rem;
  line-height: 1.55;
  color: #6b7280;
}
.footer-values__sep {
  width: 1px;
  height: 3rem;
  background: #e5e7eb;
  flex-shrink: 0;
}

/* ── Bottom bar ── */
.footer-bar {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 3rem;
}
.footer-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bar__inner p {
  font-size: 0.82rem;
  color: #374151;
  font-weight: 400;
}
.footer-bar__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-bar__links a {
  font-size: 0.82rem;
  color: #374151;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-bar__links a:hover { color: #c8151b; }
.footer-bar__links span { color: #9ca3af; }

/* ADD */
.footer-company-info {
  margin-bottom: 1.25rem;
}

.footer-company-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.footer-company-location {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 1rem;
  color: #6b7280;
}

/* REPLACE .footer-sitemap__grid */
.footer-sitemap__grid {
  display: flex;
  flex-direction: column;   
}

/* ADD these new rules */
.footer-identity {
  margin-bottom: 1rem;
}

.footer-company-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.footer-company-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
  font-weight: bold;
}

.footer-company-reg {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  padding-left: 1.35rem; 
  font-weight: 1000;
}

.footer-closing {
  font-size: 0.875rem;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
  border-left: 3px solid #ED1C24;
  padding-left: 0.75rem;
  margin-top: 0.75rem;
}

.footer-email-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Colored social icons */
.footer-social__btn--linkedin:hover { background: #0077b5; border-color: #0077b5; color: #fff; }
.footer-social__btn--x:hover        { background: #000000; border-color: #000000; color: #fff; }
.footer-social__btn--web:hover      { background: #ED1C24; border-color: #ED1C24; color: #fff; }

.footer-right-row {
  display: flex;
  flex-direction: row;
  gap: 5rem;              
  align-items: flex-start;
  justify-content: space-between;   
}

.footer-sitemap__grid {
  display: flex;
  flex-direction: column;
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer-hero__bg { width: 100%; opacity: 0.15; }
  .footer-hero__overlay {
    background: rgba(255,255,255,0.92);
  }
  .footer-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
  .footer-lower-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-values {
    flex-wrap: wrap;
    padding: 1.5rem;
    gap: 1rem;
  }
  .footer-values__item { flex: 1 1 40%; }
  .footer-values__sep  { display: none; }
  .footer-bar {
    padding: 1rem 1.5rem;
  }
  .footer-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* Logo image in footer */
.footer-logo-img {
  height: 110px;
  width: auto;
  max-width: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}

/* Primary phone row — visually dominant */
.footer-contact-row--primary {
  padding: 0.75rem 0;
  margin-bottom: 0.25rem;
}

.footer-icon--lg {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.1rem;
}

.footer-phone-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #111114;
  letter-spacing: -0.01em;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.15s ease;
}
.footer-phone-link:hover { color: #c8151b; }

.footer-contact-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Social row sits inline without a leading icon */
.footer-social-row {
  padding-top: 0.5rem;
}

.footer-social { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  .hero-image-wrap  { min-height: 420px; }
  .leadership-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-card         { padding: 3.5rem; }
  .why-grid         { grid-template-columns: 1.1fr 0.9fr; align-items: flex-end; }
  .footer-inner     { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .footer-details   { text-align: right; }
}

/* Desktop ≥ 1024px */
@media (min-width: 1024px) {
  .hero-inner         { grid-template-columns: 1.05fr 0.95fr; }
  .hero-image-wrap    { min-height: 500px; border-radius: 5rem; }
  .about-grid         { grid-template-columns: 0.9fr 1.1fr; }
  .capabilities-grid  { grid-template-columns: 0.95fr 1.05fr; }
  .why-card           { padding: 2.5rem; }
}

/* Wide ≥ 1280px */
@media (min-width: 1280px) {
  h1 { font-size: 5rem; }
  h2 { font-size: 3rem; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {

  /* Nav */
  #site-header.scrolled .nav-inner {
    min-height: 56px;
    padding-block: 0.25rem;
  }
  #site-header.scrolled .logo__img { height: 70px; }
  .nav-inner {
    min-height: 64px;
    padding-block: 0.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .logo__img {
    height: 110px;
    max-width: 180px;
  }

  /* Hero strip */
  .hero-strip {
    justify-content: center;
    padding-right: 2rem;
  }
  .hero-strip__text {
    font-size: 0.58rem;
    letter-spacing: 0.10em;
    white-space: normal;
    text-align: center;
  }

  .sectors-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-inline: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    cursor: grab;
  }
  .sectors-grid::-webkit-scrollbar { display: none; }
  .sectors-grid:active { cursor: grabbing; }
  .sector-card {
    flex-shrink: 0 !important;
    width: 72vw !important;
    height: 320px !important;
    scroll-snap-align: start;
    border-radius: 1rem;
  }

.sector-card-wrap {
  flex-shrink: 0;
  width: 72vw;
  scroll-snap-align: start;
}

.sector-card-wrap .sector-card {
  width: 100% !important;   
}

  .sector-card__body h3 { font-size: 1rem; }
  .sector-card__body p  { display: none; }

  /* Founder */
  .founder-banner {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
  .founder-banner__bg {
    position: relative;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: right top;
  }
  .founder-banner__overlay { display: none; }
  .founder-banner__inner {
    position: relative;
    background-color: #f4f0ea;
    padding: 2rem 1.5rem;
    z-index: 2;
  }
  .founder-banner__content { max-width: 100%; }
  .founder-banner__name { font-size: 1.75rem; color: #0a0a0a; }
  .founder-banner__role { color: #c8151b; font-size: 2rem; }
  .founder-banner__bio  { color: #374151; }
  #leadership .section-label span:last-child { color: #6b7280; }

  /* Arch diagram */
  .capabilities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .arch-diagram { overflow-x: auto; padding-bottom: 1rem; }
  .arch-circle-wrap { width: 340px; height: 340px; margin-inline: auto; }
  .arch-hub { width: 110px; height: 110px; }
  .arch-hub__brand  { font-size: 1.1rem; }
  .arch-hub__sub    { font-size: 0.52rem; }
  .arch-pillar      { width: 75px; }
  .arch-pillar__icon { width: 32px; height: 32px; }
  .arch-pillar__icon svg { width: 0.8rem; height: 0.8rem; }
  .arch-pillar__label { font-size: 0.56rem; }
  .arch-pillar--1 { top: calc(50% - 130px); left: 50%; }
  .arch-pillar--2 { top: calc(50% - 92px);  left: calc(50% + 92px); }
  .arch-pillar--3 { top: 50%;               left: calc(50% + 130px); }
  .arch-pillar--4 { top: calc(50% + 92px);  left: calc(50% + 92px); }
  .arch-pillar--5 { top: calc(50% + 130px); left: 50%; }
  .arch-pillar--6 { top: calc(50% + 92px);  left: calc(50% - 92px); }
  .arch-pillar--7 { top: 50%;               left: calc(50% - 130px); }
  .arch-pillar--8 { top: calc(50% - 92px);  left: calc(50% - 92px); }

  /* Local content */
  .local-banner { grid-template-columns: 1fr; height: auto; }
  .local-banner__text { padding: 2.5rem 1.5rem; }
  .local-banner__mosaic {
    grid-template-columns: repeat(3, 1fr);
    min-height: 280px;
    height: 280px;
    padding: 0.5rem;
    gap: 0.4rem;
  }
  .local-mosaic__card {
    border-radius: 0.6rem;
    overflow: hidden;
    height: 100%;
    min-height: 260px;
  }
  .local-mosaic__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Founder showcase */
  .founder-showcase__content { grid-template-columns: 1fr; height: auto; }
  .founder-showcase__copy { padding: 2rem 1.5rem; }
  .founder-showcase__text { max-width: 100%; }
  .founder-showcase__image-wrap { height: 320px; }


#top-bar {
  display: flex;
  flex-direction: column;    
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  max-height: 80px;          
}

#top-bar.hidden {
  max-height: 0;
  padding: 0;
}

.top-bar__divider {
  display: none;             
}
}