/* ═══════════════════════════════════════════════════════
   GRANITE BRIDGE — v6
   Colour option 1: Deep navy · Pale mint · Blue
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  /* Core palette */
  --navy:        #0A1519;
  --navy-mid:    #0E1E2A;
  --navy-lt:     #162838;
  --steel:       #3A5466;
  --fog:         #7A98A8;

  /* Mint / light surfaces */
  --mint:        #D0DFDA;
  --mint-lt:     #D0DFDA;   /* both mint tones = brand mint */
  --platinum:    #EEF3F1;
  --white:       #D0DFDA;   /* "white" sections use the brand mint */
  --true-white:  #FFFFFF;   /* cards, inputs, inner surfaces */

  /* Blue accent */
  --blue:        #307AC6;
  --blue-lt:     #5B9BD5;
  --blue-deep:   #1F5FA0;
  --blue-rule:   rgba(48,122,198,0.28);

  /* Text */
  --ink:         var(--navy);
  --ink-soft:    var(--steel);

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--blue); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--true-white); }
::-webkit-scrollbar-thumb { background: var(--blue); }

/* ── TYPE ── */
h1, h2, h3, h4 {
  font-family: var(--font); color: var(--ink);
  letter-spacing: -0.02em; line-height: 1.1; font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); letter-spacing: -0.03em; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p  { font-size: clamp(1rem, 1.1vw, 1.05rem); color: var(--ink-soft); line-height: 1.75; }

.label {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--blue-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.label::before { content: none; }

h1 em, h2 em, h3 em {
  font-style: normal; font-weight: inherit; font-size: inherit;
  color: var(--blue); text-decoration: underline;
  text-decoration-color: var(--blue-lt); text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.section--dark h1 em, .section--dark h2 em, .section--dark h3 em,
.hero-msg h1 em { color: var(--blue-lt); text-decoration-color: var(--blue-lt); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 6vw, 96px) 0; position: relative; }
.section--white  { background: var(--white); }
.section--mint   { background: var(--mint-lt); }
.section--dark {
  background: var(--navy-mid); color: var(--platinum); position: relative;
}
.section--dark::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}
.section--dark > .container { position: relative; z-index: 1; }
.section--dark p { color: rgba(238,243,241,0.78); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--platinum); }
.section--dark + .section--dark { padding-top: 0; }
.section--dark + .section--dark::before { display: none; }
.section--dark .label { color: var(--blue-lt); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.accent-rule {
  width: 100%; height: 1px;
  background: var(--blue-rule); margin-bottom: 36px;
}

.section-head { display: flex; align-items: baseline; gap: 28px; margin-bottom: 18px; }
.section-head .num {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.32em; color: var(--blue);
}
.section-head .title {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.section--dark .section-head .num { color: var(--blue-lt); }
.section--dark .section-head .title { color: var(--platinum); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid currentColor; cursor: pointer;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
  position: relative; overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: currentColor;
  transform: translateY(101%); transition: transform 0.45s var(--ease); z-index: -1;
}
.btn::after { content: '→'; font-size: 0.95rem; transition: transform 0.3s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:hover::after { transform: translateX(5px); }

.btn--blue {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue-deep);
}
.btn--blue::before { background: var(--blue); }
.btn--blue:hover { color: var(--navy); border-color: var(--blue); }
.btn--blue:hover::before { transform: translateY(0); }

.btn--outline-light {
  background: transparent; border-color: rgba(238,243,241,0.38); color: var(--platinum);
}
.btn--outline-light::before { background: var(--blue); }
.btn--outline-light:hover { color: white; border-color: var(--blue); }
.btn--outline-light:hover::before { transform: translateY(0); }

.btn--outline-dark {
  background: transparent; border-color: var(--ink); color: var(--ink);
}
.btn--outline-dark::before { background: var(--ink); }
.btn--outline-dark:hover { color: white; border-color: var(--ink); }
.btn--outline-dark:hover::before { transform: translateY(0); }

/* ── LOGO (image-based) ── */
.logo-img {
  display: block; height: 36px; width: auto;
}
.logo-img--hero {
  height: 64px; margin: 0 auto 20px;
}
.logo-img--nav { height: 48px; }
.logo-img--footer { height: 56px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--mint);
  border-bottom: 1px solid rgba(48,122,198,0.18);
  transition: background 0.4s var(--ease);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.nav-logo { display: flex; align-items: center; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); position: relative; padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--blue); transform: scaleX(0); transform-origin: right center;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1); transform-origin: left center;
}
.nav-links a.active { color: var(--blue-deep); }
.nav-links a:hover { color: var(--blue-deep); }

