/* ============================================================
   WAWSA v4 — "Immersive"
   Full-bleed hero · Transparent sticky nav · Photo-rich sections
   Crafto-inspired premium layout
   ============================================================ */

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

:root {
  --blue:        #0067A3;
  --blue-dark:   #00507E;
  --blue-darker: #003A5C;
  --blue-light:  #D9EDF8;
  --tan:         #A87940;
  --tan-dark:    #8B6330;
  --tan-bg:      #FAEEDC;
  --tan-mid:     #EDD5B0;
  --white:       #FFFFFF;
  --gray-50:     #F8F8F6;
  --gray-100:    #EEEEEA;
  --gray-200:    #DDDDD8;
  --gray-400:    #9B9B94;
  --gray-500:    #7A7A72;
  --gray-600:    #5C5C55;
  --gray-700:    #3D3D38;
  --gray-800:    #25251F;
  --gray-900:    #111110;

  /* spacing — --s5 intentionally omitted */
  --s1:.25rem; --s2:.5rem;  --s3:.75rem; --s4:1rem;
  --s6:1.5rem; --s8:2rem;   --s10:2.5rem; --s12:3rem; --s16:4rem;

  --max-w: 1200px;
  --r:     5px;
  --r-lg:  12px;
  --r-xl:  20px;

  --sh-sm: 0 2px 8px rgba(0,0,0,.10);
  --sh-md: 0 6px 24px rgba(0,0,0,.14);
  --sh-lg: 0 12px 48px rgba(0,0,0,.20);
  --sh-xl: 0 20px 60px rgba(0,0,0,.28);

  --hero-photo: url('https://images.unsplash.com/photo-1603328198605-fd20581ccc4f?auto=format&fit=crop&w=1800&q=80');

  --t:      200ms ease;
  --t-slow: 360ms ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem; line-height: 1.65;
  color: var(--gray-800); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); }

.skip-link {
  position: absolute; top: -100%; left: var(--s4);
  background: var(--blue); color: var(--white);
  padding: var(--s2) var(--s4); border-radius: 0 0 var(--r) var(--r);
  font-weight: 700; z-index: 9999; text-decoration: none;
}
.skip-link:focus { top: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s8); }

/* Section label + heading pattern */
.eyebrow {
  display: block; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--tan);
  margin-bottom: var(--s3);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--blue-darker);
  letter-spacing: -.025em; line-height: 1.15;
}
.section-sub {
  font-size: 1rem; color: var(--gray-500); line-height: 1.7;
  margin-top: var(--s4);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: .75rem 1.75rem;
  font-size: .9375rem; font-weight: 700; line-height: 1.2;
  border-radius: var(--r); text-decoration: none;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-blue         { background: var(--blue);      color: var(--white); border-color: var(--blue); }
.btn-blue:hover   { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.btn-tan          { background: var(--tan);        color: var(--white); border-color: var(--tan); }
.btn-tan:hover    { background: var(--tan-dark);   border-color: var(--tan-dark); color: var(--white); }
.btn-white        { background: var(--white);      color: var(--blue-darker); border-color: var(--white); }
.btn-white:hover  { background: var(--tan-bg);     border-color: var(--tan-bg); }
.btn-outline-white       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.btn-outline-blue        { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover  { background: var(--blue); color: var(--white); }
.btn-outline-tan         { background: transparent; color: var(--tan);  border-color: var(--tan); }
.btn-outline-tan:hover   { background: var(--tan);  color: var(--white); }

.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }

/* ============================================================
   HEADER — fixed, always white
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--sh-sm);
}

.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--s8);
  display: flex; align-items: center; height: 68px; gap: var(--s4);
}

.site-branding { flex-shrink: 0; text-decoration: none; }
.site-logo     { height: 50px; width: auto; }

/* Desktop primary nav */
.primary-nav { flex: 1; display: none; }
@media (min-width: 960px) { .primary-nav { display: flex; justify-content: center; } }

.primary-nav > ul { display: flex; list-style: none; align-items: stretch; }
.primary-nav li   { position: relative; }
.primary-nav li.has-dropdown { display: flex; align-items: stretch; }
.primary-nav li.has-dropdown > a { flex: 1; }

.primary-nav a {
  display: flex; align-items: center;
  padding: 0 var(--s3);
  font-size: .875rem; font-weight: 600;
  color: var(--gray-700); text-decoration: none;
  white-space: nowrap; height: 68px;
  transition: color var(--t);
  position: relative;
}
.primary-nav > ul > li > a::after {
  content: ''; position: absolute; bottom: 0; left: var(--s3); right: var(--s3);
  height: 3px; background: var(--tan); border-radius: 3px 3px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--t);
}
.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav > ul > li > a:hover { color: var(--blue-darker); }
.primary-nav > ul > li > a[aria-current="page"] { color: var(--blue); }

.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 230px;
  border-top: 3px solid var(--tan);
  border-radius: 0 var(--r-lg) var(--r-lg) var(--r-lg);
  box-shadow: var(--sh-lg); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 500;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li + li a { border-top: 1px solid var(--gray-100); }
.nav-dropdown a {
  display: block; padding: .65rem var(--s4);
  font-size: .875rem; font-weight: 500;
  color: var(--gray-800); text-decoration: none;
  transition: background var(--t), color var(--t), padding-left var(--t);
}
.nav-dropdown a:hover {
  background: var(--tan-bg); color: var(--blue-darker);
  padding-left: calc(var(--s4) + 4px);
}

/* Header utilities */
.header-util {
  display: flex; align-items: center; gap: var(--s2);
  margin-left: auto; flex-shrink: 0;
}
.util-pay {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--tan); color: var(--white);
  font-size: .8rem; font-weight: 700;
  text-decoration: none; border-radius: var(--r);
  padding: 6px var(--s3); border: 1px solid transparent;
  transition: background var(--t), border-color var(--t), color var(--t);
  line-height: 1;
}
.util-pay:hover { background: var(--tan-dark); color: var(--white); }

