/* ============================================================
   Cunnec Best Ltd (CBL)
   Global Stylesheet
   Stack: HTML/CSS/JS → Netlify
   ============================================================ */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Brand */
  --navy:       #0D2E6E;
  --orange:     #E85D04;
  --ice-blue:   #F4F7FF;
  --white:      #FFFFFF;

  /* Text */
  --text-body:  #374151;
  --text-muted: #6B7280;
  --text-light: rgba(255, 255, 255, 0.70);

  /* UI */
  --border:     #DDE3F0;
  --divider:    rgba(13, 46, 110, 0.10);

  /* State */
  --success:    #065f46;
  --success-bg: #d1fae5;
  --error:      #991b1b;
  --error-bg:   #fee2e2;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-v:      clamp(72px, 10vw, 128px);
  --container-max:  1200px;
  --container-pad:  clamp(20px, 5vw, 48px);
  --nav-height:     72px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--white);
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section         { padding: var(--section-v) 0; }
.section--navy   { background-color: var(--navy); color: var(--white); }
.section--ice    { background-color: var(--ice-blue); }
.section--white  { background-color: var(--white); }

.page-body       { padding-top: var(--nav-height); }

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.section-title--white { color: var(--white); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background-color: #c94e00;
  border-color: #c94e00;
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn--outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   Navbar
   ============================================================ */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background-color: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

nav#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo text placeholder: swap <span class="nav-logo"> for <img> once SVG is exported */
nav#navbar .nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
nav#navbar .nav-logo .accent { color: var(--orange); }

nav#navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav#navbar .nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
nav#navbar .nav-links a:hover,
nav#navbar .nav-links a.active {
  color: var(--white);
}

nav#navbar .nav-links .btn {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* Hamburger */
nav#navbar .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
nav#navbar .nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav#navbar.menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav#navbar.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
nav#navbar.menu-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  nav#navbar .nav-hamburger { display: flex; }

  nav#navbar .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0 24px;
  }
  nav#navbar.menu-open .nav-links { display: flex; }

  nav#navbar .nav-links a {
    display: block;
    width: 100%;
    padding: 13px var(--container-pad);
    font-size: 1rem;
  }

  nav#navbar .nav-links .btn {
    margin: 12px var(--container-pad) 0;
    display: block;
    text-align: center;
    font-size: 0.9375rem;
    padding: 13px 20px;
  }
}

/* ============================================================
   Hero (Home) — Split layout
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 92vh;
}

.hero__left {
  background-color: var(--navy);
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 120px) clamp(36px, 5vw, 72px);
}

.hero__right {
  position: relative;
  overflow: hidden;
  background-color: #0a2558;
}

.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 110, 0.28);
  pointer-events: none;
}

.hero__content { max-width: 560px; }

.hero__split {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.hero__bar {
  width: 3px;
  background-color: var(--orange);
  min-height: 180px;
  flex-shrink: 0;
  margin-right: 40px;
  margin-top: 6px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subline {
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  line-height: 1.68;
  color: var(--text-light);
  max-width: 460px;
}

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero__right { height: 300px; }
  .hero__left { padding: clamp(48px, 8vw, 72px) var(--container-pad); }
}

/* ============================================================
   What We Do (Home) — split with image
   ============================================================ */
.what-we-do__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.what-we-do__title {
  margin-top: 16px;
  margin-bottom: 24px;
}

.what-we-do__text {
  font-size: clamp(1.0625rem, 1.5vw, 1.125rem);
  line-height: 1.78;
  color: var(--text-body);
}

.what-we-do__img {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.what-we-do__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .what-we-do__split { grid-template-columns: 1fr; }
  .what-we-do__img { aspect-ratio: 16 / 9; }
}

/* ============================================================
   Image Strip (full-width between sections)
   ============================================================ */
.img-strip {
  height: clamp(220px, 28vw, 380px);
  overflow: hidden;
}

.img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ============================================================
   Map Container (Contact page)
   ============================================================ */
.map-container {
  margin-top: clamp(48px, 6vw, 72px);
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-label {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.map-label a {
  color: var(--navy);
  font-weight: 500;
}

.map-label a:hover { text-decoration: underline; }

/* ============================================================
   Services Snapshot (Home) - Numbered Editorial List
   ============================================================ */
.services-snapshot__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-snapshot__header .section-title { margin-top: 12px; }

.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--divider);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--divider); }
.service-row:hover { opacity: 0.72; }

.service-row__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8125rem;
  color: var(--orange);
}

.service-row__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--navy);
  letter-spacing: -0.015em;
}

.service-row__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}

.services-snapshot__footer {
  margin-top: 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}
.services-snapshot__footer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-snapshot__footer a:hover { color: var(--orange); }

@media (max-width: 640px) {
  .service-row { grid-template-columns: 36px 1fr; gap: 16px; }
  .service-row__desc { display: none; }
}

/* ============================================================
   Why CBL (Home)
   ============================================================ */
.why-cbl__header { margin-bottom: 56px; }
.why-cbl__header .eyebrow { margin-bottom: 16px; }

/* Grid: navy cards on ice blue background */
.why-cbl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
}

.why-cbl__point {
  background-color: var(--navy);
  padding: clamp(32px, 4vw, 48px);
}

