/* VAOne Agency — branding.vaoneagency.com — Brand CSS */
/* File: /public_html/branding/assets/css/branding.css */

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

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1C2E42;
  --navy-light: #243547;
  --gold:       #C9A84C;
  --gold-lt:    #E8C97A;
  --gold-pale:  rgba(201,168,76,0.10);
  --steel:      #8A9BB0;
  --cream:      #F8F4EC;
  --cream-dark: #EDE8DD;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text2:      #4A4A4A;
  --text3:      #7A7A7A;
  --border:     rgba(0,0,0,0.09);
  --border-gold:rgba(201,168,76,0.28);
  --green:      #1D9E75;
  --red:        #D85A30;
  --radius:     12px;
  --radius-lg:  16px;
  --gap:        1.5rem;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 60px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 500; color: var(--white);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.logo-va  { color: var(--white); }
.logo-one { color: var(--gold); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 18px; }
.logo-divider { color: rgba(255,255,255,0.3); margin: 0 6px; }
.logo-sub { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--steel); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 6px 12px; border-radius: 100px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  font-weight: 600; margin-left: 8px;
}
.nav-cta:hover { background: var(--gold-lt); }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 20px; cursor: pointer; }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.site-main { min-height: calc(100vh - 60px); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.10); pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.07); pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--gold); opacity: .5;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: -.5px; margin-bottom: .75rem;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 15px; color: var(--steel); font-weight: 300;
  line-height: 1.85; max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 24px; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .15s;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy  { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }

/* ── SECTION HEADERS ────────────────────────────────────────────────────── */
.sec-label {
  font-size: 10px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before {
  content: ''; display: inline-block; width: 20px; height: 1px;
  background: var(--gold); opacity: .6;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--text);
  line-height: 1.15; margin-bottom: .5rem;
}
.sec-intro {
  font-size: 14px; color: var(--text2); line-height: 1.85;
  font-weight: 300; max-width: 640px; margin-bottom: 2.5rem;
}
.divider { height: .5px; background: var(--border); margin: 4rem 0; }

/* ── CARDS ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--white); border: .5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.card-dark { background: var(--navy); border-color: var(--border-gold); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

/* ── COLOR SWATCHES ─────────────────────────────────────────────────────── */
.swatch-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 2rem; }
.swatch { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.swatch-color { height: 80px; }
.swatch-info { padding: 10px 12px; background: var(--white); border-top: .5px solid var(--border); }
.swatch-name  { font-size: 12px; font-weight: 500; color: var(--text); }
.swatch-hex   { font-size: 11px; font-family: 'Courier New', monospace; color: var(--gold); }
.swatch-use   { font-size: 10px; color: var(--text3); margin-top: 2px; }
.swatch-copy  { font-size: 9px; cursor: pointer; color: var(--steel); background: none; border: none; padding: 2px 0; }
.swatch-copy:hover { color: var(--gold); }

/* ── TYPOGRAPHY SPECIMENS ───────────────────────────────────────────────── */
.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 2rem; }
.type-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; overflow: hidden; }
.type-display { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; line-height: 1.1; color: var(--text); margin-bottom: .5rem; }
.type-body-samp { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; font-weight: 300; line-height: 1.5; color: var(--text); margin-bottom: .5rem; }
.type-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); border: .5px solid var(--border-gold); padding: 3px 10px; border-radius: 100px; margin-bottom: .75rem; }
.type-note { font-size: 12px; color: var(--text2); line-height: 1.7; }

/* ── SCALE TABLE ────────────────────────────────────────────────────────── */
.type-scale { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.type-scale th { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--white); background: var(--navy); padding: .75rem 1.1rem; text-align: left; }
.type-scale th:first-child { border-radius: 10px 0 0 0; } .type-scale th:last-child { border-radius: 0 10px 0 0; }
.type-scale td { padding: .7rem 1.1rem; font-size: 13px; border-bottom: .5px solid var(--border); }
.type-scale tr:nth-child(even) td { background: var(--white); }
.type-scale tr:nth-child(odd)  td { background: var(--cream-dark); }
.type-scale tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.type-scale tr:last-child td:last-child  { border-radius: 0 0 10px 0; }

