/* ================================================================
   Miami I-395 Signature Bridge — Connecting Miami
   Color Reference: The Walsh Group (walshgroup.com)
   ── White dominant · Charcoal darks · #00A161 green accent only ──
   ================================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Color Tokens ── */
:root {
  /* Walsh Green — used sparingly as the brand accent */
  --green:        #00A161;
  --green-dark:   #00804d;
  --green-light:  rgba(0, 161, 97, 0.08);
  --green-mid:    rgba(0, 161, 97, 0.15);

  /* Whites & Greys — the dominant palette (85%+ of the page) */
  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --light-grey:   #f0f2f4;
  --mid-grey:     #e4e7eb;
  --border:       #dde1e6;

  /* Text — dark charcoal, never blue */
  --text-dark:    #1a1a1a;
  --text-body:    #4a4a4a;
  --text-muted:   #767676;
  --text-light:   #9a9a9a;

  /* Dark surfaces — footer, ticker, stats bar — pure charcoal, no blue */
  --charcoal:     #1c1c1c;
  --charcoal-mid: #2a2a2a;
  --charcoal-lt:  #383838;
}

/* ── Skip Nav ── */
.skip-nav {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  background: var(--green); color: #fff; padding: .5rem 1rem;
  border-radius: 3px; font-weight: 700; transition: top .2s;
}
.skip-nav:focus { top: 1rem; }

/* ── Scroll Progress ── */
#prog {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--green);
  z-index: 9999; transition: width .1s linear;
}

/* ── Walsh Logo Banner — large logo above header ── */
.walsh-logo-banner {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 2rem;
}
.walsh-logo-banner a { display: flex; align-items: center; }
.walsh-logo-banner-img {
  height: 72px; width: auto; object-fit: contain; display: block;
  transition: opacity .2s;
}
.walsh-logo-banner a:hover .walsh-logo-banner-img { opacity: .8; }

