/* Sagebrush Empire Pop Warner — v4 */
:root {
  --navy: #0F1E5C; --navy-dark: #08123B; --navy-deep: #050C2A;
  --red: #D92F1F; --red-dark: #A11F12;
  --gold: #E8C672; --gold-dim: #B89B5C;
  --cream: #FFF8EE; --bone: #F4ECD8;
  --charcoal: #1A1A1A; --gray: #4B5563; --gray-mid: #6B7280; --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --font-display: 'Anton', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
  --radius: 14px; --radius-sm: 8px;
  --shadow-sm: 0 2px 4px rgba(15,30,92,.08);
  --shadow: 0 8px 24px rgba(15,30,92,.12);
  --shadow-lg: 0 24px 48px rgba(15,30,92,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--charcoal); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Icons */
.icon { width: 1em; height: 1em; vertical-align: -.125em; flex-shrink: 0; }
.icon-sm { width: .85em; height: .85em; }
.icon-lg { width: 1.6em; height: 1.6em; }
.icon-xl { width: 2.4em; height: 2.4em; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: .02em; line-height: 1.05; margin: 0 0 .5em; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--red); display: block; }
p { margin: 0 0 1em; }
.lede { font-size: 1.12rem; color: var(--gray); max-width: 720px; margin: 8px auto 0; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-size: .76rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; padding: 6px 14px; background: rgba(15,30,92,.08); border-radius: 999px; }
.eyebrow-red { color: var(--red); background: rgba(217,47,31,.1); }
.eyebrow-light { color: var(--gold); background: rgba(232,198,114,.18); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-weight: 700; font-size: .96rem; letter-spacing: .04em; text-transform: uppercase; border-radius: var(--radius-sm); transition: transform .15s, box-shadow .15s; text-decoration: none; cursor: pointer; border: none; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 4px 0 var(--red-dark); }
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 0 var(--red-dark); }
.btn-secondary { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }

/* Header / mega-nav */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 3px solid var(--navy); box-shadow: var(--shadow-sm); }
.header-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.brand-logo { flex-shrink: 0; }
.brand-logo-img { height: 60px; width: auto; max-width: none; flex-shrink: 0; object-fit: contain; display: block; }
.header-row { gap: 16px; }
.site-nav { flex-wrap: wrap; justify-content: flex-end; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); letter-spacing: .03em; }
.brand-tag { font-size: .72rem; font-weight: 700; color: var(--red); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 12px 12px; font-weight: 600; font-size: .85rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: .04em; border-radius: var(--radius-sm); background: none; border: none; cursor: pointer; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 4px; }
.nav-link:hover { background: var(--cream); color: var(--navy); }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 12px 20px; margin-left: 8px; }
.nav-cta:hover { background: var(--red-dark); }

.nav-item { position: relative; }
.nav-drop { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white); border: 1px solid var(--gray-light); border-top: 3px solid var(--red); border-radius: 0 0 var(--radius-sm) var(--radius-sm); padding: 8px 0; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s; z-index: 100; }
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 10px 18px; font-size: .88rem; font-weight: 500; color: var(--charcoal); border-radius: 0; text-transform: none; letter-spacing: 0; }
.nav-drop a:hover { background: var(--cream); color: var(--red); padding-left: 24px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); border-radius: 2px; }

/* Hero (homepage) */
.hero { position: relative; padding: 130px 0 110px; color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,18,59,.78) 0%, rgba(8,18,59,.70) 45%, rgba(5,12,42,.90) 100%),
    url('/img/hero-field.jpg') center 30% / cover no-repeat;
  background-color: #0A1438;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(217,47,31,.28), transparent 55%); }