/* ── VOICE / DO-DONT ────────────────────────────────────────────────────── */
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 2rem; }
.do-card  { background: #EAF3DE; border: .5px solid rgba(29,158,117,.3); border-top: 3px solid var(--green); border-radius: var(--radius); padding: 1.5rem; }
.dont-card{ background: #FAECE7; border: .5px solid rgba(216,90,48,.3);  border-top: 3px solid var(--red);   border-radius: var(--radius); padding: 1.5rem; }
.do-label  { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #0F6E56; margin-bottom: .75rem; }
.dont-label{ font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.do-card p, .dont-card p { font-size: 13px; line-height: 1.75; }
.do-card p { color: #27500A; } .dont-card p { color: #712B13; }

/* ── OUTREACH MESSAGE CARDS ─────────────────────────────────────────────── */
.outreach-card {
  background: var(--white); border: .5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem;
}
.outreach-header {
  background: var(--navy-mid); padding: .85rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.outreach-platform { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.outreach-type     { font-size: 10px; padding: 3px 10px; border-radius: 100px; background: rgba(201,168,76,.12); border: .5px solid var(--border-gold); color: var(--gold-lt); }
.outreach-body { padding: 1.5rem; }
.outreach-note { font-size: 12px; color: var(--text3); font-style: italic; margin-bottom: 1rem; border-left: 3px solid var(--gold); padding-left: 12px; }
.outreach-msg {
  font-size: 13px; color: var(--text); line-height: 1.9;
  white-space: pre-wrap; background: var(--cream-dark);
  padding: 1.25rem; border-radius: 8px; border: .5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
}
.outreach-actions { padding: .75rem 1.4rem; border-top: .5px solid var(--border); background: var(--cream-dark); display: flex; gap: 8px; flex-wrap: wrap; }

/* ── COPY BUTTON ────────────────────────────────────────────────────────── */
.copy-btn {
  font-size: 11px; font-weight: 500; padding: 5px 14px;
  border-radius: 6px; border: .5px solid var(--border-gold);
  background: transparent; color: var(--gold); cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background .15s;
}
.copy-btn:hover { background: var(--gold-pale); }
.copy-btn.copied { color: var(--green); border-color: rgba(29,158,117,.4); }

/* ── FORM ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { font-size: 12px; font-weight: 500; color: var(--text); display: block; margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--white); color: var(--text);
  border: .5px solid rgba(0,0,0,.18); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  transition: border-color .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12px; color: var(--text3); margin-top: .4rem; }
.form-error { font-size: 12px; color: var(--red); margin-top: .3rem; }
.form-success {
  background: #EAF3DE; border: .5px solid rgba(29,158,117,.3);
  border-radius: 8px; padding: 1rem 1.25rem;
  font-size: 13px; color: #27500A; margin-bottom: 1rem;
}

/* ── AFFILIATE CARDS ────────────────────────────────────────────────────── */
.affiliate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 2rem; }
.affiliate-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.affiliate-card.featured { border: 1px solid var(--border-gold); background: linear-gradient(135deg, var(--white), #FAEEDA); }
.aff-name  { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: .25rem; }
.aff-desc  { font-size: 13px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 1rem; }
.aff-earn  { font-size: 11px; font-weight: 500; color: var(--gold); margin-bottom: 1rem; border-top: .5px solid var(--border); padding-top: .75rem; }
.aff-badge { font-size: 9px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; background: var(--gold-pale); border: .5px solid var(--border-gold); color: #633806; }

/* ── INTERNAL GATE ──────────────────────────────────────────────────────── */
.login-wrap { max-width: 400px; margin: 8rem auto; padding: 3rem; background: var(--white); border-radius: var(--radius-lg); border: .5px solid var(--border); text-align: center; }
.login-logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--navy); margin-bottom: 1.5rem; }
.login-logo em { color: var(--gold); font-style: italic; }

/* ── NOTICE / ALERT ─────────────────────────────────────────────────────── */
.notice { padding: 1rem 1.25rem; border-radius: 8px; font-size: 13px; margin-bottom: 1.5rem; border-left: 3px solid; }
.notice-info  { background: #E6F1FB; border-color: #185FA5; color: #0C447C; }
.notice-warn  { background: #FAEEDA; border-color: var(--gold); color: #633806; }
.notice-success{background: #EAF3DE; border-color: var(--green); color: #27500A; }
.notice-internal { background: var(--navy); border-color: var(--gold); color: var(--steel); }
.notice-internal strong { color: var(--gold); }

/* ── KB ARTICLE LIST ────────────────────────────────────────────────────── */
.kb-list { list-style: none; }
.kb-list li { border-bottom: .5px solid var(--border); }
.kb-list li:last-child { border-bottom: none; }
.kb-link { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; text-decoration: none; color: var(--text); font-size: 14px; transition: color .15s; }
.kb-link:hover { color: var(--gold); }
.kb-arrow { color: var(--gold); font-size: 12px; }
.kb-article-body { font-size: 14px; color: var(--text2); line-height: 1.9; }
.kb-article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin: 1.5rem 0 .5rem; color: var(--text); }
.kb-article-body p  { margin-bottom: .9rem; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 3rem 2rem; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.footer-logo  { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: .25rem; }
.footer-tag   { font-size: 12px; font-style: italic; color: var(--steel); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: var(--steel); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { grid-column: 1 / -1; border-top: .5px solid rgba(255,255,255,.08); padding-top: 1rem; font-size: 11px; color: var(--steel); text-align: center; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  .hero-title    { font-size: 2.5rem; }
  .nav-links     { display: none; }
  .nav-mobile-toggle { display: block; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 2rem;
    align-items: flex-start; z-index: 99;
  }
  .swatch-row    { grid-template-columns: repeat(3,1fr); }
  .type-grid     { grid-template-columns: 1fr; }
  .do-dont       { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
}
