/* ==========================================================================
   Trilogy EMS — EVOC (evocclass.com) brand stylesheet
   Palette: slate #16232F · green #214F16 · gold #C9971E · white/grey
   Type: Barlow Condensed (headings) · Montserrat (body)
   Shared across all pages. Load with:
   <link rel="stylesheet" href="evoc-brand.css">
   ========================================================================== */

:root{
  --slate:#16232F;
  --slate-2:#0f1a23;
  --green:#214F16;
  --green-dk:#183a10;
  --green-tint:rgba(33,79,22,.08);
  --gold:#C9971E;
  --gold-dk:#a87d16;
  --gold-tint:rgba(201,151,30,.14);
  --ink:#1b2430;
  --muted-d:rgba(255,255,255,.82);
  --muted-d2:rgba(255,255,255,.60);
  --line-d:rgba(255,255,255,.14);
  --soft:#f5f6f3;
  --border:#e3e6df;
  --white:#ffffff;
  --head:"Barlow Condensed","Arial Narrow",Arial,sans-serif;
  --body:"Montserrat",Arial,Helvetica,sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--body); color:var(--ink); background:#fff; line-height:1.55; }
img{ max-width:100%; height:auto; }

h1,h2,h3,h4{ font-family:var(--head); letter-spacing:.5px; line-height:1.08; }
h1{ text-transform:uppercase; }
h2{ margin:0 0 14px; font-size:30px; text-transform:uppercase; color:var(--slate); }
h3{ margin:0 0 8px; font-size:20px; color:var(--slate); }
p{ margin:0 0 14px; }
a{ color:var(--green); }