.nav-cta {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 11px 22px; background: transparent; color: var(--navy);
  border: 1px solid rgba(10,21,25,0.3); transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--navy); color: var(--mint); border-color: var(--navy); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--navy); transition: all 0.3s var(--ease); }
.nav-contact-mobile { display: none; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-lt) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("../assets/hero-bridge.jpg");
  background-size: cover; background-position: 72% 30%;
  pointer-events: none; z-index: 0;
  filter: saturate(0.35) brightness(0.9);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(10,21,25,0.45) 0%, rgba(10,21,25,0.35) 40%,
    rgba(10,21,25,0.28) 70%, rgba(10,21,25,0.40) 100%);
}
.hero-wordmark {
  position: relative; z-index: 2; text-align: center;
  padding-top: clamp(80px, 12vh, 130px); padding-bottom: clamp(16px, 2vh, 28px);
}
.hero-wordmark .hero-tagline {
  font-size: clamp(0.8rem, 1vw, 0.95rem); font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(238,243,241,0.7); margin-top: 14px;
}
.hero-msg {
  position: relative; z-index: 2; color: var(--platinum);
  padding: clamp(80px, 10vh, 120px) var(--gutter) clamp(40px, 6vh, 72px);
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin: 0 auto; width: 100%;
}
.hero-msg-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
}
body.home .hero-msg { text-align: center; }
body.home .hero-msg-inner { margin: 0 auto; }
body.home .hero-btns { justify-content: center; }
.hero-msg h1 { color: white; font-weight: 600; letter-spacing: -0.025em; }
.hero-msg .sub {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem); color: rgba(238,243,241,0.85);
  max-width: 620px; margin: 28px 0 44px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 52px; }

/* ── BRIDGE PHOTO STRIP ── */
.bridge-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: clamp(200px, 28vw, 380px);
  overflow: hidden;
}
.bridge-strip-item {
  position: relative; overflow: hidden; cursor: default;
}
.bridge-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}
.bridge-strip-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0.7) contrast(1.08) brightness(0.95);
}
.bridge-strip-item + .bridge-strip-item { border-left: 1px solid rgba(10,21,25,0.3); }

/* ── BRIDGE FEATURE (full-bleed single photo) ── */
.bridge-feature {
  position: relative; height: clamp(320px, 40vw, 520px); overflow: hidden;
}
.bridge-feature img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.bridge-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,21,25,0.72) 0%, rgba(10,21,25,0.3) 55%, transparent 100%);
  display: flex; align-items: center;
}
.bridge-feature-text {
  padding: 0 var(--gutter); max-width: calc(var(--max-w) + var(--gutter)*2); margin: 0 auto; width: 100%;
}
.bridge-feature-text h2 { color: white; max-width: 540px; margin-bottom: 16px; }
.bridge-feature-text p { color: rgba(238,243,241,0.82); max-width: 440px; }
.bridge-feature-text .label { color: var(--blue-lt); margin-bottom: 18px; }

/* ── WHO WE ARE ── */
.who-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.who-sticky { position: sticky; top: 100px; }

.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--blue-rule); border-bottom: 1px solid var(--blue-rule); margin: 48px 0;
}
.stat-item { padding: 32px 20px; border-right: 1px solid var(--blue-rule); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-size: clamp(2.4rem, 3.2vw, 3.1rem); font-weight: 600; color: var(--ink);
  line-height: 1; margin-bottom: 10px; letter-spacing: -0.03em;
}
.stat-item .desc {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft); line-height: 1.5;
}
.section--dark .stat-item .number { color: var(--blue-lt); }
.section--dark .stat-item .desc { color: rgba(238,243,241,0.7); }

