/* =========================================================
   BLUE HARBOR — Corporate Design System
   Premium · Minimal · International · Apple-inspired
   ========================================================= */

:root {
  /* Brand palette */
  --navy-900: #061529;
  --navy-800: #08203C;
  --navy-700: #0B2545;
  --navy-600: #123256;
  --navy-500: #1C4368;
  --gold: #C8A24B;
  --gold-soft: #E4CE96;
  --gold-line: rgba(200, 162, 75, 0.35);

  --ink: #0B1622;
  --slate: #45566C;
  --muted: #7A879B;
  --line: #E7EBF1;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --white: #FFFFFF;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;

  /* Rhythm */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.8s;

  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 18px 40px -24px rgba(11, 37, 69, 0.28);
  --shadow-lg: 0 40px 90px -50px rgba(11, 37, 69, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--tight { padding: clamp(56px, 8vw, 100px) 0; }
.section--dark { background: var(--navy-700); color: #EAF0F8; }
.section--ink { background: var(--navy-900); color: #EAF0F8; }
.section--gray { background: var(--gray-50); }

/* ---------- Typography ---------- */
.kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-line);
}
.section--dark .kicker, .section--ink .kicker { color: var(--gold-soft); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: inherit; }
.display {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.02em; }
.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
  color: var(--slate);
  line-height: 1.55;
  max-width: 54ch;
}
.section--dark .lead, .section--ink .lead { color: #B7C6DA; }
.muted { color: var(--muted); }
.serif { font-family: var(--font-serif); font-style: italic; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: inherit; border: 1px solid rgba(255,255,255,0.28); }
.btn--ghost:hover { border-color: var(--gold); color: #fff; }
.btn--line { background: transparent; color: var(--navy-700); border: 1px solid var(--line); }
.btn--line:hover { border-color: var(--navy-700); transform: translateY(-2px); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--navy-700);
  transition: gap .3s var(--ease);
}
.section--dark .link-arrow, .section--ink .link-arrow { color: var(--gold-soft); }
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 12px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 40px; width: auto; display: block; }
/* Swap logo colour with header state: light (white) on dark hero, dark on solid/scrolled */
.brand__logo--dark { display: none; }
.is-scrolled .brand__logo--light,
.is-solid .brand__logo--light { display: none; }
.is-scrolled .brand__logo--dark,
.is-solid .brand__logo--dark { display: block; }
/* Footer sits on dark navy — always use the light logo */
.footer-brand .brand__logo--light { display: block; }
.footer-brand .brand__logo--dark { display: none; }
.footer-brand .brand__logo { height: 44px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 9px 16px; border-radius: 100px;
  font-size: 15px; font-weight: 450; color: rgba(255,255,255,0.86);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.is-scrolled .nav__links a, .is-solid .nav__links a { color: var(--slate); }
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.is-scrolled .nav__links a:hover, .is-solid .nav__links a:hover { color: var(--navy-900); background: var(--gray-100); }
.nav__links a.active { color: #fff; }
.is-scrolled .nav__links a.active, .is-solid .nav__links a.active { color: var(--navy-900); font-weight: 500; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 11px 22px; }
.nav-btn-scroll { background: var(--navy-700); color:#fff; }

.nav__toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: currentColor; color:#fff; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.is-scrolled .nav__toggle span, .is-solid .nav__toggle span { color: var(--navy-900); }
.nav__toggle span:nth-child(1){ top: 17px; }
.nav__toggle span:nth-child(2){ top: 26px; }
.nav-open .nav__toggle span:nth-child(1){ transform: translateY(4px) rotate(45deg); }
.nav-open .nav__toggle span:nth-child(2){ transform: translateY(-4px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy-900); color: #fff;
  padding: 110px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.nav-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-size: clamp(1.6rem, 7vw, 2.2rem); font-weight: 500; letter-spacing: -0.03em;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #EAF0F8;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }
.mobile-menu .btn--gold { color: var(--navy-900); border-bottom: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background:
    radial-gradient(90% 80% at 8% 0%, rgba(200,162,75,0.10) 0%, transparent 45%),
    linear-gradient(90deg, rgba(5,14,28,0.94) 0%, rgba(5,14,28,0.74) 34%, rgba(5,14,28,0.30) 58%, rgba(5,14,28,0.05) 100%),
    url('../assets/hero.jpg') center right / cover no-repeat,
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 62%, #04101F 100%);
}
.hero::after {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 14% 32%, black, transparent 58%);
  -webkit-mask-image: radial-gradient(circle at 14% 32%, black, transparent 58%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5,14,28,0.84) 0%, rgba(5,14,28,0.55) 42%, rgba(5,14,28,0.82) 100%),
      url('../assets/hero.jpg') center 28% / cover no-repeat,
      linear-gradient(160deg, var(--navy-800), var(--navy-900));
  }
}
.hero__inner { position: relative; z-index: 2; padding: 140px var(--gutter) 90px; width: 100%; }
.hero .display { max-width: 15ch; }
.hero__sub { margin-top: 26px; max-width: 46ch; font-size: clamp(1.05rem,1.6vw,1.35rem); color:#C3D2E6; }
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  position: relative; z-index: 2;
  margin-top: clamp(48px, 8vw, 96px);
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.hero__meta .stat__num { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.hero__scroll {
  position:absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index:2; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.hero__scroll::after { content:""; width:1px; height:40px; background:linear-gradient(var(--gold), transparent); animation: scrollpulse 2.4s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* Hero with photograph */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: right center;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,21,41,0.94) 0%, rgba(6,21,41,0.74) 38%, rgba(6,21,41,0.32) 70%, rgba(6,21,41,0.12) 100%),
    linear-gradient(180deg, rgba(6,21,41,0.30) 0%, rgba(6,21,41,0.08) 45%, rgba(6,21,41,0.55) 100%);
}
.hero--photo::after { z-index: 1; }
@media (max-width: 860px) {
  .hero__photo { background-position: right bottom; }
  .hero__photo::after {
    background: linear-gradient(180deg, rgba(6,21,41,0.60) 0%, rgba(6,21,41,0.38) 28%, rgba(6,21,41,0.86) 100%);
  }
}

/* Page hero (interior) */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  padding: 180px 0 clamp(70px, 10vw, 120px);
  background:
    radial-gradient(100% 90% at 85% 0%, rgba(200,162,75,0.14) 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
}
.page-hero .display { max-width: 18ch; }
.page-hero__sub { margin-top: 22px; max-width: 52ch; color:#C3D2E6; font-size: clamp(1.05rem,1.5vw,1.25rem); }
.breadcrumb { font-size: 13px; letter-spacing: 0.02em; color: rgba(255,255,255,0.55); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- Stats ---------- */
.stat__num {
  font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.stat__num .u { color: var(--gold); }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--muted); letter-spacing: 0.01em; }
.section--dark .stat__label, .section--ink .stat__label, .hero .stat__label { color: rgba(255,255,255,0.6); }

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split--wide { grid-template-columns: 0.9fr 1.1fr; }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.sec-head .h2 { margin-top: 20px; }
.sec-head .lead { margin-top: 20px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .lead, .sec-head--center .kicker { margin-inline: auto; }
.sec-head--center .kicker::before { display: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--gray-50); border: 1px solid var(--line);
  color: var(--navy-700); margin-bottom: 24px;
}
.card__ico svg { width: 24px; height: 24px; }
.card .h3 { margin-bottom: 12px; }
.card p { color: var(--slate); font-size: 15.5px; }
.card__link { margin-top: 22px; }

.card--dark { background: var(--navy-600); border-color: rgba(255,255,255,0.08); }
.card--dark p { color: #B7C6DA; }
.card--dark .card__ico { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: var(--gold-soft); }

/* numbered service list */
.svc {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px,3vw,44px);
  align-items: start; padding: clamp(30px,4vw,48px) 0;
  border-top: 1px solid var(--line);
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc__no { font-family: var(--font-serif); font-size: 15px; color: var(--gold); letter-spacing: 0.05em; padding-top: 6px; }
.svc__title { max-width: 22ch; }
.svc__title .h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.svc__body p { color: var(--slate); }
.svc__body ul { margin-top: 18px; display: grid; gap: 10px; }
.svc__body li { position: relative; padding-left: 22px; font-size: 15px; color: var(--slate); }
.svc__body li::before { content:""; position:absolute; left:0; top:10px; width:7px; height:7px; border-radius:2px; background:var(--gold); }

/* industries */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.ind {
  background: var(--white); padding: clamp(28px, 3vw, 40px);
  min-height: 220px; display: flex; flex-direction: column; justify-content: space-between;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.ind:hover { background: var(--navy-700); color: #fff; }
.ind:hover .ind__meta, .ind:hover p { color: rgba(255,255,255,0.7); }
.ind:hover .ind__ico { color: var(--gold-soft); }
.ind__ico { color: var(--navy-700); transition: color .5s var(--ease); }
.ind__ico svg { width: 30px; height: 30px; }
.ind__meta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); transition: color .5s var(--ease); }
.ind h3 { font-size: 1.35rem; margin-top: 14px; }
.ind p { font-size: 14.5px; color: var(--slate); margin-top: 8px; transition: color .5s var(--ease); }

/* Category tiles with photography */
.ind--img { position: relative; color: #fff; overflow: hidden; min-height: 300px; justify-content: flex-end; }
.ind--img .ind__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease);
}
.ind--img::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,21,41,0.10) 0%, rgba(6,21,41,0.44) 50%, rgba(6,21,41,0.90) 100%);
  transition: background .5s var(--ease);
}
.ind--img:hover { background: transparent; color: #fff; }
.ind--img:hover .ind__bg { transform: scale(1.07); }
.ind--img:hover::after { background: linear-gradient(180deg, rgba(6,21,41,0.24) 0%, rgba(11,37,69,0.58) 50%, rgba(6,21,41,0.94) 100%); }
.ind--img .ind__txt { position: relative; z-index: 2; }
.ind--img .ind__meta { color: var(--gold-soft); }
.ind--img h3 { color: #fff; margin-top: 0; }
.ind--img p { color: rgba(255,255,255,0.82); }

/* feature list w/ checks */
.feat { display: grid; gap: 26px; }
.feat li { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.feat .ck {
  width: 30px; height: 30px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: rgba(200,162,75,0.14); color: var(--gold);
}
.section--dark .feat .ck, .section--ink .feat .ck { background: rgba(200,162,75,0.18); color: var(--gold-soft); }
.feat .ck svg { width: 15px; height: 15px; }
.feat h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.feat p { font-size: 15px; color: var(--slate); }
.section--dark .feat p, .section--ink .feat p { color: #B7C6DA; }

/* value / principle cards */
.value { padding: 30px 0; border-top: 1px solid var(--line); }
.value__no { font-size: 13px; color: var(--gold); font-family: var(--font-serif); letter-spacing:.05em; }
.value h3 { margin: 12px 0; font-size: 1.5rem; }
.value p { color: var(--slate); max-width: 44ch; }

/* logos / network strip */
.strip { display: flex; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 80px); flex-wrap: wrap; opacity: 0.8; }
.strip span { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* media panel */
.panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; color: #fff;
  display: flex; align-items: flex-end;
  padding: clamp(30px, 4vw, 48px);
  background: linear-gradient(155deg, var(--navy-600), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.panel::before {
  content:""; 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: 40px 40px;
  mask-image: radial-gradient(circle at 70% 20%, black, transparent 75%);
}
.panel__tag { position: relative; z-index: 2; }
.panel__caption { position: relative; z-index: 2; }
.panel__caption p { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 8px; max-width: 34ch; }

/* image placeholder note */
.imgnote {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); position: absolute; top: 18px; left: 20px; z-index: 2;
}

/* quote */
.quote { max-width: 900px; }
.quote blockquote { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.25; }
.quote cite { display: block; margin-top: 28px; font-style: normal; font-size: 15px; color: var(--muted); }
.quote cite b { color: var(--ink); font-weight: 600; }
.section--dark .quote cite b, .section--ink .quote cite b { color: #fff; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 110px) var(--gutter);
  color: #fff;
  background:
    radial-gradient(90% 120% at 50% -10%, rgba(200,162,75,0.2), transparent 55%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
}
.cta-band .h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lead { margin: 22px auto 36px; color: #C3D2E6; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 8px; color: var(--slate); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-500); box-shadow: 0 0 0 4px rgba(28,67,104,0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.contact-info { display: grid; gap: 30px; }
.contact-info .ci { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-info .ci:last-child { border-bottom: none; }
.contact-info .ci h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.contact-info .ci p { font-size: 17px; color: var(--ink); }
.contact-info .ci a { color: var(--navy-700); }
.contact-info .ci a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #A9B8CC; padding: clamp(64px, 8vw, 96px) 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { margin-top: 20px; max-width: 34ch; font-size: 15px; color: #8496AD; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #6E7F97; margin-bottom: 18px; }
.footer-col a { display: block; padding: 7px 0; font-size: 15px; color: #A9B8CC; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 72px); padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13.5px; color: #6E7F97;
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 26px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .nav__toggle { display: block; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide, .contact-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .svc__no { padding-top: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand__logo { height: 34px; }
  .grid-3, .grid-4, .grid-2, .ind-grid { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
