/* ============================================================
   Unison Treatment Homes for Youth Inc. – Modern Site CSS
   Design: Bold & Colorful | Responsive | Accessible
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold:       #C9A84C;
  --gold-dark:  #A8853A;
  --gold-light: #F0D98A;
  --navy:       #1B3A6B;
  --navy-dark:  #0F2347;
  --navy-light: #2A5298;
  --orange:     #E85D04;
  --orange-dark:#BF4D03;
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --light-gray: #E9ECEF;
  --mid-gray:   #6C757D;
  --dark-gray:  #343A40;
  --text:       #212529;
  --link:       #1B3A6B;
  --link-hover: #C9A84C;

  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', Arial, sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --shadow:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.15);

  --max-width: 1180px;
  --nav-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--link); text-decoration: none; transition: color .2s; }
a:hover { color: var(--link-hover); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

/* --- Skip Navigation (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--orange);
  color: var(--white);
  padding: .75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: .4rem 0;
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold-light); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  height: 64px;
  width: auto;
  max-width: 260px;
}
.logo-text {
  display: none;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
}
.logo-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}

.nav-list > li { position: relative; }

.nav-list > li > a,
.nav-list > li > button {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem .9rem;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover,
.nav-list > li.active > a,
.nav-list > li.active > button {
  background: rgba(201,168,76,.2);
  color: var(--gold);
}

.nav-list > li > a.active { color: var(--gold); }

/* Dropdown chevron */
.nav-list > li > button::after {
  content: '▾';
  font-size: .7rem;
  opacity: .7;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 999;
  border-top: 3px solid var(--gold);
}
.dropdown.wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dropdown a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  transition: background .15s, color .15s, padding-left .15s;
  border-radius: 0;
}
.dropdown a:hover {
  background: var(--off-white);
  color: var(--gold-dark);
  padding-left: 1.5rem;
}
.dropdown .dropdown-group {
  padding: .4rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.dropdown .dropdown-group:last-child { border-bottom: none; }
.dropdown .dropdown-heading {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--mid-gray);
  padding: .6rem 1.1rem .2rem;
}

/* Show dropdown on hover/focus */
.nav-list > li:hover .dropdown,
.nav-list > li.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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); }

/* ============================================================
   HERO / PAGE HEADER
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Detroit skyline at night – William Duggan on Unsplash (unsplash.com/photos/1SmpGvlKq2U) */
  background: url('https://images.unsplash.com/photo-1568267938179-f50e67de5ffc?fm=jpg&q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  opacity: .25;
}
.hero-inner { position: relative; max-width: var(--max-width); margin: 0 auto; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 680px;
  margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .1s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */
main { flex: 1; }

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

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-heading p { color: var(--mid-gray); max-width: 600px; margin: 0 auto; }
.section-heading .underline {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: .75rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .5rem; }
.card-body p { color: var(--mid-gray); font-size: .9rem; flex: 1; margin-bottom: 1rem; }
.card-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy-dark);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

/* ============================================================
   CONTENT LAYOUT (inner pages)
   ============================================================ */
.content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.content-body h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.1rem; color: var(--navy); margin: 1.2rem 0 .5rem; }
.content-body p { margin-bottom: 1rem; color: var(--text); }
.content-body ul { margin: .75rem 0 1rem 1.25rem; list-style: disc; }
.content-body ul li { margin-bottom: .4rem; }
.content-body a { color: var(--orange); font-weight: 600; }
.content-body a:hover { color: var(--orange-dark); }

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border-top: 4px solid var(--gold);
}
.sidebar-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.sidebar-card p, .sidebar-card address {
  font-size: .9rem;
  color: var(--mid-gray);
  font-style: normal;
  line-height: 1.8;
}
.sidebar-card .phone-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin: .5rem 0;
}

/* ============================================================
   RESOURCE LIST (Resources pages)
   ============================================================ */