/* ── CALLOUT STRIP ── */
.callout-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin: 44px 0 48px; }
.callout-strip-item {
  padding: 26px 30px; border-top: 2px solid var(--blue);
  border-right: 1px solid rgba(238,243,241,0.08);
}
.callout-strip-item:last-child { border-right: none; }
.callout-strip-item p { font-size: 1rem; color: rgba(238,243,241,0.85); line-height: 1.55; }
.callout-strip-item strong { color: var(--blue-lt); font-weight: 600; }

/* ── FOCUS GRID ── */
.focus-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(48,122,198,0.15); margin-top: 40px; border: 1px solid rgba(48,122,198,0.15);
}
.focus-card { background: var(--navy-mid); padding: 28px 26px; }
.focus-card h4 { color: var(--platinum); margin-bottom: 8px; font-size: 1rem; font-weight: 600; }
.focus-card p { font-size: 0.9rem; color: rgba(238,243,241,0.7); }

/* ── SERVICE CARD ── */
.service-card {
  padding: 36px 32px; border: 1px solid rgba(238,243,241,0.08);
  background: linear-gradient(180deg, rgba(238,243,241,0.03), rgba(238,243,241,0));
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0.25); transform-origin: left; transition: transform 0.6s var(--ease);
}
.service-card .label { margin-bottom: 16px; color: var(--blue-lt); }
.service-card h3 { color: var(--platinum); margin-bottom: 14px; font-weight: 600; }
.service-card ul { margin-top: 22px; }
.service-card ul li {
  font-size: 0.9rem; color: rgba(238,243,241,0.7); padding: 10px 0 10px 18px;
  border-bottom: 1px solid rgba(238,243,241,0.06); position: relative; line-height: 1.5;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 10px; height: 1px; background: var(--blue);
}

/* ── CONTEXT TAGS ── */
.context-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; }
.context-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--blue-rule); color: var(--blue-deep);
  background: var(--true-white); transition: all 0.3s var(--ease);
}
.context-tag:hover { background: var(--blue); color: white; border-color: var(--blue); }

/* ── CASE CARD ── */
.case-card {
  padding: 32px 28px; border-top: 2px solid var(--blue);
  background: var(--true-white); position: relative;
}
.case-tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
.case-card h4 { color: var(--ink); margin: 10px 0; font-size: clamp(1.05rem, 1.3vw, 1.18rem); font-weight: 600; line-height: 1.3; }
.case-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 12px; }
.serif-italic-note { font-size: 0.9rem; color: var(--fog); margin-top: 32px; }

/* ── EXPECT LIST ── */
.expect-list { display: flex; flex-direction: column; border: 1px solid var(--blue-rule); overflow: hidden; }
.expect-item { padding: 22px 26px; border-bottom: 1px solid var(--blue-rule); background: var(--true-white); }
.expect-item:last-child { border-bottom: none; }
.expect-item h4 { color: var(--ink); margin-bottom: 6px; font-size: 1rem; }
.expect-item p { font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* ── HOW GRID ── */
.how-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--blue-rule); margin-top: 44px; border: 1px solid var(--blue-rule);
}
.how-item { background: var(--true-white); padding: 32px 28px; }
.how-item .icon { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.how-item h4 { color: var(--ink); margin-bottom: 8px; font-size: 1rem; }
.how-item p { font-size: 0.92rem; }

/* ── TEAM CARD ── */
.team-card { display: flex; flex-direction: column; gap: 22px; }
.team-photo {
  width: 100%; aspect-ratio: 4/5; background: var(--navy-lt);
  overflow: hidden; position: relative; border: 1px solid rgba(48,122,198,0.2);
  transition: box-shadow 0.5s var(--ease);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); filter: contrast(1.02); }
