:root {
  --maroon: #70242C;
  --maroon-dark: #4F1820;
  --navy: #1A2841;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8f6f3;
  --gold: #b8923f;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; margin: 0; color: var(--navy); }
a { color: var(--maroon); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top utility bar */
.topbar { background: var(--navy); color: #fff; font-size: 13px; padding: 8px 0; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; opacity: .85; }
.topbar .badges span { margin-left: 16px; opacity: .9; }

/* Header */
header.site { background: #fff; border-bottom: 1px solid var(--line); padding: 18px 0; position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow); }
header.site .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand img { height: 64px; width: auto; display: block; }
nav.primary { display: flex; gap: 28px; align-items: center; }
nav.primary a { color: var(--ink); font-weight: 500; font-size: 14px; letter-spacing: .3px; }
nav.primary a.active, nav.primary a:hover { color: var(--maroon); }
.login-cta { background: var(--maroon); color: #fff !important; padding: 10px 20px; border-radius: 4px; font-weight: 600; font-size: 14px; }
.login-cta:hover { opacity: .9; background: var(--maroon-dark); }
.nav-dd { position: relative; }
.nav-dd > a { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dd > a::after { content: "▾"; font-size: 10px; opacity: .6; }
.nav-dd .menu {
  position: absolute; top: 100%; right: 0; margin-top: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12); padding: 8px 0; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all .18s;
  z-index: 100;
}
.nav-dd:hover .menu, .nav-dd:focus-within .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd .menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--ink); }
.nav-dd .menu a:hover { background: var(--bg-soft); color: var(--maroon); }

/* Page hero (smaller than home hero) */
.page-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 50%, var(--navy) 100%);
  color: #fff; padding: 60px 24px 50px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; }
.page-hero .crumbs { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .85; margin-bottom: 16px; }
.page-hero .lead { font-size: 17px; opacity: .92; max-width: 720px; margin: 0 auto; }

/* Sections */
.section { padding: 60px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--maroon); font-weight: 700; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); color: var(--ink); margin-bottom: 16px; }
.section-head p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 17px; }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { color: var(--maroon); margin-bottom: 18px; font-size: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field label { display: block; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
.form-field label .req { color: var(--maroon); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 4px; font-size: 15px;
  background: #fff; font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--maroon); outline-offset: -1px; border-color: var(--maroon); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field .help { font-size: 12px; color: var(--muted); margin-top: 4px; }
.radio-group, .checkbox-group { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 4px; }
.radio-group label, .checkbox-group label {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: none; letter-spacing: 0; font-size: 14px; font-weight: 400; color: var(--ink); margin: 0;
}
.btn-primary {
  background: var(--maroon); color: #fff; border: 0; padding: 14px 32px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; cursor: pointer;
}
.btn-primary:hover { background: var(--maroon-dark); }
.agreement-text { background: var(--bg-soft); padding: 24px; border-left: 3px solid var(--maroon); border-radius: 4px; font-size: 14px; line-height: 1.65; color: var(--ink); margin: 18px 0; }
.agreement-text h4 { color: var(--maroon); font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin: 16px 0 8px; }
.agreement-text p { margin: 0 0 12px; }
.recaptcha-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; }

/* Network grid */
.tier-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px; margin-bottom: 14px; }
.tier-card.premium { border-left: 4px solid var(--gold); }
.tier-card.advantage { border-left: 4px solid var(--maroon); }
.tier-card h4 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tier-card .meta { font-size: 13px; color: var(--muted); margin-top: 8px; }
.tier-card .meta strong { color: var(--ink); }
.tier-card .service { font-size: 14px; color: var(--maroon); font-style: italic; margin-top: 4px; }

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.about-grid .img-wrap {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--navy) 100%);
  border-radius: 8px; padding: 36px; color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.about-grid .quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; line-height: 1.5; }
.about-grid .signoff { margin-top: 18px; font-size: 14px; opacity: .9; }
.about-grid h2 { font-size: 32px; margin-bottom: 18px; color: var(--ink); }
.about-grid p { color: var(--ink); font-size: 16px; margin: 0 0 14px; }
.creds { display: flex; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.creds .cred { padding: 14px 18px; background: var(--bg-soft); border-left: 3px solid var(--maroon); border-radius: 2px; }
.creds .cred .num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--maroon); }
.creds .cred .lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

/* Footer */
footer.site { background: #14181f; color: #c5c9d3; padding: 56px 0 22px; font-size: 14px; margin-top: 60px; }
footer.site .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
footer.site h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 14px; font-weight: 700; }
footer.site a { color: #c5c9d3; }
footer.site a:hover { color: #fff; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site ul li { margin-bottom: 6px; }
footer.site .brand-block .logo-text { color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
footer.site .brand-block p { line-height: 1.7; color: #9aa1ad; max-width: 320px; }
footer.site .legal { border-top: 1px solid #2a2f3a; padding-top: 20px; font-size: 12px; color: #6b7280; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
footer.site .legal .powered a { color: #b8923f; }
footer.site .social { display: flex; gap: 10px; margin-top: 14px; }
footer.site .social a { width: 34px; height: 34px; border: 1px solid #2a2f3a; border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
footer.site .social a:hover { background: var(--maroon); border-color: var(--maroon); }
footer.site .social svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  footer.site .grid { grid-template-columns: 1fr 1fr; }
}


/* Mobile nav (added 2026-05-11 — iPhone walk found nav hidden with no replacement) */
.nav-toggle {
  display: none;
  background: transparent; border: none; padding: 8px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { display: block; width: 28px; height: 28px; }
.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 98;
}
.nav-backdrop.open { display: block; }
@media (max-width: 900px) {
  header.site .wrap { gap: 12px; }
  .brand img { height: 44px !important; }
  nav.primary {
    display: none !important;
    position: fixed; top: 0; right: 0;
    width: min(320px, 85vw); height: 100vh;
    background: #fff; flex-direction: column;
    gap: 0; padding: 80px 24px 32px;
    box-shadow: -8px 0 30px rgba(0,0,0,.15);
    z-index: 99; overflow-y: auto;
  }
  nav.primary.open { display: flex !important; }
  nav.primary a {
    display: block; width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav-dd { width: 100%; }
  .nav-dd > a::after { content: ""; }
  .nav-dd .menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    margin: 0 0 0 16px; padding: 0; min-width: 0;
  }
  .nav-dd .menu a { padding: 10px 4px; font-size: 14px; border-bottom: 1px solid var(--bg-soft); }
  .login-cta { display: none; }
  nav.primary .login-cta-mobile {
    display: block !important; margin-top: 24px;
    background: var(--maroon); color: #fff !important;
    padding: 14px 20px; border-radius: 4px;
    text-align: center; font-weight: 600;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}
