/* ==========================================================
   stanreeves.com — Master Stylesheet
   Colors: Navy #1A3A5C | Gold #F4A500 | LtBlueGrey #EEF3F8
           OffWhite #F5F5F5 | NearBlack #1A1A1A
   Fonts: Playfair Display (headings) | Inter (body)
   ========================================================== */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --navy:        #1A3A5C;
  --navy-dark:   #122a44;
  --gold:        #F4A500;
  --gold-dark:   #d48f00;
  --lt-blue:     #EEF3F8;
  --off-white:   #F5F5F5;
  --near-black:  #1A1A1A;
  --mid-grey:    #6b7280;
  --border:      #d1dce8;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 'Source Sans Pro', system-ui, sans-serif;

  --max-w:       1140px;
  --radius:      6px;
  --shadow:      0 2px 16px rgba(26,58,92,.10);
  --transition:  .22s ease;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--near-black);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #374151;
}

blockquote {
  border-left: 4px solid var(--gold);
  padding: .75rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
  background: var(--lt-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-alt { background: var(--lt-blue); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--mid-grey);
  max-width: 620px;
  margin-top: .75rem;
}

.section-header.centered { text-align: center; }
.section-header.centered p { margin: .75rem auto 0; }

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.cta-pair {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ----------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,58,92,.08);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: auto;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.logo-tagline {
  font-size: .67rem;
  color: var(--mid-grey);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--near-black);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--navy);
  background: var(--lt-blue);
}

/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .7rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  z-index: 100;
  padding: .5rem 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .88rem;
  color: var(--near-black);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--lt-blue);
  color: var(--navy);
}

.nav-cta {
  padding: .55rem 1.2rem;
  font-size: .88rem;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 0 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
  }

  .nav-links.open { display: flex; }

  .nav-links > li > a {
    padding: .75rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
  }

  .has-dropdown > a::after { content: ' ▾'; }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: var(--lt-blue);
  }

  .has-dropdown.open .dropdown { display: block; }

  .dropdown li a {
    padding: .65rem 2.5rem;
    font-size: .9rem;
  }

  .nav-container {
    flex-wrap: wrap;
    position: relative;
  }
}

/* ----------------------------------------------------------
   7. HERO
   ---------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cred {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 1.5rem;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.hero-photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.08);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-photo {
    display: none;
  }
}

/* ----------------------------------------------------------
   8. AUDIENCE ROUTER CARDS
   ---------------------------------------------------------- */
.audience-router {
  padding: 4rem 0;
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audience-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
}

.audience-card:hover {
  box-shadow: 0 8px 28px rgba(26,58,92,.12);
  border-color: var(--navy);
  transform: translateY(-3px);
}

.audience-icon {
  width: 48px;
  height: 48px;
  background: var(--lt-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--navy);
}

.audience-card p {
  font-size: .88rem;
  color: var(--mid-grey);
  line-height: 1.5;
  margin: 0;
}

.audience-card .card-link {
  display: inline-block;
  margin-top: .85rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   9. CREDIBILITY BAR
   ---------------------------------------------------------- */
.cred-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 1.1rem 0;
}

.cred-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
}

.cred-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.2);
}

/* ----------------------------------------------------------
   10. SERVICE CARDS
   ---------------------------------------------------------- */
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .9rem;
  color: var(--mid-grey);
  margin: 0;
}

/* ----------------------------------------------------------
   11. WHY IT MATTERS
   ---------------------------------------------------------- */
.why-matters {
  background: var(--lt-blue);
}

.why-matters .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: .9rem;
  color: var(--mid-grey);
  margin-top: .35rem;
}

/* ----------------------------------------------------------
   12. RESOURCE / BLOG CARDS
   ---------------------------------------------------------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.resource-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: #fff8e6;
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .75rem;
}

.resource-card h3 {
  font-size: 1.05rem;
  margin-bottom: .6rem;
  line-height: 1.35;
}

.resource-card p {
  font-size: .88rem;
  color: var(--mid-grey);
  line-height: 1.55;
  flex: 1;
}

.resource-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-meta {
  font-size: .8rem;
  color: var(--mid-grey);
  margin-bottom: .4rem;
}

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   13. BOTTOM CTA STRIP
   ---------------------------------------------------------- */
.cta-strip {
  background: var(--navy);
  padding: 4.5rem 0;
  text-align: center;
  color: #fff;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: .75rem;
}

.cta-strip p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------
   14. ABOUT TEASER / PHOTO BIO
   ---------------------------------------------------------- */
.bio-photo {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--lt-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: .9rem;
}

/* ----------------------------------------------------------
   15. PAGE HERO (inner pages)
   ---------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: .75rem;
}

.page-hero p {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  max-width: 640px;
}

/* ----------------------------------------------------------
   16. CREDENTIAL PANEL
   ---------------------------------------------------------- */
.cred-panel {
  background: var(--lt-blue);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 2rem;
}

.cred-panel h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid-grey);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.cred-entry {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.cred-entry::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: .55rem;
  flex-shrink: 0;
}

.cred-entry-text {
  font-size: .92rem;
  line-height: 1.5;
}

.cred-entry-label {
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.cred-entry-sub {
  color: var(--mid-grey);
  font-size: .85rem;
}

/* ----------------------------------------------------------
   17. PROCESS STEPS
   ---------------------------------------------------------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: step;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
}

.step-body h4 {
  font-size: 1rem;
  margin-bottom: .3rem;
}

.step-body p {
  font-size: .9rem;
  color: var(--mid-grey);
  margin: 0;
}

/* ----------------------------------------------------------
   18. TWO-TRACK CARDS
   ---------------------------------------------------------- */
.track-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.track-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  background: #fff;
}

.track-card h3 {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.track-card h3::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .track-cards { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   19. CONTACT FORM
   ---------------------------------------------------------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--near-black);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-meta-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.contact-meta-icon {
  width: 40px;
  height: 40px;
  background: var(--lt-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-meta-text h4 {
  font-size: .95rem;
  margin-bottom: .25rem;
}

.contact-meta-text p, .contact-meta-text a {
  font-size: .9rem;
  color: var(--mid-grey);
}

.contact-meta-text a:hover { color: var(--navy); }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   20. ABOUT PAGE — SIDEBAR LAYOUT
   ---------------------------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   21. BLOG / ARTICLE
   ---------------------------------------------------------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}

.article-content h2 { margin: 2rem 0 .75rem; }
.article-content h3 { margin: 1.5rem 0 .5rem; }
.article-content ul, .article-content ol {
  margin: 1rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.article-content li { font-size: .95rem; line-height: 1.65; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }

.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-box {
  background: var(--lt-blue);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--mid-grey);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ----------------------------------------------------------
   22. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-social a:hover { color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   23. RESPONSIVE GRIDS
   ---------------------------------------------------------- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ----------------------------------------------------------
   24. MISC
   ---------------------------------------------------------- */
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}

.centered .gold-divider { margin: 1rem auto 1.5rem; }

.highlight-box {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p { margin: 0; font-style: italic; }

.pill-tag {
  display: inline-block;
  background: var(--lt-blue);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .2rem .75rem;
}

/* ----------------------------------------------------------
   25. SCHEMA / HIDDEN SEO CONTENT
   ---------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