.util-logins { display: flex; gap: var(--s1); }
.util-login-drop { position: relative; }
.util-login-btn {
  font-size: .8rem; font-weight: 600; cursor: pointer;
  color: var(--gray-700); background: transparent;
  border: 1px solid var(--gray-200); border-radius: var(--r);
  padding: 5px var(--s3); line-height: 1;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.util-login-btn:hover,
.util-login-drop:focus-within .util-login-btn { background: var(--blue); color: var(--white); border-color: var(--blue); }
.util-login-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r); box-shadow: 0 4px 16px rgba(0,0,0,.10);
  min-width: 150px; list-style: none; padding: var(--s2) 0; margin: 0; z-index: 200;
}
.util-login-drop:hover .util-login-menu,
.util-login-drop:focus-within .util-login-menu,
.util-login-drop.is-open .util-login-menu { display: block; }
.util-login-menu li a {
  display: block; padding: var(--s2) var(--s4);
  font-size: .8125rem; font-weight: 600; text-decoration: none;
  color: var(--gray-700); transition: background var(--t), color var(--t);
}
.util-login-menu li a:hover { background: var(--blue-50, #eff6ff); color: var(--blue); }

.util-fb {
  color: var(--gray-400); text-decoration: none;
  display: flex; align-items: center;
  transition: color var(--t);
}
.util-fb:hover { color: var(--blue); }

/* Hamburger */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: var(--s2); cursor: pointer;
  transition: opacity var(--t);
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 960px) { .nav-toggle { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--gray-900);
  border-top: 2px solid var(--tan);
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  overflow-y: auto;
  z-index: 850;
}
.mobile-nav.is-open { display: block; }
.mobile-nav > ul, .mobile-nav .mobile-subnav { list-style: none; }
.mobile-nav > ul > li > a, .mobile-dropdown-row a {
  display: block; padding: var(--s3) var(--s8);
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--t), color var(--t);
}
.mobile-nav > ul > li > a:hover, .mobile-dropdown-row a:hover {
  background: rgba(255,255,255,.05); color: var(--white);
}
.mobile-dropdown-row { display: flex; align-items: stretch; }
.mobile-dropdown-row a { flex: 1; }
.mobile-caret-btn {
  background: none; border: none; color: rgba(255,255,255,.4);
  padding: var(--s3) var(--s4); font-size: .8rem; cursor: pointer;
  border-left: 1px solid rgba(255,255,255,.07);
  transition: color var(--t);
}
.mobile-subnav { display: none; background: rgba(0,0,0,.25); list-style: none; }
.mobile-subnav.is-open { display: block; }
.mobile-subnav a {
  display: block; padding: var(--s2) var(--s8) var(--s2) calc(var(--s8) + var(--s4));
  color: rgba(255,255,255,.6); font-size: .9rem; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.mobile-subnav a:hover { color: var(--white); }
.mobile-nav-note {
  padding: var(--s4) var(--s8) var(--s2);
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.25);
}
@media (min-width: 960px) { .mobile-nav { display: none !important; } }

/* ============================================================
   HERO — Full-bleed photo, left-biased text, transparent nav overlay
   No top margin — hero starts at y:0 beneath the fixed header.
   padding-top accounts for fixed header height (68px).
   ============================================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  background-color: var(--blue-darker); /* fallback while photo loads */
  background-image:
    linear-gradient(
      100deg,
      rgba(0,40,72,.82) 0%,
      rgba(0,40,72,.62) 55%,
      rgba(0,40,72,.40) 100%
    ),
    var(--hero-photo);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex; align-items: center;
  padding: 68px 0 80px; /* 68px = fixed header height */
  position: relative;
}
.hero-content {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s8);
  max-width: 700px;
  margin-left: max(var(--s8), calc((100vw - var(--max-w)) / 2 + var(--s8)));
}
.hero-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--tan-mid); border-bottom: 1px solid rgba(237,213,176,.4);
  padding-bottom: var(--s2); margin-bottom: var(--s6);
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800; line-height: 1.06;
  color: var(--white); letter-spacing: -.03em;
  margin-bottom: var(--s6);
}
.hero-title em { font-style: normal; color: var(--tan-mid); }
.hero-sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.68);
  line-height: 1.75; max-width: 520px; margin-bottom: var(--s8);
}
.hero-ctas { display: flex; gap: var(--s3); flex-wrap: wrap; }