/* ---------- Utility bar ---------- */
.utility-bar{ background:var(--slate); border-bottom:3px solid var(--gold); }
.utility-inner{
  max-width:1200px; margin:0 auto; padding:8px 16px;
  display:flex; justify-content:space-between; gap:12px; align-items:center;
  color:#fff; font-size:13px;
}
.brand{ font-family:var(--head); font-weight:700; letter-spacing:1px; font-size:16px; text-transform:uppercase; }
.tag{ opacity:.8; }
.divider{ opacity:.4; padding:0 8px; }
.utility-link{ color:#fff; text-decoration:none; font-weight:600; }
.utility-link:hover{ color:var(--gold); }

/* ---------- Nav ---------- */
.nav-wrap{ background:#fff; border-bottom:1px solid #ececec; position:sticky; top:0; z-index:50; }
.nav-inner{
  max-width:1200px; margin:0 auto; padding:12px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.logo{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--slate); }
.logo-mark{
  width:44px; height:44px; display:grid; place-items:center; border-radius:10px;
  background:var(--slate); color:var(--gold); font-family:var(--head); font-weight:700;
  letter-spacing:1px; font-size:18px; border:1px solid var(--gold);
}
.logo-text{ font-family:var(--head); font-weight:700; font-size:22px; text-transform:uppercase; letter-spacing:.5px; }

.menu{ list-style:none; margin:0; padding:0; display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
.menu a{
  text-decoration:none; color:var(--slate); font-family:var(--head); font-weight:600;
  letter-spacing:.6px; text-transform:uppercase; font-size:16px; padding:8px 0; display:block;
  border-bottom:3px solid transparent;
}
.menu a:hover{ color:var(--green); border-bottom-color:var(--gold); }
.menu a.active{ color:var(--green); border-bottom-color:var(--gold); }

.nav-cta{ display:flex; gap:10px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; padding:11px 16px; border-radius:8px; font-family:var(--head);
  font-weight:600; font-size:16px; letter-spacing:.5px; text-transform:uppercase;
  text-decoration:none; border:1px solid transparent; white-space:nowrap; cursor:pointer;
}
.btn-primary{ background:var(--green); color:#fff; border-color:var(--green); }
.btn-primary:hover{ background:var(--green-dk); border-color:var(--green-dk); }
.btn-gold{ background:var(--gold); color:#111; border-color:var(--gold); }
.btn-gold:hover{ background:var(--gold-dk); border-color:var(--gold-dk); color:#fff; }
.btn-ghost{ background:#fff; border-color:#cfd4cc; color:var(--slate); }
.btn-ghost:hover{ border-color:var(--green); color:var(--green); }
.btn-block{ display:block; text-align:center; width:100%; margin-top:8px; }

/* ---------- Hero ---------- */
.hero{ position:relative; min-height:420px; background:var(--slate); color:#fff; overflow:hidden; }
.hero-small{ min-height:260px; }
.hero-media{
  position:absolute; inset:0;
  background:
    radial-gradient(1100px 500px at 85% 15%, rgba(33,79,22,.45), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(201,151,30,.10), transparent 55%),
    linear-gradient(120deg, #16232F 0%, #0f1a23 100%);
}
.hero-inner{
  position:relative; max-width:1200px; margin:0 auto; padding:56px 16px;
  display:grid; grid-template-columns:1.2fr .8fr; gap:26px; align-items:start;
}
.hero-inner-single{ max-width:1000px; grid-template-columns:1fr; }
.hero-badge{
  display:inline-block; font-family:var(--head); font-weight:600; letter-spacing:1.2px;
  text-transform:uppercase; font-size:13px; padding:6px 14px; border:1px solid var(--gold);
  border-radius:999px; color:var(--gold); margin-bottom:14px;
}
.hero h1{ margin:0 0 12px; font-size:46px; color:#fff; }
.hero p{ margin:0 0 18px; color:var(--muted-d); font-size:16.5px; line-height:1.55; max-width:720px; }
.hero-tagline{ font-family:var(--head); text-transform:uppercase; letter-spacing:1px;
  color:var(--gold); font-size:20px; font-weight:600; margin:0 0 16px; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.hero-trust{
  margin:0; padding:0; list-style:none; display:flex; gap:12px; flex-wrap:wrap;
  color:var(--muted-d2); font-weight:600; font-size:13px;
}
.hero-trust li{ padding:8px 12px; border:1px solid var(--line-d); border-radius:8px; background:rgba(255,255,255,.04); }

.hero-card{
  background:rgba(255,255,255,.05); border:1px solid var(--line-d); border-radius:14px;
  padding:18px; box-shadow:0 12px 30px rgba(0,0,0,.35); backdrop-filter:blur(2px);
}
.hero-card-title{ font-family:var(--head); text-transform:uppercase; letter-spacing:.6px;
  font-weight:600; font-size:18px; margin-bottom:12px; color:var(--gold); }
.hero-card-row{ display:flex; justify-content:space-between; gap:12px; padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.10); color:var(--muted-d); font-weight:600; }
.hero-card-row strong{ color:#fff; }
.card-link{ color:var(--gold); text-decoration:none; font-weight:700; }
.card-link:hover{ text-decoration:underline; }

/* ---------- Sections ---------- */
.section{ padding:56px 0; }
.section.alt{ background:var(--soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section.dark{ background:var(--slate); color:#fff; }
.section.dark h2{ color:#fff; }
.section.dark h3{ color:#fff; }
.wrap{ max-width:1000px; margin:0 auto; padding:0 16px; }
.lead{ font-size:16px; margin-top:8px; color:#333; }

/* Accent rule under section headers */
h2 .accent, .h2-accent{ color:var(--gold); }

/* ---------- Cards & grids ---------- */
.feature-grid, .info-grid{ margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.feature, .info-card, .card, .location-card, .schedule-card, .topic-card{
  background:#fff; border:1px solid var(--border); border-radius:12px; padding:16px;
}
.section.dark .card, .section.dark .info-card{ background:rgba(255,255,255,.06); border-color:var(--line-d); color:#fff; }
.big{ font-size:20px; font-weight:700; font-family:var(--head); color:var(--green); margin:6px 0; }
.muted{ color:#555; }

.two-col{ display:grid; grid-template-columns:1.1fr .9fr; gap:14px; margin-top:18px; }

.topic-grid{ margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.topic-card{ font-weight:600; padding:12px 14px; }

.location-grid{ margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }

.steps{ margin-top:18px; display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.step{ background:#fff; border:1px solid var(--border); border-radius:12px; padding:16px; display:flex; gap:12px; align-items:flex-start; }
.step-num{ width:36px; height:36px; border-radius:9px; display:grid; place-items:center;
  background:var(--green-tint); color:var(--green); font-family:var(--head); font-weight:700; font-size:18px; flex:none; }

.cta-row{ margin-top:18px; display:flex; gap:10px; flex-wrap:wrap; }

.text-link{ color:var(--green); font-weight:700; text-decoration:none; }
.text-link:hover{ color:var(--gold-dk); text-decoration:underline; }

/* Callouts */
.notice, .note{
  margin-top:16px; border:1px solid var(--gold); border-left:5px solid var(--gold);
  border-radius:10px; padding:12px 16px; background:var(--gold-tint); font-weight:600;
}
.callout{
  margin-top:16px; border:1px solid var(--green); border-left:5px solid var(--green);
  border-radius:10px; padding:14px 16px; background:var(--green-tint);
}
.callout strong{ color:var(--green); }
.policy{ margin-top:12px; border:1px solid var(--border); border-radius:10px; padding:12px 16px; background:#fff; font-weight:600; }

/* Schedule */
.schedule-grid{ margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.schedule-item{ display:flex; justify-content:space-between; gap:12px; align-items:center; padding:10px 0; border-top:1px solid var(--border); }

/* Bullets */
.bullets{ margin:10px 0 0; padding-left:18px; }
.bullets li{ margin:8px 0; }

/* FAQ */
.faq{ margin-top:18px; }
.faq-item{ background:#fff; border:1px solid var(--border); border-radius:12px; margin:10px 0; overflow:hidden; }
.faq-item summary{ cursor:pointer; padding:14px 16px; font-family:var(--head); font-weight:600; font-size:18px;
  color:var(--slate); list-style:none; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary:hover{ color:var(--green); }
.faq-item[open] summary{ color:var(--green); border-bottom:1px solid var(--border); }
.faq-body{ padding:14px 16px; color:#333; }

/* Top alert banner (home) */
.top-banner{ background:var(--slate); color:#fff; text-align:center; padding:9px 14px;
  font-family:var(--head); font-weight:600; letter-spacing:.5px; font-size:15px; }
.top-banner a{ color:var(--gold); text-decoration:underline; margin-left:10px; }
.top-banner a:hover{ opacity:.85; }

/* Footer */
.footer{ background:var(--slate); color:#fff; border-top:4px solid var(--gold); padding:26px 0; }
.footer-inner{ max-width:1000px; margin:0 auto; padding:0 16px; color:#fff; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer a{ color:var(--gold); text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.footer .muted{ color:rgba(255,255,255,.6); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .nav-inner{ flex-wrap:wrap; justify-content:center; }
  .nav-cta{ width:100%; justify-content:center; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero h1{ font-size:38px; }
  .feature-grid, .info-grid, .topic-grid, .location-grid, .steps, .schedule-grid, .two-col{ grid-template-columns:1fr; }
  .menu{ gap:16px; }
}
@media (max-width: 520px){
  .utility-inner{ font-size:12px; }
  .hero h1{ font-size:32px; }
}