@supports (background-image: url('/img/hero-field.webp')) {
  .hero-bg { background: linear-gradient(180deg, rgba(8,18,59,.78) 0%, rgba(8,18,59,.70) 45%, rgba(5,12,42,.90) 100%), url('/img/hero-field.webp') center 30% / cover no-repeat; background-color: #0A1438; }
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero .eyebrow { color: var(--gold); background: rgba(232,198,114,.16); }
.hero h1 { color: var(--white); }
.hero h1 em { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 780px; margin: 16px auto 32px; }
.hero-sub strong { color: var(--gold); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 60px; margin-top: 60px; flex-wrap: wrap; }
.hero-stats > div { text-align: center; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.hero-stats span { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* Page banner */
.page-banner { position: relative; padding: 72px 0 54px; color: var(--white); overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,18,59,.88) 0%, rgba(8,18,59,.84) 100%),
    url('/img/banner-field.webp') center 35% / cover no-repeat;
  background-color: #0A1438;
}
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,42,.55), transparent 40%); pointer-events: none; }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); }
.page-eyebrow { display: inline-block; font-size: .76rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding: 6px 14px; background: rgba(232,198,114,.18); border-radius: 999px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.85); }

/* Page content */
.page-body { padding: 60px 0 80px; background: var(--cream); }
.page-content { background: var(--white); border-radius: var(--radius); padding: 50px 60px; box-shadow: var(--shadow); font-size: 1rem; line-height: 1.75; color: var(--charcoal); }
.page-content h2 { font-size: 1.8rem; margin-top: 1.6em; margin-bottom: .5em; color: var(--navy); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.35rem; margin-top: 1.4em; margin-bottom: .5em; color: var(--navy); }
.page-content h4 { font-size: 1.05rem; margin-top: 1.2em; margin-bottom: .5em; color: var(--red); }
.page-content a { color: var(--red); font-weight: 600; border-bottom: 1px solid transparent; }
.page-content a:hover { color: var(--navy); border-bottom-color: var(--navy); }
.page-content ul, .page-content ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.page-content li { margin-bottom: .4em; }
.page-content blockquote { border-left: 4px solid var(--red); padding: 8px 24px; margin: 1.5em 0; background: var(--cream); font-style: italic; color: var(--gray); }
.page-content img { border-radius: var(--radius-sm); margin: 1em 0; max-width: 100%; }
.page-content img[alt="Picture"], .page-content img:not([src]), .page-content img[src=""] { display: none; }
.page-content table { border-collapse: collapse; width: 100%; margin: 1.2em 0; font-size: .94rem; }
.page-content table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 700; }
.page-content table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-light); }
.page-content table tr:nth-child(even) td { background: var(--cream); }
.page-content hr { border: 0; border-top: 1px solid var(--gray-light); margin: 2em 0; }
.page-content strong { color: var(--navy); }

/* Sections */
.section { padding: 80px 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--navy-dark); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-dark h2 em { color: var(--gold); }
.section-dark .lede { color: rgba(255,255,255,.78); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }

/* Mission cards */
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.mission-card { background: var(--white); border: 1px solid var(--gray-light); border-top: 5px solid var(--red); border-radius: var(--radius); padding: 40px 30px 32px; text-align: center; transition: transform .25s, box-shadow .25s, border-top-color .25s; display: flex; flex-direction: column; }
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--navy); }
.mission-icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: rgba(217,47,31,.1); color: var(--red); margin: 0 auto 22px; transition: background .25s, color .25s; }
.mission-card:hover .mission-icon { background: var(--navy); color: var(--gold); }
.mission-card h3 { color: var(--navy); margin-bottom: 12px; }
.mission-card p { color: var(--gray); font-size: .96rem; margin: 0 0 22px; flex-grow: 1; }
.mission-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--red); align-self: center; }
.mission-link:hover { color: var(--navy); }
.mission-link .icon { transition: transform .2s; }
.mission-link:hover .icon { transform: translateX(4px); }

