/* ============================================
   ACCESSANCE CONSULTING
   Main Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #1D3557;
  --gold: #FDD31D;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --border: #E5E5E5;
  --navy-light: #253d63;
  --gold-dark: #e6be00;

  --font-main: 'Inter', sans-serif;

  --size-xs: 13px;
  --size-sm: 15px;
  --size-base: 17px;
  --size-md: 20px;
  --size-lg: 26px;
  --size-xl: 36px;
  --size-2xl: 48px;
  --size-3xl: 60px;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --radius: 4px;
  --radius-md: 8px;

  --max-width: 1100px;
  --nav-height: 72px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 128px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  font-family: var(--font-main);
  font-size: var(--size-base);
  font-weight: var(--weight-regular);
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: var(--weight-semibold);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: var(--size-3xl); letter-spacing: -0.02em; }
h2 { font-size: var(--size-2xl); letter-spacing: -0.01em; }
h3 { font-size: var(--size-xl); }
h4 { font-size: var(--size-lg); }
h5 { font-size: var(--size-md); }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-mid);
  line-height: 1.75;
}

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

strong {
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--space-xl) 0;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.section--sm {
  padding: var(--space-lg) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(29, 53, 87, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__logo-text {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__logo-text span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: var(--navy);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav__link:hover {
  color: var(--gold-dark);
}

.nav__cta {
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  color: var(--white);
  background: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 48px 40px;
  flex-direction: column;
  gap: 32px;
  z-index: 999;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-link {
  font-size: 28px;
  font-weight: var(--weight-semibold);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 24px;
  transition: color 0.2s ease;
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-link:last-child {
  border-bottom: none;
  color: var(--gold);
}

/* Page offset for fixed nav */
.page-content {
  padding-top: var(--nav-height);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

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

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  font-size: var(--size-base);
  padding: 18px 36px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(253, 211, 29, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  width: 100%;
  text-align: center;
}

.hero__eyebrow {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__heading {
  font-size: clamp(40px, 5vw, var(--size-3xl));
  font-weight: var(--weight-bold);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__heading .accent {
  color: var(--gold);
}

.hero__subhead {
  font-size: var(--size-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero__subhead p {
  color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   PATHWAY CARDS
   ============================================ */
.pathways {
  background: var(--white);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.pathways__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.pathway-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.pathway-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(29, 53, 87, 0.08);
}

.pathway-card__tag {
  display: inline-block;
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  background: rgba(29, 53, 87, 0.08);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.pathway-card__heading {
  font-size: var(--size-lg);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.pathway-card__body {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.pathway-card__body p {
  font-size: var(--size-sm);
}

.pathway-card__link {
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.pathway-card__link:hover {
  gap: 10px;
  color: var(--gold-dark);
}

.pathway-card__link::after {
  content: '→';
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header--centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.section-heading {
  font-size: var(--size-2xl);
  color: var(--navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.section-subhead {
  font-size: var(--size-md);
  color: var(--text-mid);
  line-height: 1.7;
}

/* White section heading variant */
.section--navy .section-eyebrow {
  color: var(--gold);
}

.section--navy .section-heading {
  color: var(--white);
}

.section--navy .section-subhead {
  color: rgba(255,255,255,0.75);
}

.section--navy p {
  color: rgba(255,255,255,0.75);
}

.section--navy h3, 
.section--navy h4 {
  color: var(--white);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--white);
}

.problem__content {
  width: 100%;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  background: var(--navy);
}

.solution__content {
  width: 100%;
}

/* ============================================
   SERVICES OVERVIEW (HOME)
   ============================================ */
.services-overview {
  background: var(--white);
}

.services-overview__grid {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.services-overview__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-lg);
}
.services-overview__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-thumb {
  padding: 32px;
  border-top: 3px solid var(--gold);
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.service-thumb:hover {
  box-shadow: 0 8px 32px rgba(29, 53, 87, 0.08);
}

.service-thumb__label {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.service-thumb__name {
  font-size: var(--size-md);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.service-thumb__desc {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.services-overview__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================
   CLOSING CTA
   ============================================ */
.cta-section {
  background: var(--gold);
  padding: var(--space-xl) 0;
}

.cta-section__inner {
  text-align: center;
  width: 100%;
}

.cta-section__heading {
  font-size: var(--size-2xl);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.cta-section__body {
  font-size: var(--size-md);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.cta-section__body p {
  color: var(--navy);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--space-md);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer__logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: var(--size-sm);
  color: var(--gold);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.footer__tagline p {
  color: var(--gold);
  font-style: italic;
}

.footer__nav-heading,
.footer__credentials-heading {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-link {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__credential {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.65);
}

.footer__email {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer__email:hover {
  color: var(--gold);
}

/* ============================================
   PAGE HERO (INTERIOR PAGES)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: var(--space-xl) 0 var(--space-lg);
}

.page-hero__eyebrow {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.page-hero__heading {
  font-size: clamp(36px, 4vw, var(--size-2xl));
  font-weight: var(--weight-bold);
  color: var(--white);
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: var(--space-sm);
}

.page-hero__subhead {
  font-size: var(--size-md);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.page-hero__subhead p {
  color: rgba(255,255,255,0.7);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section {
  background: var(--white);
}

.about-section--alt {
  background: #F7F9FC;
}

.about__content {
  max-width: 720px;
}

.about__content h3 {
  margin-bottom: var(--space-sm);
}

.about__content p + h3 {
  margin-top: var(--space-md);
}

.definition-block {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: var(--space-lg) 0;
}

.definition-block__word {
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
  color: var(--gold);
  margin-bottom: 4px;
}

.definition-block__pronunciation {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.definition-block__pos {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}

.definition-block__text {
  font-size: var(--size-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.definition-block__text p {
  color: rgba(255,255,255,0.85);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.credential-card {
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(29,53,87,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.credential-card__title {
  font-size: var(--size-md);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.credential-card__abbr {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
}

.credential-card__desc {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-divider {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

.services-divider__inner {
  width: 100%;
}

.services-divider__heading {
  font-size: var(--size-xl);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.services-divider__body {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

.services-divider__body p {
  color: rgba(255,255,255,0.75);
}

.service-detail {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail--alt {
  background: #F7F9FC;
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.service-detail__meta {}

.service-detail__number {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.service-detail__name {
  font-size: var(--size-xl);
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.service-detail__audience {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

.service-detail__content {}

.service-detail__intro {
  font-size: var(--size-base);
  color: var(--text-mid);
  margin-bottom: var(--space-md);
  line-height: 1.75;
}

.service-detail__includes {
  margin-bottom: var(--space-md);
}

.service-detail__includes-heading {
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

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

.service-detail__note {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.7;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: #F7F9FC;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-md);
}

.service-detail__note p {
  font-size: var(--size-sm);
  margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrapper {}

.contact-form-heading {
  font-size: var(--size-xl);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.contact-form-subhead {
  font-size: var(--size-base);
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: var(--size-sm);
  font-weight: var(--weight-medium);
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
  font-family: var(--font-main);
  font-size: var(--size-sm);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29, 53, 87, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #AAAAAA;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: var(--space-xs);
  padding: 16px;
  font-size: var(--size-base);
}

.contact-sidebar {}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.contact-info-card__heading {
  font-size: var(--size-md);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.contact-info-card__body {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.contact-info-card__body p {
  color: rgba(255,255,255,0.75);
  font-size: var(--size-sm);
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item__label {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-item__value {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.85);
}

.contact-info-item__value a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.contact-info-item__value a:hover {
  color: var(--gold);
}

.contact-ras-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: #F7F9FC;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
}

.contact-ras-note__heading {
  font-size: var(--size-sm);
  font-weight: var(--weight-semibold);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.contact-ras-note__body {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   RESOURCES PAGE
   ============================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.resource-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(29,53,87,0.08);
}

.resource-card__coming {
  font-size: var(--size-xs);
  font-weight: var(--weight-semibold);
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.resource-card__title {
  font-size: var(--size-md);
  color: var(--navy);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.resource-card__desc {
  font-size: var(--size-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.notify-section {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.notify-section__heading {
  font-size: var(--size-xl);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.notify-section__body {
  font-size: var(--size-base);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  line-height: 1.7;
}

.notify-section__body p {
  color: rgba(255,255,255,0.7);
}

.notify-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  max-width: 640px;
}

.notify-form .form-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.notify-form .form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.notify-form .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(253,211,29,0.15);
}

.notify-form .form-group--email {
  grid-column: 1 / -1;
}

.notify-form .btn {
  grid-column: 1 / -1;
}

.notify-privacy {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-sm);
  max-width: 640px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold-dark); }
.text-white { color: var(--white); }
.text-mid { color: var(--text-mid); }

.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }
.bg-light { background: #F7F9FC; }
.bg-gold { background: var(--gold); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  :root {
    --space-xl: 72px;
    --space-2xl: 96px;
  }

  .pathways__grid {
    grid-template-columns: 1fr;
  }

  .services-overview__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-overview__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  .notify-form .form-group--email {
    grid-column: 1;
  }

  .notify-form .btn {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 56px;
    --space-2xl: 72px;
  }

  .container {
    padding: 0 24px;
  }

  .nav__inner {
    padding: 0 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  .hero__subhead {
    font-size: var(--size-base);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-overview__grid--3,
  .services-overview__grid--2 {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pathway-card {
    padding: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── EMAIL CAPTURE ─────────────────────────────────────── */
.email-capture {
  background: var(--navy);
  padding: var(--space-lg) 0;
  border-top: 3px solid var(--gold);
}
.email-capture__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: center;
}
.email-capture__text h2 {
  font-size: var(--size-lg);
  font-weight: var(--weight-bold);
  color: var(--white);
  margin-bottom: 6px;
}
.email-capture__text p {
  font-size: var(--size-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.email-capture__form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.email-capture__input {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: var(--size-sm);
  width: 280px;
  outline: none;
  transition: border-color .15s ease;
}
.email-capture__input::placeholder { color: rgba(255,255,255,.4); }
.email-capture__input:focus { border-color: var(--gold); }
.email-capture__note {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .email-capture__inner { grid-template-columns: 1fr; }
  .email-capture__form { flex-direction: column; width: 100%; }
  .email-capture__input { width: 100%; }
  .email-capture__note { text-align: left; }
}


/* ── SEARCH OVERLAY ────────────────────────────────────── */
.nav__search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  color: var(--navy);
  transition: color 0.15s ease;
  margin-right: 4px;
}
.nav__search:hover { color: var(--gold-dark); }
.nav.scrolled .nav__search { color: var(--navy); }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29,53,87,0.96);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay__inner {
  width: 100%;
  max-width: 680px;
  padding: 0 var(--space-md);
}
.search-overlay__close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s ease;
}
.search-overlay__close:hover { color: var(--white); }
.search-overlay__hint {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: var(--space-sm);
  letter-spacing: 0.05em;
}

/* Pagefind UI theme overrides — dark overlay context */
:root {
  --pagefind-ui-scale: 1;
  --pagefind-ui-primary: #FDD31D;
  --pagefind-ui-text: #ffffff;
  --pagefind-ui-background: rgba(255,255,255,0.06);
  --pagefind-ui-border: rgba(255,255,255,0.18);
  --pagefind-ui-border-width: 1px;
  --pagefind-ui-border-radius: 6px;
  --pagefind-ui-font: inherit;
  --pagefind-ui-placeholder: rgba(255,255,255,0.45);
}
/* Explicit result card styling */
.pagefind-ui__result {
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  padding: 16px 0 !important;
}
.pagefind-ui__result-title a {
  color: var(--gold) !important;
  font-size: var(--size-base) !important;
  font-weight: var(--weight-semibold) !important;
  text-decoration: none !important;
}
.pagefind-ui__result-title a:hover {
  text-decoration: underline !important;
}
.pagefind-ui__result-excerpt {
  color: rgba(255,255,255,0.75) !important;
  font-size: var(--size-sm) !important;
  line-height: 1.6 !important;
}
.pagefind-ui__result-excerpt mark {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 2px !important;
  padding: 0 2px !important;
}
.pagefind-ui__search-input {
  background: rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  font-size: var(--size-base) !important;
}
.pagefind-ui__search-input::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.pagefind-ui__search-clear {
  color: rgba(255,255,255,0.6) !important;
}
.pagefind-ui__message {
  color: rgba(255,255,255,0.6) !important;
  font-size: var(--size-sm) !important;
}
.pagefind-ui__button {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  font-weight: var(--weight-semibold) !important;
}

/* ── BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 500;
  box-shadow: 0 2px 14px rgba(253,211,29,0.35);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #e8c019;
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  :root {
    --space-xl: 40px;
    --space-2xl: 56px;
    --space-lg: 28px;
  }

  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }

  /* Touch targets — WCAG 2.5.5 */
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav__mobile-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Typography */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  /* Service thumbs */
  .service-thumb { padding: 18px 16px; }
  .service-thumb__name { font-size: var(--size-base); }

  /* CTA */
  .cta-section { padding: var(--space-lg) 0; }
  .cta-section__heading { font-size: var(--size-xl); }

  /* Email capture */
  .email-capture { padding: var(--space-md) 0; }
  .email-capture__text h2 { font-size: var(--size-base); }

  /* Footer */
  .footer__credentials { flex-direction: column; gap: 6px; }
  .footer__credential { font-size: 11px; }

  /* Resource cards */
  .resource-card { padding: 18px 16px; }
  .resource-card__title { font-size: var(--size-base); }

  /* Section spacing */
  .section { padding: var(--space-lg) 0; }

  /* Services divider */
  .services-divider { padding: var(--space-md) 0; }
  .services-divider__heading { font-size: var(--size-lg); }
}