/* ============================================================
   FEATURES BAR — white card shelf emerging from hero bottom
   ============================================================ */
.features-bar {
  background: var(--white);
  margin-top: -56px;
  position: relative; z-index: 30;
  box-shadow: 0 -12px 48px rgba(0,0,0,.22);
}
.features-bar-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.fb-item {
  display: flex; align-items: flex-start; gap: var(--s4);
  padding: var(--s8) var(--s8);
  border-right: 1px solid var(--gray-100);
}
.fb-item:last-child { border-right: none; }
.fb-icon {
  width: 48px; height: 48px; border-radius: var(--r-lg);
  background: var(--tan-bg); color: var(--tan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-text { flex: 1; }
.fb-label {
  font-size: .8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--blue-darker); display: block;
  margin-bottom: var(--s1);
}
.fb-val { font-size: .875rem; color: var(--gray-500); line-height: 1.3; display: block; margin-bottom: var(--s2); }
.fb-link {
  display: block;
  font-size: .8rem; font-weight: 700; color: var(--tan);
  text-decoration: none; margin-top: var(--s2);
  transition: color var(--t), gap var(--t);
}
.fb-link:hover { color: var(--tan-dark); gap: var(--s2); }

/* ============================================================
   TICKER — Live updates band (below hero + features bar)
   ============================================================ */
.live-updates { background: #b91c1c; overflow: hidden; }
.ticker-wrap  { display: flex; align-items: stretch; height: 36px; }
.ticker-label {
  background: rgba(0,0,0,.22); color: var(--white);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 0 var(--s6); display: flex; align-items: center; gap: var(--s1);
  white-space: nowrap; flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.2);
  position: relative; z-index: 1;
}
.ticker-overflow { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-track {
  display: flex; align-items: center; flex-shrink: 0;
  animation: ticker-scroll 44s linear infinite;
  font-size: .875rem; font-style: italic; color: var(--white);
}
.ticker-track span { padding: 0 var(--s8); white-space: nowrap; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT WAWSA — Large photo left, accent block, text right
   ============================================================ */
.about-section {
  background: var(--white);
  padding: var(--s16) 0;
}
.about-cols {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--s12); align-items: center;
}
.about-photo-side { position: relative; }
.about-photo-frame { position: relative; padding: 0 var(--s8) var(--s8) 0; }

/* Tan accent block behind photo, offset bottom-right */
.about-photo-frame::before {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 72%; height: 80%;
  background: var(--tan-bg);
  border-radius: var(--r-xl);
  z-index: 0;
}
.about-img {
  position: relative; z-index: 1;
  width: 100%; border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  aspect-ratio: 4/3; object-fit: cover;
}

/* Floating "since" badge on photo */
.about-badge {
  position: absolute; z-index: 2;
  bottom: calc(var(--s8) + var(--s4)); right: calc(var(--s8) - var(--s4));
  background: var(--blue-darker); color: var(--white);
  border-radius: var(--r-lg); padding: var(--s4) var(--s6);
  box-shadow: var(--sh-lg); text-align: center;
  border: 2px solid rgba(255,255,255,.12);
}
.about-badge-num {
  font-size: 2rem; font-weight: 800; line-height: 1;
  display: block; margin-bottom: 2px;
}
.about-badge-txt { font-size: .72rem; opacity: .68; text-transform: uppercase; letter-spacing: .08em; }

.about-text-side {}
.about-text-side .eyebrow { margin-bottom: var(--s3); }
.about-text-side .section-title { margin-bottom: var(--s4); }
.about-features { list-style: none; margin: var(--s6) 0; }
.about-features li {
  display: flex; align-items: flex-start; gap: var(--s3);
  padding: var(--s2) 0;
  font-size: .9375rem; color: var(--gray-700);
}
.about-features li::before {
  content: '✓'; color: var(--tan); font-weight: 800;
  flex-shrink: 0; margin-top: 2px; font-size: .875rem;
}
.about-ctas { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s6); }

/* ============================================================
   SERVICES — 4 portrait gradient cards
   ============================================================ */
.services-section {
  background: var(--gray-50);
  padding: var(--s16) 0;
}
.services-header { text-align: center; margin-bottom: var(--s10); }
.services-header .section-sub { max-width: 520px; margin: var(--s3) auto 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6);
}

.service-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }

/* Background layer — scales on hover */
.service-card-bg {
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }

/* Individual card bg colors */
.sc-faq      .service-card-bg { background: linear-gradient(160deg, var(--blue-darker) 0%, #0059A0 100%); }
.sc-pay      .service-card-bg { background: linear-gradient(160deg, var(--tan-dark) 0%, #C4974E 100%); }
.sc-customer .service-card-bg { background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%); }
.sc-maps     .service-card-bg { background: linear-gradient(160deg, #002845 0%, var(--blue-darker) 100%); }

/* Dark gradient overlay so text is readable */
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.05) 55%, transparent 100%);
  z-index: 1;
}

/* Decorative large icon in top-right */
.service-card-icon {
  position: absolute; top: var(--s6); right: var(--s6); z-index: 2;
  opacity: .18; color: var(--white);
  transition: opacity var(--t-slow);
}
.service-card:hover .service-card-icon { opacity: .28; }

/* Content at bottom */
.service-card-body {
  position: relative; z-index: 2;
  padding: var(--s6);
}
.service-card-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  background: rgba(255,255,255,.18); color: var(--white);
  padding: 3px 10px; border-radius: 30px; margin-bottom: var(--s3);
}
.service-card-title {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: var(--s2);
}
.service-card-desc {
  font-size: .875rem; color: rgba(255,255,255,.72);
  line-height: 1.55; margin-bottom: var(--s4);
}
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 700; color: rgba(255,255,255,.88);
  transition: gap var(--t), color var(--t);
}
.service-card:hover .service-card-arrow { gap: 12px; color: var(--white); }

/* ============================================================
   OFFICE HOURS — Dark blue statement section
   ============================================================ */
.hours-statement {
  background: var(--blue-darker);
  padding: var(--s12) 0;
  position: relative; overflow: hidden;
}
/* Subtle radial glow */
.hours-statement::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%,
    rgba(0,103,163,.3) 0%, transparent 70%);
  pointer-events: none;
}
.hours-statement-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 900px; margin: 0 auto;
}
.hours-statement .eyebrow { color: var(--tan-mid); margin-bottom: var(--s4); }
.hs-grid {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap; margin: var(--s6) 0;
}
.hs-block {
  padding: var(--s4) var(--s8);
  text-align: center;
}
.hs-block + .hs-block { border-left: 1px solid rgba(255,255,255,.14); }
.hs-days { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase;
           letter-spacing: .08em; color: rgba(255,255,255,.45); margin-bottom: var(--s2); }
.hs-time { display: block; font-size: clamp(1.1rem, 2vw, 1.5rem);
           font-weight: 300; color: var(--white); letter-spacing: -.01em; }
.hs-time strong { font-weight: 700; }
.hs-note { font-size: .875rem; color: rgba(255,255,255,.35); margin-bottom: var(--s8); }

/* ============================================================
   JOBS + CALENDAR — 2-col on white
   ============================================================ */
.content-section { background: var(--white); padding: var(--s16) 0; }
.content-grid    { display: grid; grid-template-columns: 2fr 3fr; gap: var(--s12); }

/* Panel heading */
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s3);
  padding-bottom: var(--s4); margin-bottom: var(--s6);
  border-bottom: 2px solid var(--gray-100);
}
.panel-head-left { display: flex; align-items: center; gap: var(--s3); }
.panel-icon {
  width: 40px; height: 40px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pi-tan  { background: var(--tan-bg);   color: var(--tan); }
.pi-blue { background: var(--blue-light); color: var(--blue); }
.panel-title { font-size: 1rem; font-weight: 700; color: var(--blue-darker); }

/* Job list */
.job-list { display: flex; flex-direction: column; }
.job-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--s3); padding: var(--s4) 0;
  border-bottom: 1px solid var(--gray-100);
}
.job-item:last-child { border-bottom: none; }
.job-title { font-weight: 700; color: var(--blue-darker); margin-bottom: 2px; }
.job-dept  { font-size: .875rem; color: var(--gray-500); }
.job-badge {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--tan-dark); border: 1px solid var(--tan-mid); border-radius: 30px;
  padding: 3px 10px; white-space: nowrap; flex-shrink: 0;
}
.job-note { font-size: .8125rem; color: var(--gray-400); font-style: italic; margin-top: var(--s4); }