.resource-list { display: flex; flex-direction: column; gap: 1.5rem; }
.resource-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  transition: border-color .2s, box-shadow .2s;
}
.resource-item:hover { border-left-color: var(--orange); box-shadow: var(--shadow-lg); }
.resource-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.resource-item .phone {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  display: block;
  margin-bottom: .4rem;
}
.resource-item p {
  font-size: .9rem;
  color: var(--mid-gray);
  margin: 0;
}
.resource-item .address {
  font-size: .85rem;
  color: var(--mid-gray);
  margin-top: .4rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 1.5rem;
}
.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: .85rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-top: .3rem;
}

/* ============================================================
   INFO BANNER
   ============================================================ */
.info-banner {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.info-banner-inner { max-width: var(--max-width); margin: 0 auto; }
.info-banner h2 { color: var(--gold); font-size: 1.5rem; margin-bottom: .75rem; }
.info-banner p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
}
.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .3s, box-shadow .3s;
}
.photo-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: .4rem;
  font-size: .9rem;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   HIGHLIGHT BOXES
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.highlight-box h3 { color: var(--gold); margin-bottom: .75rem; }
.highlight-box p { color: rgba(255,255,255,.85); margin: 0; }

.warning-box {
  background: #FFF3CD;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.warning-box h3 { color: #856404; margin-bottom: .5rem; }
.warning-box p { color: #664D03; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  height: 60px;
  width: auto;
  max-width: 240px;
  margin-bottom: .75rem;
  opacity: .9;
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-brand .tagline {
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: color .2s, padding-left .2s;
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: .4rem; }
.footer-col address {
  font-style: normal;
  font-size: .85rem;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
}
.footer-col address strong { color: var(--gold-light); }
.footer-col .footer-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-top: .3rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============================================================
   STAFF DIRECTORY TABLE
   ============================================================ */
.directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.directory-table th {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.directory-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text);
}
.directory-table tr:last-child td { border-bottom: none; }
.directory-table tr:hover td { background: var(--off-white); }
.directory-table td a { color: var(--orange); font-weight: 600; }

/* ============================================================
   CAS FORMS (Image gallery)
   ============================================================ */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.form-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.form-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.form-card-body {
  padding: 1rem;
}
.form-card-body h3 { font-size: .9rem; color: var(--navy); margin-bottom: .5rem; }
.form-card-body .btn { font-size: .8rem; padding: .5rem 1rem; }

/* ============================================================
   RIGHTS PAGE
   ============================================================ */
.rights-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1rem 0;
}
.rights-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.rights-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .1rem;
}
.responsibilities-list li::before {
  content: '→';
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   UNDER CONSTRUCTION
   ============================================================ */
.under-construction {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--mid-gray);
}
.under-construction .icon { font-size: 4rem; margin-bottom: 1rem; }
.under-construction h2 { color: var(--navy); margin-bottom: .75rem; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 0; top: 0; background: var(--navy-dark); z-index: 2000; flex-direction: column; padding: 5rem 1.5rem 2rem; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-list > li > a,
  .nav-list > li > button {
    width: 100%;
    padding: .9rem 1rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .dropdown {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 0;
    border-top: none;
    min-width: 0;
    display: none;
  }
  .dropdown.wide { grid-template-columns: 1fr; }
  .nav-list > li.open .dropdown { display: block; }
  .dropdown a { color: rgba(255,255,255,.75); padding: .65rem 2rem; font-size: .9rem; }
  .dropdown a:hover { background: rgba(255,255,255,.1); color: var(--gold-light); padding-left: 2.5rem; }
  .dropdown .dropdown-heading { color: rgba(255,255,255,.45); }
  .nav-toggle { display: flex; }
  .hero { padding: 3.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar-inner { justify-content: center; font-size: .75rem; }
  .logo-text { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: .25rem 0; }
  .site-header { padding: .75rem 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .card-grid { grid-template-columns: 1fr; }
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-table { font-size: .78rem; }
  .directory-table th, .directory-table td { padding: .5rem .6rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-head