/* Associations */
.assoc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.assoc-card { display: flex; flex-direction: column; align-items: center; padding: 28px 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); text-decoration: none; color: var(--white); text-align: center; transition: all .25s; }
.assoc-card .icon { color: var(--gold); margin-bottom: 10px; }
.assoc-card:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); color: var(--white); box-shadow: 0 12px 32px rgba(217,47,31,.4); }
.assoc-card:hover .icon { color: var(--white); }
.assoc-card strong { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; margin-bottom: 2px; }
.assoc-card em { font-style: normal; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.assoc-card:hover em { color: var(--white); }

/* 3-up info cards */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.info-card { display: block; background: var(--white); border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--navy); text-decoration: none; color: var(--charcoal); transition: all .25s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--red); color: var(--charcoal); }
.info-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--cream); color: var(--navy); margin-bottom: 18px; }
.info-card:hover .info-card-icon { background: var(--red); color: var(--white); }
.info-card h3 { color: var(--navy); }
.info-card p { color: var(--gray); margin-bottom: 20px; font-size: .96rem; }
.info-card-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.archive-strip { margin-top: 40px; padding: 20px 28px; background: var(--white); border-radius: var(--radius-sm); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; box-shadow: var(--shadow-sm); }
.archive-strip > span { font-weight: 800; color: var(--navy); text-transform: uppercase; font-size: .82rem; letter-spacing: .1em; }
.archive-strip a { display: inline-block; padding: 6px 14px; background: var(--cream); border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.archive-strip a:hover { background: var(--navy); color: var(--white); }

/* Video section */
.video-section { background: var(--bone); }
.video-frame { position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--navy); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Why section */
.why-section { background: var(--bone); padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.why-list { list-style: none; padding: 0; margin: 28px 0; }
.why-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(15,30,92,.1); }
.why-check { flex-shrink: 0; width: 28px; height: 28px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-check .icon { width: 14px; height: 14px; }
.why-list strong { color: var(--navy); }
.why-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; min-height: 380px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); display: flex; align-items: center; justify-content: center; }
.why-photo-graphic { color: rgba(232,198,114,.35); width: 70%; max-width: 280px; }
.why-photo-graphic .icon { width: 100%; height: auto; }

/* Resources */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.resource-card { display: block; padding: 30px 26px; background: var(--white); border: 2px solid transparent; border-radius: var(--radius); text-decoration: none; transition: all .2s; }
.resource-icon { color: var(--red); margin-bottom: 14px; display: block; }
.resource-card strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.resource-card span { color: var(--gray); font-size: .92rem; }
.resource-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow); }

/* Contact */
.contact-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 16px; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); color: var(--white); text-decoration: none; transition: all .25s; }
.contact-card:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); color: var(--white); }
.contact-icon { color: var(--gold); margin-bottom: 16px; }
.contact-card:hover .contact-icon { color: var(--white); }
.contact-card strong { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; letter-spacing: .04em; }
.contact-card em { font-style: normal; font-size: .92rem; color: var(--gold); }
.contact-card:hover em { color: var(--white); }

/* ============================================================
   DOCUMENT DOWNLOAD CARDS (for schedule/standings/forms pages)
   ============================================================ */
.docs-heading { font-size: 1.5rem; margin: 1.8em 0 .8em; color: var(--navy); }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin: 0 0 8px; }
.doc-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--cream); border: 1px solid var(--gray-light); border-left: 4px solid var(--red); border-radius: var(--radius-sm); text-decoration: none; transition: all .2s; }
.doc-card:hover { background: var(--white); border-left-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--charcoal); }
.doc-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.doc-icon .icon { width: 22px; height: 22px; }
.doc-card:hover .doc-icon { background: var(--red); color: var(--white); }
.doc-meta { display: flex; flex-direction: column; line-height: 1.3; flex-grow: 1; }
.doc-meta strong { color: var(--navy); font-size: 1rem; font-weight: 700; }
.doc-meta em { font-style: normal; font-size: .8rem; color: var(--gray-mid); margin-top: 2px; }
.doc-arrow { flex-shrink: 0; color: var(--red); }
.doc-arrow .icon { width: 20px; height: 20px; }

/* Contact page tiles */
.lead-text { font-size: 1.1rem; color: var(--charcoal); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 28px 0; }
.contact-tile { display: flex; flex-direction: column; padding: 26px 24px; background: var(--cream); border: 1px solid var(--gray-light); border-top: 4px solid var(--red); border-radius: var(--radius); text-decoration: none; transition: all .2s; }
.contact-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--navy); color: var(--charcoal); }
.contact-tile-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.contact-tile-icon .icon { width: 22px; height: 22px; }
.contact-tile strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); letter-spacing: .02em; }
.contact-tile em { font-style: normal; font-size: .95rem; color: var(--red); font-weight: 600; margin: 4px 0; }
.contact-tile-note { font-size: .85rem; color: var(--gray-mid); }