/* Calendar */
.cal-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.cal-header {
  background: var(--blue-darker); color: var(--white);
  padding: var(--s4) var(--s6);
  display: flex; align-items: center; justify-content: space-between;
}
.cal-month-label { font-size: .9375rem; font-weight: 700; }
.cal-nav-btn {
  background: rgba(255,255,255,.12); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; transition: background var(--t);
}
.cal-nav-btn:hover { background: rgba(255,255,255,.28); }
#calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day-label {
  text-align: center; font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--gray-500); padding: var(--s2) var(--s1);
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.cal-cell {
  position: relative; min-height: 48px; padding: var(--s2);
  border-right: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell.is-today  { background: var(--blue-light); }
.cal-cell.has-event { cursor: pointer; }
.cal-num { font-size: .8rem; font-weight: 600; color: var(--gray-700); line-height: 1; margin-bottom: 2px; }
.today-num {
  background: var(--blue-darker); color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cal-dot {
  display: block; font-size: .56rem; font-weight: 700;
  padding: 1px 4px; border-radius: 2px; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cal-dot.board     { background: var(--blue-darker); color: var(--white); }
.cal-dot.committee { background: var(--tan);          color: var(--white); }
.cal-tooltip {
  display: none; position: absolute; z-index: 200;
  bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  background: var(--gray-900); color: var(--white);
  font-size: .78rem; padding: var(--s2) var(--s3); border-radius: var(--r);
  white-space: nowrap; box-shadow: var(--sh-lg); pointer-events: none; min-width: 210px;
}
.cal-cell:hover .cal-tooltip,
.cal-cell:focus .cal-tooltip { display: block; }
.cal-legend {
  display: flex; gap: var(--s6); padding: var(--s3) var(--s6);
  background: var(--gray-50); border-top: 1px solid var(--gray-200); flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: var(--s1); font-size: .8rem; color: var(--gray-700); }
.legend-dot  { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.legend-dot.board     { background: var(--blue-darker); }
.legend-dot.committee { background: var(--tan); }
.cal-note {
  font-size: .75rem; color: var(--gray-400); font-style: italic;
  padding: var(--s2) var(--s6); border-top: 1px solid var(--gray-100);
}

/* ============================================================
   CTA BAND — Photo bg with blue overlay, big statement
   ============================================================ */
.cta-band {
  background:
    linear-gradient(rgba(0,40,72,.84), rgba(0,40,72,.84)),
    url('https://images.unsplash.com/photo-1672520170006-f55641a25d2c?auto=format&fit=crop&w=1800&q=80') center 60% / cover no-repeat;
  padding: var(--s16) 0;
  text-align: center;
}
.cta-band .eyebrow { color: var(--tan-mid); }
.cta-band-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; color: var(--white); letter-spacing: -.025em;
  line-height: 1.15; margin: var(--s4) 0 var(--s4);
}
.cta-band-sub { font-size: 1.0625rem; color: rgba(255,255,255,.60); max-width: 520px; margin: 0 auto var(--s8); }
.cta-band-actions { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }
.video-cta-band {
  background:
    linear-gradient(rgba(0,28,56,.80), rgba(0,28,56,.80)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1800&q=80') center 50% / cover no-repeat;
  padding: var(--s16) 0;
  text-align: center;
}
.video-cta-band .eyebrow { color: var(--tan-mid); }
.video-cta-band .cta-band-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; color: var(--white); letter-spacing: -.025em; line-height: 1.15; margin: var(--s4) 0 var(--s4); }
.video-cta-band .cta-band-sub { font-size: 1.0625rem; color: rgba(255,255,255,.60); max-width: 520px; margin: 0 auto var(--s8); }
.video-cta-band .cta-band-actions { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SITES OF INTEREST
   ============================================================ */
.sites-section {
  background: var(--tan-bg);
  padding: var(--s8) 0;
  border-top: 1px solid var(--tan-mid);
}
.sites-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s6); margin-bottom: var(--s4);
}
.sites-heading { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--blue-darker); margin-bottom: var(--s2); letter-spacing: -.025em; line-height: 1.15; }
.sites-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-top: var(--s4); }
.sites-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.sites-cta { margin-top: var(--s6); }
.site-pill {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: .65rem 1.4rem;
  background: var(--white); border: 1px solid var(--tan-mid);
  border-radius: 30px; text-decoration: none;
  font-size: .875rem; font-weight: 600; color: var(--blue-darker);
  box-shadow: var(--sh-sm);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.site-pill:hover {
  background: var(--blue-darker); color: var(--white);
  border-color: var(--blue-darker); transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.site-pill svg { opacity: .5; transition: opacity var(--t); flex-shrink: 0; }
.site-pill:hover svg { opacity: .85; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,.65);
  padding: var(--s12) 0 var(--s6);
}
.footer-grid {
  display: grid; gap: var(--s8); margin-bottom: var(--s8);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-org-name {
  font-size: 1.0625rem; font-weight: 700; color: var(--white);
  line-height: 1.3; margin-bottom: var(--s4);
}
.footer-contact { list-style: none; }
.footer-contact li { font-size: .875rem; line-height: 1.9; }
.footer-hours-gap { margin-top: var(--s4); }
.footer-contact a { color: var(--tan-mid); text-decoration: none; transition: color var(--t); }
.footer-contact a:hover { color: var(--white); }
.footer-col-head {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.28); margin-bottom: var(--s3);
}
.footer-nav { list-style: none; }
.footer-nav a {
  color: rgba(255,255,255,.58); text-decoration: none;
  font-size: .875rem; line-height: 2;
  transition: color var(--t), padding-left var(--t);
}
.footer-nav a:hover { color: var(--white); padding-left: 6px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s4);
  border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--s4);
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-fb {
  display: flex; align-items: center; gap: var(--s2);
  color: rgba(255,255,255,.38); font-size: .8125rem;
  text-decoration: none; transition: color var(--t);
}
.footer-fb:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 959px) {
  .features-bar-row { grid-template-columns: 1fr; }
  .fb-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .fb-item:last-child { border-bottom: none; }
  .about-cols { grid-template-columns: 1fr; gap: var(--s8); }
  .about-photo-frame { padding: 0 var(--s6) var(--s6) 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card  { height: 320px; }
  .content-grid  { grid-template-columns: 1fr; gap: var(--s8); }
  .hs-grid { flex-direction: column; gap: 0; }
  .hs-block + .hs-block { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .util-logins { display: none; }
}
@media (max-width: 599px) {
  .hero { padding: 100px 0 40px; }
  .hero-content { margin-left: var(--s6); }
  .hero-ctas { flex-direction: column; }
  .features-bar { margin-top: -28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { height: 320px; }
  .sites-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .about-badge { display: none; }
}

/* ============================================================
   INNER PAGES — shared components
   ============================================================ */

/* Page banner (replaces hero on inner pages) */
.page-banner {
  background: var(--blue-darker);
  padding: calc(72px + var(--s12)) 0 var(--s10);
}
.page-banner-eyebrow {
  display: block; font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--tan);
  margin-bottom: var(--s3);
}
.page-banner-title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.15;
  margin: 0;
}

/* Inner content wrapper */
.inner-content { padding: var(--s12) 0 var(--s16); }
.inner-narrow   { max-width: 760px; margin: 0 auto; }

/* Lead paragraph */
.inner-lead {
  font-size: 1.125rem; color: var(--gray-600);
  line-height: 1.75; margin-bottom: var(--s8);
}

/* Section divider within inner page */
.inner-section { margin-top: var(--s12); padding-top: var(--s10); border-top: 1px solid var(--gray-100); }
.inner-section:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.inner-h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--blue-darker);
  letter-spacing: -.02em; line-height: 1.2;
  margin-bottom: var(--s4);
}
.inner-prose p + p { margin-top: var(--s4); }
.inner-prose p { color: var(--gray-700); line-height: 1.75; }

