:root {
  --navy: #07111f;
  --navy-2: #0b1729;
  --panel: #101f34;
  --gold: #dcb10e;
  --gold-soft: #f0cf55;
  --text: #edf3fb;
  --muted: #9dafc5;
  --line: rgba(255,255,255,.09);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,17,31,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1rem; letter-spacing: .02em; }
.brand-text small { color: var(--muted); font-size: .68rem; margin-top: 6px; font-style: italic; }
.planet-mark { position: relative; width: 40px; height: 40px; display: inline-grid; place-items: center; }
.planet-mark::before { content: ""; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 26px rgba(220,177,14,.28); }
.planet-mark::after { content: ""; position: absolute; width: 35px; height: 12px; border: 2px solid var(--gold); border-radius: 50%; transform: rotate(-15deg); }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #c9d4e2; font-size: .93rem; font-weight: 600; }
.site-nav a:hover { color: var(--white); }
.nav-cta { border: 1px solid rgba(220,177,14,.5); padding: 9px 15px; border-radius: 10px; color: var(--gold-soft) !important; }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.5rem; }

.hero { position: relative; overflow: hidden; padding: 112px 0 88px; background: radial-gradient(circle at 80% 20%, rgba(34,70,116,.28), transparent 34%), linear-gradient(180deg, #07111f 0%, #091522 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: var(--gold-soft); font-weight: 800; font-size: .74rem; margin: 0 0 14px; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.2rem); line-height: .98; letter-spacing: -.055em; max-width: 820px; margin-bottom: 26px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; margin-bottom: 20px; }
h3 { font-size: 1.18rem; margin-bottom: 10px; }
.hero-lead, .body-copy, .section-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.hero-lead { max-width: 720px; }
.hero-actions { display: flex; gap: 14px; margin: 32px 0; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; font-weight: 800; }
.btn-primary { background: var(--gold); color: #101010; box-shadow: 0 12px 32px rgba(220,177,14,.17); }
.btn-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-trust span { border: 1px solid var(--line); color: #b7c5d5; border-radius: 999px; padding: 7px 11px; font-size: .72rem; }

.hero-panel { position: relative; }
.status-card { position: relative; min-height: 460px; padding: 24px; border-radius: 26px; background: linear-gradient(145deg, rgba(18,37,61,.94), rgba(10,23,40,.98)); border: 1px solid rgba(255,255,255,.10); box-shadow: 0 34px 90px rgba(0,0,0,.34); overflow: hidden; }
.status-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding-bottom: 20px; border-bottom: 1px solid var(--line); color: #bfd0e1; font-size: .78rem; }
.status-top strong { color: #72d49f; font-size: .7rem; letter-spacing: .12em; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #72d49f; box-shadow: 0 0 16px rgba(114,212,159,.55); }
.metric-row { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 17px 2px; font-size: .83rem; color: var(--muted); }
.metric-row strong { color: var(--text); font-size: .8rem; }
.orbit-visual { position: absolute; width: 270px; height: 190px; left: 50%; bottom: 20px; transform: translateX(-50%); }
.orbital-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(220,177,14,.32); border-radius: 50%; transform: translate(-50%,-50%) rotate(-12deg); }
.ring-a { width: 250px; height: 72px; }
.ring-b { width: 185px; height: 112px; transform: translate(-50%,-50%) rotate(35deg); border-color: rgba(146,176,213,.22); }
.planet-core { position: absolute; width: 82px; height: 82px; border-radius: 50%; background: radial-gradient(circle at 35% 28%, #f1d463, #d3a400 62%, #8a6a00); left: 50%; top: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 50px rgba(220,177,14,.25); }
.mini-satellite { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: #dbe7f2; left: 18px; top: 91px; box-shadow: 0 0 18px rgba(219,231,242,.55); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; }
.glow-one { width: 340px; height: 340px; background: #17497d; right: -110px; top: 40px; }
.glow-two { width: 240px; height: 240px; background: #8b6d0d; left: -120px; bottom: -80px; opacity: .18; }

.section { padding: 96px 0; }
.section.alt { background: #0a1626; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: rgba(255,255,255,.026); border: 1px solid var(--line); border-radius: 18px; padding: 28px; transition: .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(220,177,14,.35); background: rgba(255,255,255,.04); }
.service-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(220,177,14,.09); border: 1px solid rgba(220,177,14,.18); color: var(--gold-soft); margin-bottom: 20px; font-size: 1.2rem; }
.split-grid, .about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.feature-list { margin-top: 32px; display: grid; gap: 8px; }
.feature-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.feature-list span { color: var(--gold); font-weight: 800; font-size: .8rem; }
.feature-list p { color: var(--muted); margin: 0; font-size: .92rem; }
.feature-list strong { color: var(--text); }
.stack-panel { padding: 18px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018)); }
.stack-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-soft); padding: 12px 12px 16px; }
.stack-item { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 18px 12px; border-top: 1px solid var(--line); }
.stack-item span { color: var(--muted); font-size: .78rem; }
.stack-item strong { font-size: .9rem; }
.about-grid { grid-template-columns: .75fr 1.25fr; }
.about-badge { min-height: 360px; display: flex; flex-direction: column; justify-content: center; padding: 36px; border-radius: 24px; border: 1px solid rgba(220,177,14,.2); background: radial-gradient(circle at 50% 20%, rgba(220,177,14,.09), transparent 45%), rgba(255,255,255,.02); color: var(--muted); }
.big-year { color: var(--text); font-size: 3.6rem; line-height: 1; font-weight: 800; letter-spacing: -.06em; }
.divider { height: 1px; background: var(--line); margin: 30px 0; }
.cta-section { padding: 40px 0 96px; }
.cta-box { border-radius: 24px; padding: 42px; background: linear-gradient(135deg, rgba(220,177,14,.12), rgba(19,54,88,.32)); border: 1px solid rgba(220,177,14,.22); display: grid; grid-template-columns: 1fr 1fr; gap: 42px; }
.contact-actions { display: grid; gap: 10px; }
.contact-link { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: rgba(7,17,31,.55); border: 1px solid var(--line); padding: 16px 18px; border-radius: 12px; }
.contact-link span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; }
.contact-link strong { font-size: .86rem; }
footer { border-top: 1px solid var(--line); padding: 34px 0 42px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-copy { text-align: right; color: var(--muted); font-size: .78rem; }
.footer-copy p { margin: 3px 0; }
.footer-brand { opacity: .95; }

@media (max-width: 900px) {
  .hero-grid, .split-grid, .about-grid, .cta-box { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-panel { max-width: 620px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 76px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; background: #0a1626; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 22px 60px rgba(0,0,0,.35); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-grid { gap: 36px; }
  .card-grid { grid-template-columns: 1fr; }
  .section { padding: 74px 0; }
  .cta-box { padding: 28px 22px; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 3px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
  .brand-text small { display: none; }
}

/* Expanded service sections */
.service-jump-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.service-jump-grid a { display:flex; justify-content:space-between; align-items:center; padding:20px 22px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.026); font-weight:700; transition:.25s ease; }
.service-jump-grid a span { color:var(--gold); }
.service-jump-grid a:hover { transform:translateY(-3px); border-color:rgba(220,177,14,.4); background:rgba(255,255,255,.045); }
.service-detail { scroll-margin-top:80px; }
.service-detail-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:72px; align-items:start; }
.service-detail-grid h2 { max-width:560px; }
.service-points { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:28px; }
.service-points span { padding:14px 16px; border:1px solid var(--line); border-radius:10px; background:rgba(255,255,255,.022); color:#c8d4e0; font-size:.86rem; }
@media (max-width:900px) { .service-jump-grid { grid-template-columns:repeat(2,1fr); } .service-detail-grid { grid-template-columns:1fr; gap:24px; } }
@media (max-width:680px) { .service-jump-grid,.service-points { grid-template-columns:1fr; } }


/* Multi-page website additions */
.site-nav a.active:not(.nav-cta) { color: var(--gold-soft); }
.nav-cta.active { background: rgba(220,177,14,.08); }
.page-hero { position: relative; overflow: hidden; padding: 118px 0 82px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 22%, rgba(34,70,116,.28), transparent 34%), linear-gradient(180deg,#07111f 0%,#091522 100%); }
.page-hero::after { content:""; position:absolute; width:380px; height:380px; border-radius:50%; right:-170px; bottom:-220px; background:rgba(220,177,14,.08); filter:blur(45px); }
.narrow { max-width: 920px; }
.page-hero h1 { max-width: 900px; }
.service-card-link { display:block; min-height: 245px; position:relative; padding-bottom:58px; }
.card-arrow { position:absolute; left:28px; bottom:25px; color:var(--gold-soft); font-size:.83rem; font-weight:800; }
.center-actions { display:flex; justify-content:center; margin-top:34px; }
.service-page-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:72px; align-items:start; }
.service-feature-list { margin-top:0; }
.service-jump-grid a { min-height:70px; }
.contact-page-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-card { border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.026); padding:34px; }
.contact-card.full { grid-column:1/-1; }
.contact-card h2 { font-size:clamp(1.7rem,3vw,2.5rem); overflow-wrap:anywhere; }
.email-heading { font-size:clamp(1.45rem,2.5vw,2.2rem) !important; }
.footer-links { display:flex; gap:18px; color:var(--muted); font-size:.78rem; }
.footer-links a:hover { color:var(--gold-soft); }
@media (max-width:900px){ .service-page-grid,.contact-page-grid{grid-template-columns:1fr}.contact-card.full{grid-column:auto}.footer-grid{align-items:flex-start;flex-wrap:wrap}.footer-links{order:3;width:100%;} }
@media (max-width:680px){ .page-hero{padding:82px 0 62px}.service-card-link{min-height:0}.footer-links{flex-wrap:wrap}.footer-copy{max-width:100%} }


/* Consolidated light Saturn theme */
:root {
  --navy: #07111f;
  --navy-2: #0b1729;
  --panel: #f7f9fc;
  --text: #1d2938;
  --muted: #607086;
  --line: rgba(7,17,31,.12);
  --white: #ffffff;
}
body { background:#fff; color:var(--text); }
.site-header { background:rgba(255,255,255,.96); border-bottom:1px solid var(--line); box-shadow:0 5px 22px rgba(7,17,31,.05); }
.brand-text strong, h1, h2, h3 { color:#07111f; }
.brand-text small { color:#607086; }
.site-nav a { color:#30445d; }
.site-nav a:hover { color:#07111f; }
.menu-toggle { color:#07111f; }
.nav-cta { color:#07111f !important; background:rgba(220,177,14,.10); }
.hero, .page-hero { background:radial-gradient(circle at 80% 20%, rgba(23,73,125,.09), transparent 34%), linear-gradient(180deg,#fff 0%,#f7f9fc 100%) !important; }
.hero-lead, .body-copy, .section-heading > p:last-child { color:#607086; }
.btn-secondary { border-color:rgba(7,17,31,.15); background:#fff; color:#07111f; }
.hero-trust span { border-color:rgba(7,17,31,.12); color:#52657c; background:#fff; }
.status-card { background:linear-gradient(145deg,#fff,#f4f7fb) !important; border-color:rgba(7,17,31,.12) !important; box-shadow:0 24px 70px rgba(7,17,31,.10); }
.status-card, .status-card * { color:inherit; }
.status-card h3, .status-card strong { color:#07111f; }
section, .section, .service-section { background:#fff !important; }
.section-alt, .alt-section { background:#f7f9fc !important; }
.card, .service-card, .info-card, .feature-card, .contact-card, .content-card, .mini-card { background:#fff !important; border-color:rgba(7,17,31,.12) !important; box-shadow:0 12px 35px rgba(7,17,31,.055); }
.card p, .service-card p, .info-card p, .feature-card p, .contact-card p, .content-card p, .mini-card p { color:#607086 !important; }
.site-footer, footer { background:#fff !important; color:#607086 !important; border-top:1px solid rgba(7,17,31,.12) !important; }
.site-footer strong, footer strong, .site-footer h3, footer h3 { color:#07111f !important; }
.site-footer a, footer a { color:#30445d; }
.site-footer a:hover, footer a:hover { color:#07111f; }
.cta-panel, .cta-band { background:linear-gradient(135deg,rgba(220,177,14,.10),rgba(23,73,125,.08)) !important; border-color:rgba(7,17,31,.10) !important; }
.eyebrow { color:#8b6d0d; }

/* Light navigation/menu treatment */
@media (max-width:680px) {
  .site-nav {
    background:#ffffff !important;
    border:1px solid rgba(7,17,31,.12) !important;
    box-shadow:0 18px 45px rgba(7,17,31,.12) !important;
  }
  .site-nav a {
    color:#30445d !important;
    background:#ffffff;
    border-radius:10px;
  }
  .site-nav a:hover {
    color:#07111f !important;
    background:#f7f9fc !important;
  }
  .site-nav a.active:not(.nav-cta) {
    color:#07111f !important;
    background:rgba(220,177,14,.12) !important;
  }
  .site-nav .nav-cta {
    color:#07111f !important;
    background:rgba(220,177,14,.12) !important;
    border-color:rgba(220,177,14,.45) !important;
  }
}
.service-jump-grid a {
  background:#ffffff !important;
  color:#07111f !important;
  border-color:rgba(7,17,31,.12) !important;
  box-shadow:0 8px 24px rgba(7,17,31,.04);
}
.service-jump-grid a:hover {
  background:#f7f9fc !important;
  border-color:rgba(220,177,14,.45) !important;
}

/* Light navigation/menu treatment */
.site-nav { background: transparent; }
.site-nav a { color:#30445d; }
.site-nav a:hover, .site-nav a.active:not(.nav-cta) { color:#07111f; }
.site-nav a.active:not(.nav-cta) { position:relative; }
.site-nav a.active:not(.nav-cta)::after { content:""; position:absolute; left:0; right:0; bottom:-10px; height:2px; background:#dcb10e; border-radius:2px; }
.nav-cta { border-color:rgba(220,177,14,.45) !important; background:#fff !important; color:#07111f !important; }
.nav-cta:hover, .nav-cta.active { background:rgba(220,177,14,.12) !important; border-color:#dcb10e !important; }
@media (max-width:900px) {
  .site-nav {
    background:#fff !important;
    border:1px solid rgba(7,17,31,.12) !important;
    box-shadow:0 18px 48px rgba(7,17,31,.12) !important;
  }
  .site-nav a {
    color:#30445d !important;
    background:#fff;
    border-radius:10px;
  }
  .site-nav a:hover, .site-nav a.active:not(.nav-cta) {
    color:#07111f !important;
    background:#f7f9fc !important;
  }
  .site-nav a.active:not(.nav-cta)::after { display:none; }
  .nav-cta {
    background:rgba(220,177,14,.10) !important;
    border:1px solid rgba(220,177,14,.35) !important;
  }
}
.service-jump-grid a { background:#fff !important; color:#07111f !important; border-color:rgba(7,17,31,.12) !important; box-shadow:0 8px 24px rgba(7,17,31,.04); }
.service-jump-grid a:hover { background:#f7f9fc !important; border-color:rgba(220,177,14,.45) !important; }
.service-jump-grid a span { color:#8b6d0d; }


/* Cape Fear Memorial Bridge homepage hero */
.bridge-home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f7f9fc;
  border-bottom: 1px solid rgba(7,17,31,.10);
}
.bridge-home-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.bridge-home-hero .bridge-hotspot {
  position: absolute;
  z-index: 3;
  width: 14%;
  height: 6%;
  bottom: 6%;
  border-radius: 12px;
}
.bridge-home-hero .bridge-hotspot.residential { left: 24.2%; }
.bridge-home-hero .bridge-hotspot.business { left: 61.1%; }
.bridge-home-hero .bridge-hotspot:focus-visible {
  outline: 3px solid #07111f;
  outline-offset: 3px;
}
@media (max-width: 680px) {
  .bridge-home-hero {
    min-height: 460px;
    display: flex;
    align-items: center;
  }
  .bridge-home-hero img {
    width: auto;
    max-width: none;
    height: 460px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .bridge-home-hero .bridge-hotspot {
    display: none;
  }
}

.section.alt { background:#f7f9fc !important; border-color:rgba(7,17,31,.10) !important; }
.cta-box { background:linear-gradient(135deg,rgba(220,177,14,.10),rgba(23,73,125,.08)) !important; border-color:rgba(7,17,31,.10) !important; }
.contact-link { background:#fff !important; border-color:rgba(7,17,31,.12) !important; color:#07111f !important; }
.contact-link span { color:#607086 !important; }
.stack-panel, .about-badge, .service-points span { background:#fff !important; border-color:rgba(7,17,31,.12) !important; color:#607086 !important; }
.stack-item strong, .feature-list strong { color:#07111f !important; }
.stack-item span, .feature-list p { color:#607086 !important; }
.big-year { color:#07111f !important; }
.footer-links { flex-wrap:wrap; }


/* Homepage 01–04 replacement for former Technology Stack panel */
.feature-list-replacement {
  align-self: stretch;
  margin-top: 0;
}
.feature-list-replacement > div {
  padding: 28px 0;
}
.feature-list-replacement > div:first-child {
  border-top: 1px solid var(--line, #d7dde5);
}

/* Two-section footer */
.footer-grid-two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 64px;
}
.footer-section h3 {
  margin: 0 0 18px;
  color: var(--navy, #0b1d35);
  font-size: 1rem;
  letter-spacing: .04em;
}
.footer-grid-two .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-grid-two .footer-copy {
  text-align: left;
}
@media (max-width: 760px) {
  .footer-grid-two {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line, #d7dde5);
  text-align: center;
  font-size: .9rem;
  color: var(--muted, #64748b);
}

/* Keep the Start a Conversation CTA compact on wider screens */
.cta-section .contact-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cta-section .contact-actions .btn {
  width: auto;
  min-width: 140px;
  padding: 12px 22px;
  flex: 0 0 auto;
}
@media (max-width: 700px) {
  .cta-section .contact-actions {
    justify-content: flex-start;
  }
}

/* Keep Residential & Business Technology Services hero at a balanced desktop size */
.bridge-home-hero {
  max-width: 1180px;
  margin: 28px auto 0;
  border-radius: 18px;
}
.bridge-home-hero img {
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: cover;
}
@media (max-width: 1220px) {
  .bridge-home-hero {
    width: calc(100% - 40px);
  }
}
@media (max-width: 680px) {
  .bridge-home-hero {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
}


/* Fully responsive Residential & Business Technology Services hero */
.bridge-home-hero {
  width: min(94vw, 1440px);
  max-width: none;
  margin: clamp(16px, 2.5vw, 32px) auto 0;
  border-radius: clamp(10px, 1.4vw, 18px);
  overflow: hidden;
}

.bridge-home-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Keep clickable areas proportional as the artwork scales */
.bridge-home-hero .bridge-hotspot {
  position: absolute;
  z-index: 3;
  width: 14%;
  height: 6%;
  bottom: 6%;
  border-radius: clamp(6px, .8vw, 12px);
}

@media (min-width: 1600px) {
  .bridge-home-hero {
    width: min(88vw, 1540px);
  }
}

@media (max-width: 900px) {
  .bridge-home-hero {
    width: calc(100% - 28px);
    margin-top: 14px;
  }
}

@media (max-width: 680px) {
  .bridge-home-hero {
    width: calc(100% - 18px);
    min-height: 0;
    margin-top: 10px;
    border-radius: 10px;
    display: block;
  }

  .bridge-home-hero img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    left: auto;
  }

  .bridge-home-hero .bridge-hotspot {
    display: block;
  }
}

/* Restore bridge hero width; keep height balanced and proportional */
.bridge-home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.bridge-home-hero img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .bridge-home-hero {
    width: 100%;
    margin: 0;
  }

  .bridge-home-hero img {
    height: clamp(280px, 50vw, 430px);
  }
}

@media (max-width: 680px) {
  .bridge-home-hero {
    width: 100%;
    min-height: 0;
    margin: 0;
    border-radius: 0;
    display: block;
  }

  .bridge-home-hero img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transform: none;
    left: auto;
  }
}

/* Hero-only correction: prior balanced dimensions + proportional artwork */
.bridge-home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f7f9fc;
}

.bridge-home-hero img {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  max-height: 560px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .bridge-home-hero img {
    height: clamp(280px, 50vw, 430px);
    object-fit: contain;
  }
}

@media (max-width: 680px) {
  .bridge-home-hero img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

/* Hero-only final adjustment:
   keep corrected proportional text/artwork scaling,
   but restore the background artwork to full section/page width. */
.bridge-home-hero {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #f7f9fc;
}

.bridge-home-hero img {
  display: block;
  width: 100vw;
  max-width: none;
  height: clamp(320px, 38vw, 560px);
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .bridge-home-hero img {
    width: 100vw;
    height: clamp(280px, 50vw, 430px);
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .bridge-home-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .bridge-home-hero img {
    width: 100vw;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}


/* =========================================================
   Homepage bridge hero — isolated responsive layout
   Background remains full width; text/buttons scale independently.
   ========================================================= */
#homepage-bridge-hero {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: clamp(470px, 29vw, 550px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #f7f9fc;
  border-radius: 0;
  isolation: isolate;
}

#homepage-bridge-hero .bridge-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 48%;
  opacity: .23;
  filter: saturate(.75) contrast(.88) brightness(1.08);
  transform: none;
}

#homepage-bridge-hero .bridge-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,255,255,.48) 50%, rgba(255,255,255,.72)),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28));
}

#homepage-bridge-hero .bridge-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 28px;
  text-align: center;
}

#homepage-bridge-hero .bridge-hero-heading {
  max-width: 900px;
  margin: 0 auto;
}

#homepage-bridge-hero .bridge-hero-rule {
  display: block;
  width: 150px;
  height: 2px;
  margin: 0 auto 15px;
  background: #d7a400;
}

#homepage-bridge-hero .bridge-hero-kicker {
  margin: 0 0 4px;
  color: #0b1d35;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 800;
  letter-spacing: .09em;
}

#homepage-bridge-hero .bridge-hero-heading h1 {
  margin: 0;
  color: #0b1d35;
  font-size: clamp(38px, 3.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

#homepage-bridge-hero .bridge-hero-subtitle {
  margin: 10px 0 0;
  color: #26364a;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
}

#homepage-bridge-hero .bridge-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(70px, 9vw, 150px);
  margin-top: 26px;
}

#homepage-bridge-hero .bridge-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

#homepage-bridge-hero .bridge-service-icon {
  display: grid;
  place-items: center;
  width: clamp(66px, 5vw, 82px);
  height: clamp(66px, 5vw, 82px);
  margin-bottom: 10px;
  border: 1px solid rgba(215,164,0,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
}

#homepage-bridge-hero .bridge-service-icon svg {
  width: 53%;
  height: 53%;
  fill: none;
  stroke: #d7a400;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#homepage-bridge-hero .bridge-service h2 {
  margin: 0 0 7px;
  color: #0b1d35;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.2;
}

#homepage-bridge-hero .bridge-service p {
  width: min(100%, 540px);
  min-height: 64px;
  margin: 0 auto 15px;
  color: #273445;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
}

#homepage-bridge-hero .bridge-learn-more {
  width: auto;
  min-width: 140px;
  padding: 11px 22px;
  margin-top: auto;
  font-size: 15px;
  line-height: 1.2;
}

#homepage-bridge-hero .bridge-photo-credit {
  position: absolute;
  right: 0;
  bottom: -18px;
  color: rgba(37, 52, 70, .58);
  font-size: 9px;
  line-height: 1;
}

@media (max-width: 900px) {
  #homepage-bridge-hero {
    min-height: 500px;
  }

  #homepage-bridge-hero .bridge-hero-inner {
    width: min(100% - 36px, 760px);
    padding-top: 28px;
  }

  #homepage-bridge-hero .bridge-service-grid {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  #homepage-bridge-hero {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-right: 0;
  }

  #homepage-bridge-hero .bridge-hero-background {
    object-position: 50% 50%;
  }

  #homepage-bridge-hero .bridge-hero-inner {
    width: min(100% - 28px, 540px);
    padding: 28px 0 34px;
  }

  #homepage-bridge-hero .bridge-hero-heading h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  #homepage-bridge-hero .bridge-service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 28px;
  }

  #homepage-bridge-hero .bridge-service p {
    min-height: 0;
  }

  #homepage-bridge-hero .bridge-photo-credit {
    position: static;
    display: block;
    margin-top: 22px;
  }
}

/* Simplified footer: inline links with circular separators */
.footer-links-only {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-inline-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.footer-inline-links a {
  text-decoration: none;
}

.footer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
  flex: 0 0 auto;
}

.footer-copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line, #d7dde5);
  text-align: center;
  font-size: .9rem;
  color: var(--muted, #64748b);
}

@media (max-width: 700px) {
  .footer-inline-links {
    gap: 9px;
  }

  .footer-dot {
    width: 4px;
    height: 4px;
  }
}


/* Homepage testimonials */
.testimonials-section {
  background: #fff;
}

.testimonials-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  position: relative;
  padding: 30px 28px 26px;
  border: 1px solid var(--line, #d7dde5);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 29, 53, .06);
}

.testimonial-mark {
  margin-bottom: 10px;
  color: #d7a400;
  font-size: 54px;
  line-height: .8;
  font-family: Georgia, serif;
}

.testimonial-quote {
  margin: 0 0 24px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.65;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid var(--line, #d7dde5);
}

.testimonial-meta strong {
  color: #0b1d35;
}

.testimonial-meta span {
  color: #64748b;
  font-size: .9rem;
}

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


/* First testimonial attribution formatting */
.testimonial-client-name {
  color: #64748b;
  font-weight: 400;
  font-size: .95rem;
}
.testimonial-client-org {
  color: #0b1d35;
  font-weight: 700;
}


/* First testimonial patch beside attribution */
.testimonial-meta-with-patch {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-meta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-patch {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 4px;
  object-fit: contain;
}

@media (max-width: 560px) {
  .testimonial-meta-with-patch {
    align-items: flex-start;
  }

  .testimonial-patch {
    width: 48px;
  }
}


/* Force first testimonial patch to sit beside the attribution text */
.testimonial-meta.testimonial-meta-with-patch {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 14px;
}

.testimonial-meta.testimonial-meta-with-patch .testimonial-meta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.testimonial-meta.testimonial-meta-with-patch .testimonial-patch {
  display: block;
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 560px) {
  .testimonial-meta.testimonial-meta-with-patch {
    gap: 12px;
  }

  .testimonial-meta.testimonial-meta-with-patch .testimonial-patch {
    width: 48px;
  }
}


/* Put the first testimonial patch on the right side */
.testimonial-meta.testimonial-meta-with-patch {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 14px;
}

.testimonial-meta.testimonial-meta-with-patch .testimonial-meta-text {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.testimonial-meta.testimonial-meta-with-patch .testimonial-patch {
  order: 2;
  display: block;
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 560px) {
  .testimonial-meta.testimonial-meta-with-patch .testimonial-patch {
    width: 48px;
  }
}


/* Center the first testimonial attribution pair */
.testimonial-meta.testimonial-meta-with-patch {
  justify-content: center !important;
  width: 100%;
}

.testimonial-meta.testimonial-meta-with-patch .testimonial-meta-text {
  text-align: center;
  align-items: center;
}
