/* ============================================================
   MCL Arizona — Department of Arizona
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=Share+Tech+Mono&display=swap');

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  --black:     #0D0B0E;
  --red:       #C41E2A;
  --red-dk:    #8B1520;
  --yellow:    #F5C800;
  --yellow-lt: #FFE040;
  --blue:      #1A2B8C;
  --blue-dk:   #101B5C;
  --blue-md:   #2238AA;
  --brass:     #C9A84C;
  --brass-lt:  #E2C878;
  --brass-dk:  #8A6A20;
  --offwhite:  #F5F4F0;
  --white:     #FFFFFF;
  --charcoal:  #1A1820;
  --silver:    #B0B3C8;
  --text:      #1C1C2E;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Crimson Text', Georgia, serif;
  --font-mono: 'Share Tech Mono', 'Courier New', monospace;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
html { overflow-x: hidden; }

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

/* ── ALERT BAR ────────────────────────────────────────────── */
.alert-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  padding: 7px 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--brass);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem 2rem;
}
.alert-bar .alert-item { display: flex; align-items: center; gap: .4rem; white-space: nowrap; }
.alert-bar .alert-label { color: var(--yellow); font-weight: bold; }

/* ── HEADER ───────────────────────────────────────────────── */
header {
  background: var(--black);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 3px solid var(--brass);
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 2rem; gap: 1rem;
}
.logo-block {
  display: flex; align-items: center;
  gap: 1rem; padding: .6rem 0;
  text-decoration: none; flex-shrink: 0;
}
.logo-seal {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px solid var(--brass);
  object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201,168,76,.4);
}
.logo-text .org {
  font-family: var(--font-head); font-weight: 700;
  font-size: .95rem; color: var(--brass);
  letter-spacing: .06em; text-transform: uppercase; display: block;
}
.logo-text .dept {
  font-family: var(--font-head); font-weight: 400;
  font-size: .72rem; color: var(--yellow);
  letter-spacing: .14em; text-transform: uppercase; display: block;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav { display: flex; align-items: center; }
nav > a {
  font-family: var(--font-head); font-weight: 500;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none;
  padding: 1.8rem .9rem; display: block;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
nav > a:hover, nav > a.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
  background: rgba(255,255,255,.04);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropbtn {
  font-family: var(--font-head); font-weight: 500;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 1.8rem .9rem;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
.nav-dropbtn svg { width: 10px; height: 10px; transition: transform .2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropbtn {
  color: var(--brass); border-bottom-color: var(--brass);
  background: rgba(255,255,255,.04);
}
.nav-dropdown:hover .nav-dropbtn svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--black);
  border: 1px solid rgba(201,168,76,.25);
  border-top: 2px solid var(--brass);
  min-width: 280px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.division-block { border-bottom: 1px solid rgba(255,255,255,.06); }
.division-block:last-of-type { border-bottom: none; }
.division-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1.1rem .5rem;
  cursor: pointer; transition: background .2s; user-select: none;
}
.division-hdr:hover { background: rgba(201,168,76,.06); }
.division-hdr-label {
  font-family: var(--font-head); font-weight: 700;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brass); display: flex; align-items: center; gap: .5rem;
}
.division-hdr-label::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brass); flex-shrink: 0;
}
.division-toggle { font-size: .65rem; color: var(--silver); transition: transform .25s; }
.division-open .division-toggle { transform: rotate(180deg); }
.division-links { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.division-open .division-links { max-height: 400px; }
.division-links a {
  display: block; padding: .45rem 1.1rem .45rem 2rem;
  font-family: var(--font-head); font-size: .77rem;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: color .15s, background .15s, border-left-color .15s;
  border-left: 2px solid transparent;
}
.division-links a:hover {
  color: var(--yellow); background: rgba(245,200,0,.05);
  border-left-color: var(--yellow);
}
.dropdown-view-all {
  display: block; padding: .7rem 1.1rem;
  font-family: var(--font-mono); font-size: .67rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brass); text-decoration: none; text-align: center;
  border-top: 1px solid rgba(201,168,76,.2);
  background: rgba(201,168,76,.04);
  transition: background .2s, color .2s;
}
.dropdown-view-all:hover { background: rgba(201,168,76,.12); color: var(--yellow); }