.team-card:hover .team-photo { box-shadow: 0 30px 60px -28px rgba(0,0,0,0.45); }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-info h3 { color: var(--platinum); margin-bottom: 8px; font-size: 1.45rem; font-weight: 600; }
.team-info .role { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 16px; }
.team-links { display: flex; gap: 20px; margin-top: 18px; }
.team-links a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-lt); border-bottom: 1px solid rgba(48,122,198,0.3); padding-bottom: 3px; transition: color 0.3s var(--ease); }
.team-links a:hover { color: white; border-color: white; }

/* ── WHO WE ARE — subtitle / subtext ── */
.who-subtitle {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--platinum);
  line-height: 1.35;
  max-width: 100%;
  white-space: nowrap;
  margin-bottom: 20px;
}
.who-subtext {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--steel);
  max-width: 680px;
  margin-bottom: 48px;
}

/* ── NETWORK GRID ── */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.network-card {
  background: var(--true-white);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.network-strip {
  height: 4px;
  background: var(--blue);
  flex-shrink: 0;
}
.network-body {
  padding: 28px 24px 32px;
  flex: 1;
}
.network-body h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.network-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--steel);
  margin: 0;
}

/* ── PULL QUOTE ── */
.pull-quote {
  max-width: 760px; margin: 56px auto 0; padding: 36px 24px; text-align: center;
  border-top: 1px solid var(--blue-rule); border-bottom: 1px solid var(--blue-rule); position: relative;
}
.pull-quote::before {
  content: '\201C'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 44px; background: var(--navy-mid); font-family: Georgia, serif;
  font-size: 3rem; line-height: 1; color: var(--blue); text-align: center;
}
.pull-quote p { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--platinum); margin: 0; }

/* ── CONTACT FORM ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-detail { display: flex; flex-direction: column; gap: 28px; }
.detail-item .detail-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 8px; }
.detail-item a, .detail-item span { font-size: 0.96rem; color: rgba(238,243,241,0.82); transition: color 0.3s var(--ease); }
.detail-item a:hover { color: var(--blue-lt); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-lt); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(238,243,241,0.05); border: 1px solid rgba(238,243,241,0.15); color: var(--platinum);
  font-family: var(--font); font-size: 0.96rem; padding: 14px 17px; outline: none; width: 100%;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(238,243,241,0.35); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(48,122,198,0.18);
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.6; }

/* ── COMING SOON ── */
.coming-soon { min-height: 48vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.coming-soon-inner { max-width: 580px; }
.coming-soon h2 { color: var(--platinum); margin: 16px 0 14px; }
.coming-soon .label { display: inline-flex; }
.coming-soon a.inline { color: var(--blue-lt); border-bottom: 1px solid rgba(48,122,198,0.4); }
.coming-soon a.inline:hover { color: white; }
.blue-rule--center { width: 56px; height: 1px; background: var(--blue); margin: 22px auto 30px; }
.amber-rule--center { width: 56px; height: 1px; background: var(--blue); margin: 22px auto 30px; }

/* ── THREE-KEY LIST ── */
ul.three-key { list-style: none; margin: 0 0 36px; padding: 0; max-width: 720px; border-top: 1px solid var(--blue-rule); }
ul.three-key li { padding: 16px 0 16px 20px; border-bottom: 1px solid var(--blue-rule); position: relative; color: rgba(238,243,241,0.82); line-height: 1.6; font-size: 1rem; }
ul.three-key li::before { content: ''; position: absolute; left: 0; top: 26px; width: 10px; height: 1px; background: var(--blue); }
ul.three-key li strong { color: var(--platinum); font-weight: 600; margin-right: 2px; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(48,122,198,0.12) 0%, transparent 60%),
              linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-lt) 100%);
  border-bottom: 1px solid rgba(48,122,198,0.2);
  padding: 170px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(10,21,25,0.3));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 20px; color: var(--blue-lt); }