.inner-list { padding-left: var(--s8); margin-top: var(--s4); }
.inner-list li { color: var(--gray-700); line-height: 1.9; }

.inner-note { font-size: .8125rem; color: var(--gray-400); margin-top: var(--s4); font-style: italic; }

/* Placeholder notice banner */
.placeholder-notice {
  background: var(--tan-bg); border: 1px solid var(--tan-mid);
  border-radius: var(--r); padding: var(--s4) var(--s6);
  margin-bottom: var(--s8); font-size: .9375rem; color: var(--gray-700);
}

/* Data table */
.table-wrap { overflow-x: auto; margin-top: var(--s4); }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: .9375rem;
}
.data-table th {
  background: var(--blue-darker); color: var(--white);
  font-weight: 700; text-align: left;
  padding: .75rem var(--s4); font-size: .875rem;
}
.data-table td { padding: .75rem var(--s4); border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-50); }
.table-placeholder { text-align: center; color: var(--gray-400); font-style: italic; padding: var(--s8); }

/* Document download item */
.doc-list { margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s3); }
.doc-item {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s4) var(--s6); border: 1px solid var(--gray-200);
  border-radius: var(--r); text-decoration: none;
  background: var(--white); transition: border-color var(--t), box-shadow var(--t);
}
.doc-item:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.doc-icon { color: var(--blue); flex-shrink: 0; }
.doc-text { flex: 1; }
.doc-name { display: block; font-weight: 600; color: var(--gray-800); font-size: .9375rem; }
.doc-meta { display: block; font-size: .8125rem; color: var(--gray-400); margin-top: 2px; }
.doc-dl { color: var(--blue); font-weight: 700; font-size: 1.1rem; }
.doc-list-inline { list-style: none; margin-top: var(--s3); }
.doc-link-inline { color: var(--blue); font-size: .9375rem; line-height: 2; }

/* Accordion */
.accordion { margin-top: var(--s4); border: 1px solid var(--gray-200); border-radius: var(--r-lg); overflow: hidden; }
.accordion-item + .accordion-item { border-top: 1px solid var(--gray-200); }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); padding: var(--s6);
  background: var(--white); border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--gray-800);
  text-align: left; transition: background var(--t);
}
.accordion-btn:hover { background: var(--gray-50); }
.accordion-btn[aria-expanded="true"] { background: var(--blue-light); color: var(--blue-darker); }
.accordion-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  position: relative;
}
.accordion-icon::before,
.accordion-icon::after {
  content: ''; position: absolute; background: currentColor;
  border-radius: 2px; transition: transform var(--t), opacity var(--t);
}
.accordion-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-icon::after  { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-btn[aria-expanded="true"] .accordion-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.accordion-panel { padding: 0 var(--s6) var(--s6); background: var(--white); }
.accordion-panel p { color: var(--gray-700); line-height: 1.75; }

/* Contact block */
.contact-block {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: var(--s6) var(--s8); margin-top: var(--s4);
}
.contact-block-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--s6); }
.contact-block-label { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--tan); margin-bottom: var(--s2); }
.contact-block-val   { display: block; font-size: .9375rem; color: var(--gray-700); line-height: 1.6; }
.contact-block-link  { color: var(--blue); text-decoration: none; font-weight: 600; }
.contact-block-link:hover { color: var(--blue-dark); }

