/* ============================================================
   Twin Bridges Volleyball Club — shared stylesheet
   Brand: navy + silver (from club logo) with storm-gold accent
   ============================================================ */

:root {
  --navy: #1b2653;
  --navy-dark: #121a3d;
  --navy-deep: #0c1229;
  --silver: #a7aebb;
  --silver-light: #d8dce3;
  --gold: #ffc72c;
  --gold-dark: #e0a800;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --text: #232a38;
  --text-muted: #5a6474;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(12, 18, 41, 0.10);
  --shadow-lg: 0 14px 40px rgba(12, 18, 41, 0.18);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--gold);
  color: var(--navy-deep);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
}
.announce a { color: var(--navy-deep); font-weight: 700; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  height: 50px;
  width: auto;
  background: var(--white);
  border-radius: 9px;
  padding: 6px 10px;
}
.brand-text { line-height: 1.1; }
.brand-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  display: block;
}
.brand-text .brand-sub {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: var(--silver);
  text-transform: uppercase;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.main-nav a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-light);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.main-nav a.active { color: var(--gold); }
.main-nav a.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  margin-left: 8px;
}
.main-nav a.nav-cta:hover { background: var(--gold-dark); }

/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: " ▾"; font-size: 0.75em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 50;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown { display: block; }
.dropdown a {
  color: var(--navy) !important;
  background: none !important;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.02rem;
  border-radius: 8px;
}
.dropdown a:hover { background: var(--off-white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--silver);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(255, 199, 44, 0.14), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(167, 174, 187, 0.18), transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 65%, #253470 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -35deg,
    rgba(255, 255, 255, 0.025) 0 2px,
    transparent 2px 90px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 84px 0 92px;
}
.hero-kicker {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }
.hero p.lead {
  font-size: 1.2rem;
  color: var(--silver-light);
  max-width: 34rem;
  margin-bottom: 30px;
}
.hero-logo { justify-self: center; }
.hero-logo img {
  width: min(360px, 80%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
}
.hero-media { justify-self: stretch; width: 100%; }
.video-wrap { position: relative; }
.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 16px;
  background: #000;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  cursor: pointer;
}
.video-toggle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 199, 44, 0.95);
  color: var(--navy-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s, transform 0.15s, background 0.15s;
}
.video-toggle::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent var(--navy-deep);
  margin-left: 6px;
}
.video-toggle:hover { transform: scale(1.06); background: var(--gold); }
.video-wrap.playing .video-toggle { opacity: 0; pointer-events: none; }

/* Google Calendar embed */
.cal-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cal-controls label { margin: 0; }
.cal-controls select { max-width: 420px; width: auto; min-width: 240px; }
.cal-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e6e9ef;
  background: var(--white);
}
.cal-frame iframe { display: block; width: 100%; height: 640px; border: 0; }
@media (max-width: 640px) { .cal-frame iframe { height: 520px; } }
.hero-media-cap {
  margin-top: 12px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-light);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* page hero (subpages) */
.page-hero {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 80%);
  color: var(--white);
  padding: 56px 0 48px;
  border-bottom: 4px solid var(--gold);
}
.page-hero .hero-kicker { margin-bottom: 8px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.page-hero p { color: var(--silver-light); max-width: 46rem; margin-top: 10px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 10px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: 0;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--silver); }
.btn-outline:hover { border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-sm { font-size: 0.95rem; padding: 9px 18px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.tint { background: var(--off-white); }
.section.dark {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
}
.section-head { max-width: 46rem; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.section.dark .kicker { color: var(--gold); }
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.1;
}
.section.dark h2.section-title { color: var(--white); }
.section-head p { margin-top: 14px; color: var(--text-muted); font-size: 1.08rem; }
.section.dark .section-head p { color: var(--silver-light); }

h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 4px solid var(--gold);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.card .card-icon svg { width: 28px; height: 28px; }
.card p { color: var(--text-muted); font-size: 1rem; flex-grow: 1; }
.card .card-link {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--navy);
}
.card .card-link:hover { color: var(--gold-dark); }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat .stat-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silver-light);
  margin-top: 8px;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}