/* ── Utility Bar — thin charcoal strip ── */
.util-bar {
  background: var(--charcoal);
  font-size: .75rem; color: rgba(255,255,255,.5);
  position: relative; z-index: 200;
}
.util-inner {
  max-width: 1320px; margin: 0 auto; padding: .4rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.util-links { display: flex; gap: 1.5rem; }
.util-links a { color: rgba(255,255,255,.45); transition: color .2s; font-size: .75rem; }
.util-links a:hover { color: var(--green); }
.util-bar span i { color: var(--green); margin-right: .4rem; }

/* ── Header — white, clean, exact Walsh style ── */
#site-header {
  position: sticky; top: 0; z-index: 500;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.shrink {
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.hdr-inner {
  max-width: 1320px; margin: 0 auto; padding: .9rem 2rem;
  display: flex; align-items: center; gap: 2rem;
}
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.logo-emblem {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-walsh-logo {
  height: 36px; width: auto; object-fit: contain; display: block;
}
.hero-walsh-logo {
  height: 64px; width: auto; object-fit: contain; display: block;
  margin-bottom: 1.5rem;
  /* white version so it shows on the dark hero */
  filter: brightness(0) invert(1);
  opacity: .92;
}
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  font-weight: 700; letter-spacing: .02em; color: var(--text-dark); line-height: 1.1;
}
.logo-sub { font-size: .65rem; color: var(--text-muted); letter-spacing: .03em; }

/* ── Nav — dark charcoal text on white, green hover — Walsh exact ── */
#main-nav { margin-left: auto; }
#main-nav ul { display: flex; gap: 0; align-items: center; }
#main-nav li { position: relative; }
#main-nav a {
  display: block; padding: .55rem .9rem; font-size: .85rem;
  font-weight: 600; color: var(--text-dark);
  transition: color .2s; letter-spacing: .01em;
}
#main-nav a:hover,
#main-nav .active > a { color: var(--green); }
.has-drop .dropdown {
  display: none; position: absolute; top: calc(100% + 1px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; min-width: 200px; padding: .4rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
}
.has-drop:hover .dropdown { display: block; }
.dropdown li a { padding: .5rem 1.1rem; font-size: .84rem; color: var(--text-body); }
.dropdown li a:hover { background: var(--off-white); color: var(--green); }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 450;
  background: #fff; padding: 5rem 2rem 2rem; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
  display: block; padding: .9rem 1rem; font-size: 1rem; font-weight: 600;
  color: var(--text-dark); border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-nav a:hover { color: var(--green); }
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 440; background: rgba(0,0,0,.3);
}
.nav-overlay.open { display: block; }

/* ── Hero — full-bleed photo, dark overlay, white text (Walsh uses this pattern) ── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--charcoal);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate; opacity: .62;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.80) 0%, rgba(0,0,0,.50) 55%, rgba(0,0,0,.18) 100%);
}
.hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--green); z-index: 2;
}
.hero-container {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto; padding: 7rem 2rem 6rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 3px; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 1rem; max-width: 800px; color: #fff;
}
.hero-title span { color: var(--green); }
.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem); font-weight: 500;
  color: rgba(255,255,255,.70); margin-bottom: 1rem; letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.68);
  max-width: 600px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: 4px;
  font-weight: 600; font-size: .875rem; letter-spacing: .03em;
  transition: all .2s; cursor: pointer;
}
/* Primary = Walsh green */
.btn-primary { background: var(--green); color: #fff; border: 2px solid var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
/* White outline — for hero dark backgrounds */
.btn-wht-out { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-wht-out:hover { border-color: #fff; background: rgba(255,255,255,.10); }
/* Dark charcoal button — no blue */
.btn-navy { background: var(--charcoal); color: #fff; border: 2px solid var(--charcoal); }
.btn-navy:hover { background: var(--charcoal-mid); border-color: var(--charcoal-mid); transform: translateY(-1px); }
/* Charcoal outline */
.btn-out-navy { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }
.btn-out-navy:hover { background: var(--text-dark); color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* ── Ticker — charcoal strip, green label ── */
.ticker-wrap {
  background: var(--charcoal);
  display: flex; align-items: center; overflow: hidden; height: 40px;
}
.ticker-label {
  flex-shrink: 0; padding: 0 1.1rem; height: 100%;
  display: flex; align-items: center; gap: .4rem;
  background: var(--green); color: #fff; font-size: .72rem;
  font-weight: 700; letter-spacing: .10em; text-transform: uppercase; white-space: nowrap;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: inline-flex; white-space: nowrap;
  animation: ticker 55s linear infinite;
  font-size: .76rem; font-weight: 500; color: rgba(255,255,255,.55);
  padding: .5rem 0;
}
.ticker-inner span { padding: 0 .5rem; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ── Stats Bar — charcoal, green numbers ── */
.stats-bar {
  background: var(--charcoal-mid);
  padding: 2.25rem 0;
}
.stats-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .75rem 2.5rem; text-align: center;
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem;
  font-weight: 800; color: var(--green); line-height: 1;
}
.stat-lbl {
  font-size: .68rem; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .3rem;
}
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.10); flex-shrink: 0; }

/* ── Sections — white and off-white alternating, Walsh style ── */
.section { padding: 5rem 0; background: #fff; }
.section-alt { background: var(--off-white); }
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

/* Section labels — green only ── */
.sec-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green);
  margin-bottom: .6rem;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: -.01em; color: var(--text-dark);
}
.sec-intro {
  font-size: 1rem; color: var(--text-body);
  max-width: 720px; margin-bottom: 2.75rem; line-height: 1.78;
}

/* ── Two-col layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.col-text p { color: var(--text-body); margin-bottom: 1rem; line-height: 1.78; }
.about-facts { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; }
.fact { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--text-body); }
.fact i { color: var(--green); margin-top: .18rem; flex-shrink: 0; }

/* ── Image Stack ── */
.img-stack { position: relative; }
.img-main {
  width: 100%; border-radius: 5px; object-fit: cover; max-height: 480px;
  box-shadow: 0 6px 32px rgba(0,0,0,.12);
}
.img-badge-block { position: absolute; bottom: 1.5rem; left: -1rem; }
.img-badge {
  background: var(--green); color: #fff; padding: .7rem 1.1rem;
  border-radius: 4px; display: flex; flex-direction: column;
  font-weight: 700; box-shadow: 0 4px 16px rgba(0,161,97,.28);
}
.img-badge span { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.img-badge strong { font-size: 1.4rem; line-height: 1.1; }

/* ── Photo Banner — dark photo overlay ── */
.photo-banner {
  background-size: cover; background-position: center; position: relative;
  padding: 3.5rem 2rem;
}
.photo-banner-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.72);
}
.photo-banner-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.banner-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: .75rem 2.5rem; text-align: center;
}
.banner-stat strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem;
  font-weight: 800; color: #fff; line-height: 1;
}
.banner-stat span {
  font-size: .7rem; color: rgba(255,255,255,.52);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem;
}
.banner-divider { width: 1px; height: 50px; background: rgba(255,255,255,.15); }