/* PDF fallback callout */
.pdf-callout { display: flex; gap: 22px; align-items: flex-start; padding: 30px; background: var(--cream); border-left: 5px solid var(--red); border-radius: var(--radius-sm); }
.pdf-callout-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.pdf-callout-icon .icon { width: 26px; height: 26px; }
.pdf-callout h3 { color: var(--navy); margin: 0 0 10px; font-size: 1.4rem; }
.pdf-callout p { margin: 0; color: var(--charcoal); }

/* ============================================================
   FOOTER — NV Leak Detection style (multi-column, monospace built-by)
   ============================================================ */
.site-footer { background: #060B16; color: rgba(255,255,255,.7); padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 56px; }
.foot-logo-row { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.foot-logo-img { height: 86px; width: auto; display: block; }
.foot-logo-row .b-text { display: flex; flex-direction: column; line-height: 1.2; }
.foot-logo-row .b-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); letter-spacing: .03em; }
.foot-logo-row .b-est { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.foot-brand p { font-size: .92rem; line-height: 1.65; color: rgba(255,255,255,.72); margin: 0 0 4px; }
.foot-tagline { color: var(--gold); font-family: var(--font-display); font-weight: 400; font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; margin: 22px 0 16px; }
.foot-featured { display: inline-block; color: rgba(255,255,255,.9); font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; margin-bottom: 24px; transition: color .2s; }
.foot-featured:hover { color: var(--gold); }
.foot-social { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.85); transition: all .2s; }
.foot-social a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-quicklinks-label { display: block; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px; }
.foot-quicklinks { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-quicklinks a { padding: 6px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .82rem; color: rgba(255,255,255,.85); transition: all .2s; }
.foot-quicklinks a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a { color: rgba(255,255,255,.82); font-size: .92rem; transition: color .2s; }
.site-footer ul a:hover { color: var(--gold); }
.site-footer ul a.see-all { color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.foot-contact .loc-block { margin-bottom: 16px; }
.foot-contact .loc-block strong { color: var(--white); display: block; margin-bottom: 6px; font-size: .95rem; }
.foot-contact .loc-block p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.5; margin: 0; }
.foot-phone { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .02em; margin-bottom: 10px; }
.foot-email { display: block; color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 12px; word-break: break-word; }
.foot-email:hover { color: var(--gold); }
.foot-hours { color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.6; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .82rem; color: rgba(255,255,255,.45); align-items: center; }
.foot-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom-links a { color: rgba(255,255,255,.6); }
.foot-bottom-links a:hover { color: var(--gold); }
.foot-built { text-align: center; padding-top: 22px; font-family: 'Courier New', monospace; font-size: .74rem; color: rgba(255,255,255,.3); letter-spacing: .04em; }
.foot-built a { color: var(--gold); }
.foot-built a:hover { color: var(--white); }

/* Mobile */
@media (max-width: 1100px) {
  .nav-link { padding: 10px 8px; font-size: .8rem; }
  .brand-logo-img { height: 48px; }
}
@media (max-width: 960px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--white); border-top: 1px solid var(--gray-light); padding: 14px 24px 24px; box-shadow: var(--shadow); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: all .25s; gap: 4px; max-height: 80vh; overflow-y: auto; }
  body.nav-open .site-nav { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { width: 100%; text-align: left; }
  .nav-cta { text-align: center; margin: 8px 0 0; }
  .nav-item { width: 100%; }
  .nav-drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 3px solid var(--red); border-radius: 0; padding: 4px 0 4px 12px; margin: 0 0 8px; background: transparent; }
  .nav-drop a { padding: 6px 12px; }
  .brand-logo-img { height: 46px; }
  .foot-logo-img { height: 70px; }
  .site-nav { flex-wrap: nowrap; }
  .hero { padding: 70px 0 60px; }
  .hero-stats { gap: 30px; margin-top: 40px; }
  .hero-stats strong { font-size: 2rem; }
  .section { padding: 60px 0; }
  .page-content { padding: 32px 24px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .archive-strip { flex-direction: column; align-items: flex-start; }
}