table.data th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.98rem;
  text-align: left;
  padding: 13px 16px;
}
table.data td { padding: 13px 16px; border-bottom: 1px solid #e6e9ef; vertical-align: top; }
table.data tr:last-child td { border-bottom: 0; }
table.data tr:nth-child(even) td { background: #f8fafc; }

/* ---------- Program / info blocks ---------- */
.info-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 26px;
  border-left: 5px solid var(--navy);
}
.info-block h3 { margin-bottom: 10px; }
.info-block ul { margin: 12px 0 0 22px; color: var(--text-muted); }
.info-block li { margin-bottom: 6px; }

/* Warning / notice banner */
.notice-warn {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8e6;
  border: 1.5px solid var(--gold);
  border-left: 5px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 26px;
}
.notice-warn .notice-icon { font-size: 1.5rem; line-height: 1.3; }
.notice-warn .notice-title {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a6a00;
  margin-bottom: 2px;
}
.notice-warn p { color: #5a4a10; margin: 0; }

/* Instagram post embeds */
.ig-embeds {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}
.ig-embeds .instagram-media {
  flex: 0 1 400px;
  margin: 0 !important;
  min-width: 300px;
}

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  vertical-align: middle;
}
.badge-closed { background: #fdecec; color: #b3261e; }
.badge-open { background: #e7f6ec; color: #1e7d3e; }
.badge-gold { background: rgba(255, 199, 44, 0.2); color: #8a6a00; }

/* meta rows (dates / times / places) */
.meta-list { list-style: none; margin-top: 12px !important; margin-left: 0 !important; }
.meta-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--text);
}
.meta-list .meta-label {
  flex: 0 0 96px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--navy);
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 24px 24px 84px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
}
.step h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step p { color: var(--text-muted); }

/* ---------- Quote / mission ---------- */
.quote-band {
  text-align: center;
  padding: 64px 0;
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(255, 199, 44, 0.12), transparent 70%),
    var(--navy-deep);
  color: var(--white);
}
.quote-band blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  max-width: 46rem;
  margin: 0 auto 12px;
  line-height: 1.35;
}
.quote-band cite {
  font-style: normal;
  font-family: var(--font-head);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Contact cards ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  border-top: 4px solid var(--navy);
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.contact-card .role { color: var(--gold-dark); font-weight: 700; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; }
.contact-card p { margin-top: 10px; color: var(--text-muted); }
.contact-card a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-card a:hover { color: var(--gold-dark); }

/* Icon + label social links */
.social-inline { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.social-inline a { display: inline-flex; align-items: center; gap: 12px; }
.social-inline .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: background 0.15s, color 0.15s;
}
.social-inline a:hover .ico { background: var(--gold); color: var(--navy-deep); }
.social-inline .ico svg { width: 20px; height: 20px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.88rem;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--silver-light);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}
input:focus, textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* ---------- Founders / people list ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.pill-list li {
  background: var(--white);
  border: 1.5px solid var(--silver-light);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--silver-light);
  border-radius: 2px;
}
.timeline li { position: relative; margin-bottom: 26px; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
}
.timeline .tl-year {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  display: block;
}
.timeline p { color: var(--text-muted); }

/* Award of Distinction criteria + winners */
.criteria-list { margin: 12px 0 0 20px; color: var(--silver-light); }
.criteria-list li { margin-bottom: 8px; }
.winner-list { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.winner-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.winner-list .wl-year {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  min-width: 74px;
  letter-spacing: 0.03em;
}
.winner-list .wl-name { color: var(--white); font-weight: 600; }

/* ---------- Award cards ---------- */
.award-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.award {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.award .award-icon { font-size: 2rem; margin-bottom: 8px; }
.award h3 { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.1em; }
.award .award-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--gold), #ffd95e);
  padding: 56px 0;
}
.cta-band .cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--navy-deep);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.cta-band p { color: #4a3b00; font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--silver);
  padding: 60px 0 0;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}
.site-footer h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--silver); text-decoration: none; transition: color 0.15s; }
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 74px; margin-bottom: 14px; background: var(--white); border-radius: 12px; padding: 8px; }
.footer-brand p { font-size: 0.98rem; max-width: 22rem; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--silver-light);
}
.social-links a:hover { background: var(--gold); color: var(--navy-deep); }
.social-links svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.mb-2 { margin-bottom: 20px; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 3px solid var(--gold);
    padding: 10px 4vw 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a.nav-cta { margin-left: 0; text-align: center; }
  .dropdown { position: static; display: block; box-shadow: none; background: rgba(255,255,255,0.05); margin: 4px 0 8px 14px; }
  .dropdown a { color: var(--silver-light) !important; }
  .dropdown a:hover { background: rgba(255,255,255,0.08) !important; }
  .has-drop > a::after { content: ""; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { width: min(260px, 70%); }
  .hero-media { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text .brand-name { font-size: 1.05rem; }
  .brand img { height: 46px; }
}