.nav-join {
  font-family: var(--font-head); font-weight: 600;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--red); color: #fff;
  border-radius: 3px; padding: .55rem 1.2rem;
  margin-left: .6rem; text-decoration: none;
  transition: background .2s, color .2s; white-space: nowrap;
  border-bottom: none !important; align-self: center;
}
.nav-join:hover { background: var(--brass); color: var(--black); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--black);
  min-height: 580px; display: flex; align-items: center; overflow: hidden;
}
.hero-rays { position: absolute; inset: 0; overflow: hidden; opacity: .22; pointer-events: none; }
.hero-rays svg { width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(13,11,14,.95) 0%, rgba(13,11,14,.75) 50%, rgba(13,11,14,.1) 100%);
}
.hero-watermark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  background-image: url('../images/seal.png');
  background-size: cover; background-position: center;
  opacity: .38; filter: none; pointer-events: none;
  box-shadow: 0 0 80px rgba(201,168,76,.18);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 5rem 2rem;
  display: flex; justify-content: flex-start;
}
.hero-text { max-width: 640px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em;
  color: var(--brass-lt); text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before { content: ""; display: block; width: 30px; height: 2px; background: var(--brass); }
.hero h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem,5vw,4.2rem); color: #fff;
  line-height: 1.05; text-transform: uppercase; letter-spacing: .03em; margin-bottom: .3rem;
}
.hero h1 em { color: var(--yellow); font-style: normal; display: block; }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.72);
  margin: 1.2rem 0 2rem; line-height: 1.65; max-width: 520px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  font-family: var(--font-head); font-weight: 600;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 3px;
  text-decoration: none; transition: all .2s;
  display: inline-block; cursor: pointer; border: 2px solid transparent;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dk); border-color: var(--red-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,42,.45); }
.btn-brass { background: transparent; color: var(--brass); border-color: var(--brass); }
.btn-brass:hover { background: var(--brass); color: var(--black); }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); font-weight: 700; }
.btn-yellow:hover { background: var(--yellow-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,0,.4); }
.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-w:hover { border-color: var(--brass); color: var(--brass); }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dk); transform: translateY(-2px); }

/* ── RAY STRIPE ───────────────────────────────────────────── */
.ray-stripe { height: 12px; display: flex; }
.ray-r { background: var(--red); flex: 1; }
.ray-y { background: var(--yellow); flex: 1; }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee-bar {
  background: var(--blue); padding: .65rem 0; overflow: hidden;
  white-space: nowrap; border-bottom: 1px solid rgba(201,168,76,.25);
}
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 36s linear infinite; }
.marquee-item {
  font-family: var(--font-head); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .8rem;
}
.marquee-item::before { content: "★"; color: var(--brass); font-size: .6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--black); padding: 4rem 2rem;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero-rays { position: absolute; inset: 0; opacity: .15; pointer-events: none; }
.page-hero-rays svg { width: 100%; height: 100%; }
.page-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: rgba(13,11,14,.65);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero-eyebrow {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em;
  color: var(--brass); text-transform: uppercase; margin-bottom: .8rem;
}
.page-hero h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2rem,4vw,3.2rem); color: #fff;
  text-transform: uppercase; letter-spacing: .04em; line-height: 1.1;
}
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero p { color: rgba(255,255,255,.65); margin-top: .8rem; font-size: 1.05rem; }