.why-cbl__point-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.why-cbl__point-text {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .why-cbl__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA Strip
   ============================================================ */
.cta-strip {
  background-color: var(--orange);
  padding: clamp(48px, 7vw, 88px) 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 560px;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background-color: var(--navy);
  padding: clamp(48px, 7vw, 80px) 0 clamp(44px, 5vw, 68px);
}

.page-hero__eyebrow { margin-bottom: 20px; }

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 720px;
}

.page-hero__subtitle {
  margin-top: 20px;
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.65;
}

/* ============================================================
   About Page
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.about-body p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-body);
}
.about-body p + p { margin-top: 20px; }

.about-sidebar__block {
  padding: 24px 0;
  border-bottom: 1px solid var(--divider);
}
.about-sidebar__block:first-child { border-top: 1px solid var(--divider); }

.about-sidebar__label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.about-sidebar__value {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.values-section { padding-top: var(--section-v); }

/* Anchor scroll offset: compensates for fixed navbar height */
[id] {
  scroll-margin-top: calc(var(--nav-height) + 28px);
}

/* Compact section top: less breathing room (used on compliance) */
.section--compact-top { padding-top: clamp(36px, 4vw, 56px); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--divider);
  border: 1px solid var(--divider);
}

.values-grid__item {
  background-color: var(--ice-blue);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.values-grid__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.0625rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .values-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   Services Page
   ============================================================ */
.services-intro {
  max-width: 640px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 20px;
}

.service-category {
  padding: var(--section-v) 0;
  border-top: 1px solid var(--divider);
}
.service-category:first-of-type { border-top: none; }

.service-category__label {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 10px;
  margin-bottom: 44px;
}

/* Bento grid for upstream primary services */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: var(--divider);
  border: 1px solid var(--divider);
}

.bento-cell {
  background-color: var(--white);
  padding: clamp(28px, 3vw, 44px);
}

.bento-cell--featured {
  grid-column: span 2;
  background-color: var(--navy);
}

.bento-cell--wide {
  grid-column: span 2;
}

.bento-cell__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1875rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.bento-cell--featured .bento-cell__title {
  font-size: 1.625rem;
  color: var(--white);
}

.bento-cell__text {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--text-body);
}

.bento-cell--featured .bento-cell__text {
  color: var(--text-light);
}

.bento-cell__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bento-cell__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.bento-cell__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--orange);
}

.bento-cell--featured .bento-cell__list li {
  color: rgba(255, 255, 255, 0.60);
}

/* Typographic list for secondary and additional services */
.services-typelist { margin-top: 2px; border-top: 1px solid var(--divider); }

.services-typelist__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--divider);
  gap: 24px;
}

.services-typelist__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.services-typelist__note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: right;
  max-width: 300px;
  line-height: 1.5;
  flex-shrink: 0;
}

/* Downstream */
.downstream-intro {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-body);
  max-width: 620px;
  margin-bottom: 28px;
}

.products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-tag {
  background-color: var(--ice-blue);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}

/* Navy cell variant (no span change) */
.bento-cell--navy {
  background-color: var(--navy);
}
.bento-cell--navy .bento-cell__title { color: var(--white); }
.bento-cell--navy .bento-cell__text  { color: var(--text-light); }
.bento-cell--navy .bento-cell__list li { color: rgba(255, 255, 255, 0.60); }

/* Full-width cell spanning all 3 columns */
.bento-cell--full { grid-column: span 3; }

/* Two-column bullet list inside full-width cell */
.bento-cell__list--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell--featured,
  .bento-cell--wide,
  .bento-cell--full { grid-column: span 1; }
  .services-typelist__note { display: none; }
}

/* ============================================================
   Compliance Page
   ============================================================ */
.compliance-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 640px;
  margin-top: 20px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px) clamp(48px, 7vw, 96px);
}

.compliance-block__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
}

.compliance-block__text {
  font-size: 0.9375rem;
  line-height: 1.78;
  color: var(--text-body);
}
.compliance-block__text p + p { margin-top: 14px; }

.compliance-block__note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.compliance-full {
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--divider);
}

@media (max-width: 768px) {
  .compliance-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 8vw, 104px);
  align-items: start;
}

.contact-info__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.contact-detail { margin-bottom: 28px; }

.contact-detail__label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-detail__value {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.contact-detail__value a:hover { text-decoration: underline; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.contact-form__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-body);
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-status {
  font-size: 0.875rem;
  padding: 12px 16px;
  border-radius: 3px;
  display: none;
  line-height: 1.5;
}
.form-status.success { background-color: var(--success-bg); color: var(--success); display: block; }
.form-status.error   { background-color: var(--error-bg);   color: var(--error);   display: block; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer {
  background-color: var(--navy);
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
}

footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer.site-footer .footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
footer.site-footer .footer-brand-name .accent { color: var(--orange); }

footer.site-footer .footer-tagline {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

footer.site-footer .footer-col-label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

footer.site-footer .footer-col-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

footer.site-footer .footer-col-text a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
footer.site-footer .footer-col-text a:hover { color: var(--white); }

footer.site-footer .footer-bottom {
  padding-top: 24px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   About: Mission/Vision grid
   ============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 640px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-grid__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.mv-grid__text {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--text-body);
}

/* Services: smaller section title */
.section-title--sm {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 20px;
}

/* Compliance: grid top spacing */
.compliance-grid-wrap { margin-top: clamp(48px, 6vw, 80px); }

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