/* Contact Us page detail rows */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}
.contact-details { margin-top: var(--s6); display: flex; flex-direction: column; gap: var(--s8); }
.contact-form { margin-top: var(--s6); }
.contact-form-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.form-required-note { font-size: .8125rem; color: var(--gray-400); margin-bottom: var(--s4); }
.form-required-note span { color: var(--tan); }
.contact-detail-row { display: flex; gap: var(--s6); align-items: flex-start; }
.contact-detail-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-detail-label { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--tan); margin-bottom: var(--s2); }
.contact-detail-val  { display: block; color: var(--gray-700); line-height: 1.65; }
.contact-detail-link { color: var(--blue); text-decoration: none; font-weight: 700; font-size: 1.125rem; }
.contact-detail-link:hover { color: var(--blue-dark); }
.contact-map-link { display: inline-block; margin-top: var(--s2); font-size: .875rem; font-weight: 600; color: var(--tan); text-decoration: none; }
.contact-map-link:hover { color: var(--tan-dark); }

/* Customers landing card grid */
.customer-card-grid {
  display: grid; gap: var(--s6);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: var(--s8);
}
.cust-card {
  display: flex; flex-direction: column;
  padding: var(--s8); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); text-decoration: none;
  background: var(--white); transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.cust-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); transform: translateY(-3px); }
.cust-card-icon { color: var(--blue); margin-bottom: var(--s4); }
.cust-card-title { font-size: 1.125rem; font-weight: 700; color: var(--blue-darker); margin-bottom: var(--s3); }
.cust-card-desc  { font-size: .9375rem; color: var(--gray-500); line-height: 1.65; flex: 1; margin-bottom: var(--s4); }
.cust-card-arrow { font-size: .875rem; font-weight: 700; color: var(--tan); }

/* Staff grid */
.staff-grid { display: grid; gap: var(--s8); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: var(--s8); }
.staff-card { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: var(--s8); text-align: center; }
.staff-photo-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 0 auto var(--s4); }
.staff-name  { font-size: 1.0625rem; font-weight: 700; color: var(--blue-darker); margin-bottom: var(--s2); }
.staff-title { font-size: .875rem; font-weight: 600; color: var(--tan); margin-bottom: var(--s3); }
.staff-bio   { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* WTP info grid */
.wtp-info-grid { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-bottom: var(--s8); }
.wtp-info-card { background: var(--blue-darker); border-radius: var(--r-lg); padding: var(--s6); }
.wtp-info-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--tan); margin-bottom: var(--s3); }
.wtp-info-val   { color: rgba(255,255,255,.85); font-size: .9375rem; line-height: 1.65; }

/* Map embed */
.map-embed-wrap {
  margin-top: var(--s4); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--gray-200);
}
.map-embed-wrap iframe { display: block; }
.map-note { font-size: .8125rem; color: var(--gray-400); margin-top: var(--s3); }

/* About sub-links */
.about-sub-links { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.sub-link-card {
  display: flex; flex-direction: column; gap: var(--s2);
  padding: var(--s6); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); text-decoration: none;
  background: var(--white); transition: border-color var(--t), box-shadow var(--t);
}
.sub-link-card:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.sub-link-card strong { color: var(--blue-darker); font-size: 1rem; }
.sub-link-card span  { font-size: .875rem; color: var(--gray-500); line-height: 1.55; }
.sub-link-arrow { color: var(--tan); font-weight: 700; font-size: .875rem; }

/* Member / helpful link lists */
.member-list { list-style: none; margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s3); }
.member-list a { color: var(--blue); font-weight: 600; text-decoration: none; }
.member-list a:hover { color: var(--blue-dark); }

.link-group { margin-top: var(--s8); }
.link-group-head { font-size: .875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: var(--s4); }
.helpful-links-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.helpful-links-list a { color: var(--blue); font-weight: 600; text-decoration: none; font-size: .9375rem; }
.helpful-links-list a:hover { color: var(--blue-dark); }

/* Meeting minutes lists */
.minutes-year-list { list-style: none; margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s3); }
.minutes-year-list a { color: var(--blue); font-size: 1rem; font-weight: 600; text-decoration: none; }
.minutes-year-list a:hover { color: var(--blue-dark); }
.minutes-list { list-style: none; margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s3); }
.minutes-link { display: flex; align-items: center; gap: var(--s3); color: var(--blue); text-decoration: none; font-size: .9375rem; padding: var(--s3) var(--s4); border: 1px solid var(--gray-200); border-radius: var(--r); transition: border-color var(--t), background var(--t); }
.minutes-link:hover { border-color: var(--blue); background: var(--blue-light); }
.minutes-badge { font-size: .75rem; font-weight: 700; background: var(--blue-darker); color: var(--white); padding: 2px var(--s2); border-radius: 3px; margin-left: auto; }
.placeholder-item .minutes-link { opacity: .55; }