/* ── SECTIONS ─────────────────────────────────────────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em;
  color: var(--brass); text-transform: uppercase; margin-bottom: .6rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::after { content: ""; height: 1px; background: var(--brass); opacity: .4; width: 60px; }
.section-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.8rem,3vw,2.6rem); text-transform: uppercase;
  letter-spacing: .04em; line-height: 1.1; margin-bottom: .8rem;
}
.section-subtitle { font-size: 1.1rem; color: #666; line-height: 1.6; max-width: 560px; margin-bottom: 3rem; }

/* ── NEWS ─────────────────────────────────────────────────── */
.news-section { background: var(--offwhite); }
.news-section .section-title { color: var(--red); }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.news-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  border: 1px solid #dde0ea;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none; color: inherit; display: block;
}
.news-card:hover { box-shadow: 0 8px 32px rgba(26,43,140,.15); transform: translateY(-3px); }
.news-card-img {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.nc1 .news-card-img { height: 260px; background: linear-gradient(135deg, var(--blue-dk), var(--blue)); }
.nc2 .news-card-img { background: linear-gradient(135deg, var(--red-dk), #3a0810); }
.nc3 .news-card-img { background: linear-gradient(135deg, #3a2800, var(--brass-dk)); }
.news-img-icon { font-size: 3.5rem; opacity: .5; position: relative; z-index: 1; }
.news-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--font-head); font-size: .65rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 2px; color: #fff;
}
.tag-red   { background: var(--red); }
.tag-brass { background: var(--brass); color: var(--black); }
.tag-blue  { background: var(--blue); }
.news-body { padding: 1.4rem 1.5rem 1.8rem; }
.news-date { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; color: var(--silver); text-transform: uppercase; margin-bottom: .5rem; }
.news-title { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; line-height: 1.3; color: var(--blue); margin-bottom: .7rem; }
.nc1 .news-title { font-size: 1.5rem; }
.news-excerpt { font-size: .95rem; color: #556; line-height: 1.6; }
.news-more { font-family: var(--font-head); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }

/* ── EVENTS ───────────────────────────────────────────────── */
.events-section { background: var(--black); }
.events-section .section-title { color: var(--yellow); }
.events-section .section-subtitle { color: rgba(255,255,255,.5); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.event-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,168,76,.15);
  border-left: 3px solid var(--brass); border-radius: 6px; padding: 1.8rem;
  display: flex; gap: 1.4rem; align-items: flex-start;
  transition: border-color .2s, background .2s; text-decoration: none; color: inherit;
}
.event-card:hover { border-color: rgba(201,168,76,.6); background: rgba(201,168,76,.06); }
.event-date-box { border-radius: 4px; padding: .6rem .8rem; text-align: center; min-width: 52px; flex-shrink: 0; color: #fff; }
.edb-red   { background: var(--red); }
.edb-brass { background: var(--brass); color: var(--black) !important; }
.event-date-box .month { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; display: block; opacity: .85; }
.event-date-box .day { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; line-height: 1; display: block; }
.event-title { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff; margin-bottom: .4rem; line-height: 1.25; }
.event-meta { font-family: var(--font-mono); font-size: .67rem; letter-spacing: .08em; color: var(--silver); text-transform: uppercase; line-height: 1.7; }
.event-meta span { color: var(--yellow); }

/* ── PROGRAMS ─────────────────────────────────────────────── */
.programs-section { background: var(--white); }
.programs-section .section-title { color: var(--red); }
.programs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.program-card {
  background: var(--offwhite); border-radius: 6px;
  padding: 2rem 1.6rem; text-align: center;
  border: 1px solid #dde0ea; border-top: 4px solid var(--blue);
  transition: transform .2s, box-shadow .2s, border-top-color .2s;
  text-decoration: none; color: inherit; display: block;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,43,140,.12); border-top-color: var(--brass); }
.program-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.program-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--red); margin-bottom: .6rem; }
.program-desc { font-size: .9rem; color: #556; line-height: 1.6; }

/* ── DETACHMENTS ──────────────────────────────────────────── */
.det-section { background: var(--charcoal); }
.det-section .section-title { color: var(--white); }
.det-section .section-subtitle { color: rgba(255,255,255,.5); }
.det-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.az-map-wrap { text-align: center; }
.map-link {
  display: block; position: relative; border-radius: 8px;
  overflow: visible; cursor: pointer;
  transition: transform .25s, filter .25s; text-decoration: none;
}
.map-link:hover { transform: scale(1.02); }
.map-link:hover .map-overlay-label { opacity: 1; }
.az-map-img {
  width: 100%; height: auto; display: block; margin: 0 auto;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.55));
  max-width: 420px;
}
.map-overlay-label {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  background: rgba(13,11,14,.88); border: 1px solid rgba(201,168,76,.5);
  border-radius: 4px; padding: .5rem 1.2rem;
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brass);
  display: flex; align-items: center; gap: .5rem;
  opacity: 0; transition: opacity .25s; white-space: nowrap;
}
.map-division-legend { display: flex; gap: 1.2rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.legend-item { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: .4rem; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.legend-d3 .legend-dot { background: #C9A0C8; }
.legend-d1 .legend-dot { background: #C8C49A; }
.legend-d2 .legend-dot { background: #9AB4C8; }
.det-list { display: flex; flex-direction: column; gap: .8rem; }
.det-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid var(--brass); border-radius: 5px;
  padding: .9rem 1.2rem; transition: border-color .2s, background .2s;
  text-decoration: none; color: inherit;
}
.det-item:hover { border-color: rgba(201,168,76,.6); background: rgba(201,168,76,.05); }
.det-num { font-family: var(--font-head); font-weight: 700; font-size: .8rem; color: var(--brass); min-width: 48px; }
.det-name { font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: #fff; flex: 1; }
.det-city { font-family: var(--font-mono); font-size: .65rem; color: var(--silver); letter-spacing: .08em; text-transform: uppercase; }

/* ── CTA ──────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; padding: 0; }
.cta-inner { background: var(--blue-dk); padding: 5rem 2rem; position: relative; overflow: hidden; text-align: center; }
.cta-rays { position: absolute; top: 0; left: 0; right: 0; height: 55%; overflow: hidden; }
.cta-rays svg { width: 100%; height: 100%; }
.cta-blue-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--blue-dk) 40%, transparent 100%); }
.cta-content { position: relative; z-index: 2; }
.cta-seal {
  width: 120px; height: 120px; border-radius: 50%;
  background-image: url('../images/seal.png');
  background-size: cover; background-position: center;
  margin: 0 auto 1.5rem; border: 3px solid var(--brass);
  box-shadow: 0 0 30px rgba(201,168,76,.5);
}
.cta-eyebrow { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; color: rgba(255,255,255,.65); text-transform: uppercase; margin-bottom: 1rem; }
.cta-section h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,4vw,3.5rem); color: #fff; text-transform: uppercase; letter-spacing: .04em; line-height: 1.1; margin-bottom: 1rem; }
.cta-section h2 em { color: var(--yellow); font-style: normal; }
.cta-section p { font-size: 1.15rem; color: rgba(255,255,255,.82); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--black); border-top: 3px solid var(--brass); }
.footer-main {
  padding: 4rem 2rem 3rem; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.footer-seal-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-seal {
  width: 64px; height: 64px; border-radius: 50%;
  background-image: url('../images/seal.png');
  background-size: cover; background-position: center;
  border: 2px solid var(--brass); flex-shrink: 0;
}
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--brass); text-transform: uppercase; letter-spacing: .05em; }
.footer-tagline { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; color: var(--yellow); text-transform: uppercase; }
.footer-desc { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin: .8rem 0 1rem; }
.footer-motto { font-size: 1rem; font-style: italic; color: var(--brass); padding: .7rem 1rem; border-left: 3px solid var(--red); }
.footer-col h4 { font-family: var(--font-head); font-size: .8rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(201,168,76,.25); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--brass); }
.footer-div-label { color: var(--brass) !important; font-size: .75rem !important; letter-spacing: .08em; margin-top: .5rem; display: block; }

/* Trademark Disclaimer */
.footer-disclaimer {
  background: rgba(0,0,0,.4); border-top: 1px solid rgba(201,168,76,.12);
  padding: 1.2rem 2rem;
}
.footer-disclaimer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; gap: 1rem; }
.disclaimer-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; opacity: .7; color: rgba(255,255,255,.5); }
.footer-disclaimer p { font-family: var(--font-mono); font-size: .63rem; line-height: 1.7; color: rgba(255,255,255,.58); letter-spacing: .03em; }
.footer-disclaimer p em { font-style: normal; color: rgba(255,255,255,.55); }

.footer-bottom { padding: 1rem 2rem; background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-family: var(--font-mono); font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.50); text-decoration: none; }
.footer-bottom a:hover { color: var(--brass); }
.footer-bottom-links { display: flex; gap: 1.2rem; }

/* ── PAGE CONTENT SECTIONS ────────────────────────────────── */
.content-section { background: var(--white); }
.content-section.alt { background: var(--offwhite); }
.content-section.dark { background: var(--charcoal); color: #fff; }

.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--blue); margin-bottom: .8rem; margin-top: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; margin-top: 1.5rem; letter-spacing: .04em; }
.prose p { margin-bottom: 1.2rem; line-height: 1.75; font-size: 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.5rem; }
.prose li { margin-bottom: .4rem; line-height: 1.7; font-size: 1.05rem; }
.prose blockquote { border-left: 4px solid var(--brass); padding: .8rem 1.2rem; margin: 1.5rem 0; background: rgba(201,168,76,.05); font-style: italic; color: #444; }

/* Detachments full page */
.division-section { margin-bottom: 3rem; }
.division-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .06em; color: #fff;
  padding: .7rem 1.2rem .7rem 1.4rem; border-left: 5px solid var(--brass);
  background: rgba(255,255,255,.04); border-radius: 4px; margin-bottom: 1rem;
}
.det-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.det-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-top: 3px solid var(--brass); border-radius: 6px; padding: 1.2rem;
  text-decoration: none; color: inherit;
  transition: background .2s, border-top-color .2s, transform .2s;
  display: flex; flex-direction: row; align-items: center; gap: 1rem;
}
.det-card:hover { background: rgba(201,168,76,.06); border-top-color: var(--red); transform: translateY(-2px); }
.det-card-logo { flex-shrink: 0; width: 100px !important; height: 100px !important; object-fit: contain; display: block; }
.det-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: right; }
.det-card-num { font-family: var(--font-mono); font-size: .72rem; color: var(--brass); margin-bottom: .3rem; }
.det-card-name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .04em; line-height: 1.2; margin-bottom: .4rem; }
.det-card-city { font-family: var(--font-mono); font-size: .65rem; color: var(--silver); letter-spacing: .08em; text-transform: uppercase; }
.det-card-members { font-family: var(--font-mono); font-size: .65rem; color: var(--yellow); margin-top: .3rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-family: var(--font-head); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .7rem 1rem;
  border: 2px solid #dde0ea; border-radius: 4px;
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: #fff; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); outline: none; }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-info-text h4 { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: .2rem; }
.contact-info-text p, .contact-info-text a { font-size: .95rem; color: #555; text-decoration: none; }
.contact-info-text a:hover { color: var(--blue); }

/* Join form */
.join-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.join-step { text-align: center; padding: 2rem 1.5rem; background: var(--offwhite); border-radius: 8px; border-top: 4px solid var(--blue); }
.join-step-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--brass); line-height: 1; margin-bottom: .5rem; }
.join-step-title { font-family: var(--font-head); font-weight: 700; font-size: .95rem; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
.join-step-desc { font-size: .9rem; color: #666; line-height: 1.6; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ── MOBILE NAV BASE (always present) ────────────────────── */
.mobile-menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,168,76,.3); border-radius: 4px;
  cursor: pointer; flex-direction: column; gap: 5px;
  transition: background .2s; flex-shrink: 0;
}
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--brass); transition: all .3s; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--black); z-index: 500; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--brass);
  font-size: 1.8rem; cursor: pointer; line-height: 1; z-index: 1;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
}