/* ── Glance Grid ── */
.glance-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.glance-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; padding: 1.2rem 1.4rem;
  transition: box-shadow .2s;
}
.glance-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.glance-icon {
  width: 38px; height: 38px; border-radius: 4px; flex-shrink: 0;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1rem;
}
.glance-info { display: flex; flex-direction: column; gap: .2rem; }
.glance-lbl { font-size: .67rem; text-transform: uppercase; letter-spacing: .10em; color: var(--text-muted); }
.glance-val { font-size: .875rem; font-weight: 600; color: var(--text-dark); }

/* ── Signature Bridge section ── */
.sig-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 3rem; align-items: start; }
.sig-img-col { display: flex; flex-direction: column; gap: .75rem; }
.sig-main-img { border-radius: 5px; width: 100%; object-fit: cover; max-height: 320px; box-shadow: 0 5px 24px rgba(0,0,0,.11); }
.sig-sub-img { border-radius: 5px; width: 100%; object-fit: cover; max-height: 180px; box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.sig-content { display: flex; flex-direction: column; gap: 1.5rem; }
.sig-feature { display: flex; gap: 1rem; align-items: flex-start; }
.sig-icon {
  width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1rem;
}
.sig-feature h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; color: var(--text-dark); }
.sig-feature p { font-size: .85rem; color: var(--text-body); line-height: 1.65; }

/* ── Scope Grid ── */
.scope-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.scope-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; padding: 1.75rem;
  transition: box-shadow .2s, border-left-color .2s;
  border-left: 3px solid transparent;
}
.scope-card:hover { border-left-color: var(--green); box-shadow: 0 5px 20px rgba(0,0,0,.07); }
.scope-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1.1rem; margin-bottom: 1rem;
}
.scope-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-dark); }
.scope-card p { font-size: .85rem; color: var(--text-body); line-height: 1.65; }

/* ── Team Grid ── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.team-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; padding: 1.75rem; transition: box-shadow .2s;
}
.team-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,.07); }
.team-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1.1rem; margin-bottom: 1rem;
}
.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; color: var(--text-dark); }
.team-role { font-size: .7rem; text-transform: uppercase; letter-spacing: .10em; color: var(--green); display: block; margin-bottom: .65rem; font-weight: 600; }
.team-card p { font-size: .85rem; color: var(--text-body); line-height: 1.65; margin-bottom: .85rem; }
.team-link { font-size: .78rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: .3rem; font-weight: 600; }
.team-link:hover { color: var(--green); }

/* ── Partner Strip — light grey, neutral ── */
.partner-strip {
  background: var(--light-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.partner-heading {
  display: block; text-align: center; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 3rem;
}
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--text-muted); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600; transition: color .2s;
}
.partner-logo:hover { color: var(--green); }