.page-hero h1 { color: white; max-width: 900px; }
.page-hero p { color: rgba(238,243,241,0.82); font-size: clamp(1.05rem, 1.4vw, 1.18rem); max-width: 640px; margin-top: 22px; line-height: 1.7; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(238,243,241,0.75); padding: 80px 0 32px; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 84%; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.footer-tagline {
  text-align: center; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--blue-lt); margin-bottom: 56px;
}
.footer-tagline span { color: rgba(48,122,198,0.4); margin: 0 18px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px; border-bottom: 1px solid rgba(238,243,241,0.08);
  margin-bottom: 28px; gap: 40px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(238,243,241,0.55); transition: color 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--blue-lt); }
.footer-contact a.footer-cta {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 11px 22px; background: transparent; color: white;
  border: 1px solid rgba(238,243,241,0.4); transition: all 0.3s var(--ease);
}
.footer-contact a.footer-cta:hover { background: var(--blue); border-color: var(--blue); }
.footer-scripture { max-width: 720px; margin: 32px auto 24px; text-align: center; }
.footer-scripture .ref { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-lt); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.76rem; color: rgba(238,243,241,0.38); flex-wrap: wrap; gap: 12px;
}
.linkedin-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(238,243,241,0.55); padding: 8px 14px; border: 1px solid rgba(238,243,241,0.1);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.linkedin-link:hover { color: var(--blue-lt); border-color: rgba(48,122,198,0.35); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 959px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .who-layout { grid-template-columns: 1fr; gap: 36px; }
  .who-sticky { position: static; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--blue-rule); }
  .stat-item:last-child { border-bottom: none; }
  .callout-strip { grid-template-columns: 1fr; }
  .callout-strip-item { border-right: none; border-bottom: 1px solid rgba(238,243,241,0.08); }
  .focus-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .section-head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .bridge-strip { grid-template-columns: repeat(2, 1fr); height: clamp(200px, 50vw, 320px); }
  .bridge-feature-overlay { background: linear-gradient(180deg, rgba(10,21,25,0.65) 0%, rgba(10,21,25,0.3) 100%); }
  .bridge-feature-text { padding-top: 40px; padding-bottom: 40px; }
}
@media (max-width: 759px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 80px; left: 0; right: 0; background: var(--mint);
    padding: 32px var(--gutter); gap: 24px;
    border-top: 1px solid rgba(48,122,198,0.18); z-index: 99;
  }
  .nav-links.open a { color: var(--navy); }
  .nav-contact-mobile { display: block; }
  .section { padding: 48px 0; }
  .hero { min-height: clamp(300px, 50vh, 440px); }
  .bridge-strip { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 110px 0 52px; }
  .bridge-feature { height: clamp(260px, 60vw, 400px); }

  /* Hero: stack buttons, reduce gap */
  .hero-btns { flex-direction: column; align-items: center; margin-top: 32px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Tighten hero padding on small screens */
  .hero-msg { padding-top: 140px; padding-bottom: 48px; }

  /* Footer nav wraps cleanly */
  .footer-nav { flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Stat row already stacks — remove double border */
  .stat-item:last-child { border-bottom: none; }

  /* Pull quote tighter */
  .pull-quote { margin: 32px auto 0; padding: 28px 16px; }

  .network-grid { grid-template-columns: 1fr; }
  .who-subtitle { white-space: normal; }
  .footer-tagline { letter-spacing: 0.14em; font-size: 0.72rem; }
  .footer-tagline span { margin: 0 10px; }
}

/* ── HERO BUTTON OVERRIDES ── */
/* Resting: semi-transparent mint. Hover: keep existing fill behaviour. */
.hero-btns .btn--blue,
.hero-btns .btn--outline-light {
  background: rgba(208, 223, 218, 0.18);
  border-color: rgba(208, 223, 218, 0.55);
  border-bottom-color: var(--blue);
  color: var(--platinum);
  box-shadow: none;
}
.hero-btns .btn--blue::before    { background: var(--navy); }
.hero-btns .btn--outline-light::before { background: var(--blue-deep); }
.hero-btns .btn--blue:hover      { color: var(--blue-lt); border-color: var(--navy); }
.hero-btns .btn--outline-light:hover { color: white; border-color: var(--blue); }