/* Nav links inside mobile nav */
.mobile-nav a {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.85);
  text-decoration: none; padding: .9rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, background .2s;
  display: block;
}
.mobile-nav a:hover { color: var(--yellow); background: rgba(255,255,255,.04); }
.mobile-nav a:first-of-type { margin-top: 4rem; } /* push below close btn */

/* ── TABLET + MOBILE (max 1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .nc1 { grid-column: span 2; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .det-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .det-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .join-steps { grid-template-columns: repeat(3,1fr); }
  .events-grid { grid-template-columns: repeat(2,1fr); }

  /* Header: hide desktop nav entirely, show hamburger */
  .header-inner { padding: 0 1rem; height: 64px; }
  .header-inner nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .logo-seal { width: 42px; height: 42px; }
  .logo-text .org { font-size: .78rem; }

  /* Hero */
  .hero-content { padding: 2.5rem 1.25rem; }
  .hero h1 { font-size: clamp(1.9rem,8vw,2.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-layout {
    flex-direction: column-reverse !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }
  .hero-eyebrow { justify-content: center; font-size: .63rem; }
  .hero-buttons { justify-content: center !important; flex-wrap: wrap; gap: .65rem; }
  .hero-buttons .btn { font-size: .78rem; padding: .7rem 1.4rem; }
  .hero-seal-img { width: 150px !important; }

  /* Sections */
  section { padding: 3rem 1.25rem; }
  .section-title { font-size: clamp(1.5rem,6vw,2rem); }
  .section-subtitle { font-size: 1rem; margin-bottom: 1.75rem; }

  /* News */
  .mcl-news-grid { grid-template-columns: 1fr !important; }
  .mcl-news-masthead { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .mcl-news-heading { font-size: 1.8rem; }
  .mcl-news-btn { width: 100%; text-align: center; }
  .mcl-news-cta { flex-direction: column; gap: .65rem; padding: 1.25rem; }
  .mcl-news-cta p { font-size: .85rem; text-align: center; }
  .news-grid { grid-template-columns: 1fr; }
  .nc1 { grid-column: span 1; }

  /* Events */
  .events-grid { grid-template-columns: 1fr !important; }
  .event-card { padding: 1.25rem; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr 1fr !important; }
  .program-card { padding: 1.5rem 1rem; }
  .program-icon { font-size: 2rem; }
  .program-title { font-size: .88rem; }
  .program-desc { font-size: .82rem; }

  /* Detachments */
  .det-layout { grid-template-columns: 1fr !important; gap: 2rem; }
  .det-grid { grid-template-columns: 1fr !important; }
  .az-map-img { max-width: 320px; }

  /* CTA */
  .cta-inner { padding: 3rem 1.25rem; }
  .cta-seal { width: 80px; height: 80px; }
  .cta-section h2 { font-size: clamp(1.7rem,7vw,2.5rem); }
  .cta-buttons { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr !important; gap: 1.75rem; padding: 2.5rem 1.25rem 1.5rem; }
  .footer-bottom-inner { flex-direction: column; gap: .4rem; text-align: center; }
  .footer-disclaimer { padding: 1rem 1.25rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Join */
  .join-steps { grid-template-columns: 1fr !important; }

  /* General touch improvements */
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  * { -webkit-tap-highlight-color: rgba(201,168,76,.15); }
  html { -webkit-text-size-adjust: 100%; }
  .marquee-track { will-change: transform; }
}

/* ── SMALL PHONES (max 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .logo-text .dept { display: none; }
  .logo-seal { width: 38px; height: 38px; }
  .hero-seal-img { width: 120px !important; }
  .programs-grid { grid-template-columns: 1fr !important; }
  section { padding: 2.5rem 1rem; }
  .mobile-nav a { font-size: 1.15rem; padding: .8rem 1.5rem; }
}