/* ── History ── */
.history-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.history-imgs { display: flex; flex-direction: column; gap: .75rem; }
.hist-img-main { border-radius: 5px; width: 100%; object-fit: cover; max-height: 340px; box-shadow: 0 5px 24px rgba(0,0,0,.11); }
.hist-img-side { border-radius: 5px; width: 100%; object-fit: cover; max-height: 180px; box-shadow: 0 4px 16px rgba(0,0,0,.09); }

/* ── Timeline ── */
.history-timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 1.1rem; padding-bottom: 1.75rem; position: relative; }
.tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 10px; top: 24px; bottom: 0; width: 1px;
  background: var(--border);
}
.tl-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: .2rem;
  border: 2px solid var(--green); background: #fff;
}
.tl-active .tl-dot { background: var(--green); }
.tl-future .tl-dot { border-color: var(--mid-grey); background: #fff; }
.tl-body { flex: 1; }
.tl-year {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .10em;
  color: var(--green); margin-bottom: .3rem;
}
.tl-future .tl-year { color: var(--text-light); }
.tl-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: .35rem; color: var(--text-dark); }
.tl-body p { font-size: .84rem; color: var(--text-body); line-height: 1.65; }

/* ── Community Grid ── */
.community-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.comm-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.comm-card:hover { box-shadow: 0 7px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.comm-img { width: 100%; height: 200px; object-fit: cover; }
.comm-body { padding: 1.35rem; }
.comm-icon {
  width: 36px; height: 36px; border-radius: 4px; margin-bottom: .75rem;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: .95rem;
}
.comm-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-dark); }
.comm-body p { font-size: .84rem; color: var(--text-body); line-height: 1.65; }

/* ── Filter Buttons ── */
.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem; }
.filter-btn {
  padding: .4rem 1.1rem; border-radius: 3px;
  border: 1px solid var(--border); background: #fff;
  color: var(--text-body); font-size: .78rem; font-weight: 600;
  cursor: pointer; transition: all .18s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Updates Grid ── */
.updates-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
}
.upd-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.upd-card:hover { box-shadow: 0 7px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.upd-card.hidden { display: none; }
.upd-img { position: relative; }
.upd-img img { width: 100%; height: 200px; object-fit: cover; display: block; cursor: zoom-in; }
.upd-cat-tag {
  position: absolute; top: .65rem; right: .65rem;
  background: var(--green); color: #fff; font-size: .65rem;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .2rem .65rem; border-radius: 3px;
}
.upd-body { padding: 1.1rem 1.35rem; }
.upd-date { font-size: .72rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; margin-bottom: .45rem; }
.upd-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; line-height: 1.3; color: var(--text-dark); }
.upd-body p { font-size: .83rem; color: var(--text-body); line-height: 1.6; }