/* Projects */
.project-list { margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s6); }
.project-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: var(--s6) var(--s8); }
.project-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s3); }
.project-title { font-size: 1.0625rem; font-weight: 700; color: var(--blue-darker); }
.project-badge { font-size: .75rem; font-weight: 700; padding: 4px var(--s3); border-radius: var(--r); white-space: nowrap; }
.status-planning { background: var(--tan-bg); color: var(--tan-dark); }
.status-active   { background: var(--blue-light); color: var(--blue-darker); }
.status-complete { background: #D4EDDA; color: #155724; }
.project-desc { color: var(--gray-600); font-size: .9375rem; line-height: 1.65; }
.placeholder-card { opacity: .6; }

/* News & Events */
.news-list { display: flex; flex-direction: column; gap: var(--s6); margin-top: var(--s4); }
.news-item { border: 1px solid var(--gray-200); border-radius: var(--r-lg); padding: var(--s6) var(--s8); }
.news-meta { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s3); }
.news-date { font-size: .8125rem; color: var(--gray-400); }
.news-tag  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--blue-light); color: var(--blue-darker); padding: 2px var(--s2); border-radius: var(--r); }
.news-title { font-size: 1.0625rem; font-weight: 700; color: var(--blue-darker); margin-bottom: var(--s2); }
.news-desc  { font-size: .9375rem; color: var(--gray-600); line-height: 1.65; }

/* Login form */
.login-wrap { display: grid; gap: var(--s8); grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
@media (min-width: 700px) { .login-wrap { grid-template-columns: 3fr 2fr; max-width: none; } }
.login-form-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-xl); padding: var(--s10); }
.login-notice { font-size: .9rem; color: var(--gray-600); margin-bottom: var(--s6); padding: var(--s4); background: var(--blue-light); border-radius: var(--r); border-left: 3px solid var(--blue); }
.form-group { margin-bottom: var(--s6); }
.form-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-700); margin-bottom: var(--s2); }
.form-input { width: 100%; padding: .6875rem var(--s4); border: 1px solid var(--gray-200); border-radius: var(--r); font-size: 1rem; color: var(--gray-800); background: var(--white); transition: border-color var(--t), box-shadow var(--t); }
.form-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,103,163,.15); }
.form-check-row { display: flex; align-items: center; gap: var(--s3); }
.form-check { width: 16px; height: 16px; accent-color: var(--blue); }
.form-check-label { font-size: .875rem; color: var(--gray-600); }
.form-submit { width: 100%; justify-content: center; margin-top: var(--s4); }
.form-forgot { display: block; text-align: center; margin-top: var(--s4); font-size: .875rem; color: var(--gray-400); text-decoration: none; }
.form-forgot:hover { color: var(--blue); }
.login-sidebar { padding: var(--s6) 0; }
.login-sidebar-head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-400); margin-bottom: var(--s4); }

/* Coming soon */
.coming-soon-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--r-xl); padding: var(--s12) var(--s10); text-align: center; margin-bottom: var(--s10); }
.coming-soon-icon { color: var(--blue); margin-bottom: var(--s6); }
.coming-soon-title { font-size: 1.5rem; font-weight: 800; color: var(--blue-darker); margin-bottom: var(--s4); letter-spacing: -.02em; }
.coming-soon-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }

/* Empty state (job openings) */
.empty-state { text-align: center; padding: var(--s16) 0; }
.empty-state-icon { color: var(--gray-200); margin-bottom: var(--s6); }
.empty-state-title { font-size: 1.5rem; font-weight: 800; color: var(--blue-darker); margin-bottom: var(--s4); }
.empty-state-desc  { font-size: 1rem; color: var(--gray-500); line-height: 1.7; max-width: 420px; margin: 0 auto var(--s8); }

/* btn small variant */
.btn-sm { padding: .5rem 1.125rem; font-size: .875rem; }

/* Board table */
.board-table td:first-child { font-weight: 600; color: var(--gray-800); }

/* Breadcrumb */
.breadcrumb { margin-bottom: var(--s4); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); font-size: .8125rem; color: rgba(255,255,255,.55); }
.breadcrumb a  { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current="page"] { color: rgba(255,255,255,.4); }

/* Video cards */
.video-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s6);
  margin-top: var(--s6);
}
.video-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid var(--gray-200);
  transition: box-shadow .2s, transform .2s;
}
.video-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.14); transform: translateY(-2px); }
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--gray-800);
  overflow: hidden;
}
.video-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-card-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.video-card:hover .video-card-play { background: rgba(0,0,0,.5); }
.video-card-play svg { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.video-card-label {
  padding: var(--s4) var(--s4);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--gray-800);
  line-height: 1.3;
}
.video-card-label small {
  display: block;
  font-weight: 400;
  font-size: .8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Single featured video */
.video-featured-wrap {
  margin-top: var(--s6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--gray-900);
}
.video-featured-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Inner page responsive */
@media (max-width: 767px) {
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-form-name-row { grid-template-columns: 1fr; }
}
@media (max-width: 599px) {
  .page-banner { padding: calc(72px + var(--s8)) 0 var(--s8); }
  .contact-block-row { grid-template-columns: 1fr; }
  .customer-card-grid { grid-template-columns: 1fr; }
  .wtp-info-grid { grid-template-columns: 1fr; }
  .about-sub-links { grid-template-columns: 1fr; }
  .login-form-box { padding: var(--s8) var(--s6); }
  .login-wrap { grid-template-columns: 1fr; }
  .video-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 399px) {
  .video-card-grid { grid-template-columns: 1fr; }
}