/* ── Documents ── */
.docs-grid { display: flex; flex-direction: column; gap: .65rem; margin-top: 2rem; }
.doc-card {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 5px; padding: 1rem 1.35rem;
  transition: border-color .2s, box-shadow .2s;
}
.doc-card:hover { border-color: var(--green); box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.doc-icon {
  width: 40px; height: 40px; border-radius: 4px; flex-shrink: 0;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--green); font-size: 1rem;
}
.doc-info { flex: 1; }
.doc-info h4 { font-size: .9rem; font-weight: 600; margin-bottom: .15rem; color: var(--text-dark); }
.doc-meta { font-size: .72rem; color: var(--text-muted); }
.doc-btn {
  width: 34px; height: 34px; border-radius: 4px; flex-shrink: 0;
  background: var(--light-grey); display: flex; align-items: center;
  justify-content: center; color: var(--text-muted); font-size: .85rem;
  transition: background .18s, color .18s;
}
.doc-btn:hover { background: var(--green); color: #fff; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; margin-top: 2rem; }
.contact-block { margin-bottom: 1.5rem; }
.contact-block h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; display: flex; align-items: center; gap: .45rem; color: var(--text-dark); }
.contact-block h3 i { color: var(--green); }
.contact-block p { font-size: .875rem; color: var(--text-body); line-height: 1.7; }
.contact-block a { color: var(--green); font-weight: 500; }
.contact-block a:hover { text-decoration: underline; }
.contact-block.urgent {
  background: rgba(200,30,40,.05); border: 1px solid rgba(200,30,40,.18);
  border-radius: 5px; padding: 1rem;
}
.contact-block.urgent h3 i { color: #c81e28; }
.contact-block.urgent h3 { color: #c81e28; }
.contact-form-wrap {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 5px; padding: 2.25rem;
}
.contact-form-wrap h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.4rem; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.form-group label { font-size: .75rem; font-weight: 600; color: var(--text-body); text-transform: uppercase; letter-spacing: .04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  color: var(--text-dark); font-size: .875rem; font-family: inherit; padding: .65rem .9rem;
  transition: border-color .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,161,97,.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  margin-top: .85rem; background: rgba(0,161,97,.07); border: 1px solid var(--green);
  border-radius: 4px; padding: .85rem 1rem;
  display: flex; align-items: center; gap: .65rem; color: var(--green); font-weight: 600; font-size: .875rem;
}

/* ── Map ── */
.map-wrap { line-height: 0; }
.map-wrap iframe { display: block; }

/* ── Footer — dark charcoal (not blue), Walsh style ── */
.site-footer {
  background: var(--charcoal);
  border-top: 3px solid var(--green);
  padding: 3.5rem 0 0;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 2rem 2.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.footer-logo-title { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: #fff; }
.footer-logo-sub { display: block; font-size: .62rem; color: rgba(255,255,255,.38); margin-top: .1rem; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.42); line-height: 1.75; }
.footer-links h4 { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.30); margin-bottom: .9rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.48); transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 2rem; text-align: center;
  font-size: .75rem; color: rgba(255,255,255,.28); max-width: 100%;
}

/* ── Back to Top ── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 2px 12px rgba(0,161,97,.28);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { background: var(--green-dark); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-img-wrap { max-width: 90vw; max-height: 85vh; }
.lb-img-wrap img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem; color: #fff; font-size: 1.3rem; z-index: 10;
  background: rgba(255,255,255,.10); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 1.1rem;
  background: rgba(255,255,255,.10); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--green); }
.lb-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: .82rem; text-align: center; }

/* ── Walsh Logo image uses ── */
.team-icon--logo {
  width: auto; height: 44px; background: transparent;
  border: none; padding: 0; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: flex-start;
}
.team-logo-img {
  height: 36px; width: auto; object-fit: contain; display: block;
}
.partner-logo--walsh {
  display: flex; align-items: center; justify-content: center;
}
.partner-walsh-logo {
  height: 32px; width: auto; object-fit: contain;
  opacity: .65; transition: opacity .2s; filter: grayscale(20%);
}
.partner-logo--walsh:hover .partner-walsh-logo { opacity: 1; filter: none; }
.footer-walsh-logo {
  height: 36px; width: auto; object-fit: contain; display: block;
  /* invert to white so it shows on dark footer */
  filter: brightness(0) invert(1);
  opacity: .75;
}

/* ── Scroll-reveal animations ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .history-layout { grid-template-columns: 1fr; }
  .sig-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-item { padding: .75rem 1.5rem; }
}
@media (max-width: 768px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-container { padding: 5rem 1.5rem 4.5rem; }
  .stats-inner { flex-direction: column; gap: .75rem; }
  .stat-divider { width: 60px; height: 1px; }
  .banner-divider { width: 80%; height: 1px; }
  .photo-banner-content { flex-direction: column; gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .scope-grid, .team-grid, .updates-grid { grid-template-columns: 1fr; }
  .img-badge-block { left: 0; }
  .partner-logos { gap: 1.5rem; }
  .hdr-inner { padding: .75rem 1.25rem; }
}
