/* ============================================================
   TEN DIRECTIONS COUNSELING — styles.css
   All fonts loaded via Google Fonts in HTML <head>
   ============================================================ */

/* ========================
   1. CSS VARIABLES
   ======================== */
:root {
  /* Brand Colors */
  --teal:         #7798A2;
  --dark-teal:    #1f6581;
  --sage:         #939A7C;
  --accent:       #82c0c7;
  --slate:        #2d3940;
  --body-text:    #4e4e4e;
  --light-text:   #666666;
  --light-bg:     #f7f7f5;
  --white:        #ffffff;

  /* Typography */
  --font-heading: 'Crimson Text', Georgia, 'Times New Roman', serif;
  --font-ui:      'Montserrat', 'Trebuchet MS', Arial, sans-serif;
  --font-body:    'Open Sans', Arial, sans-serif;

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(18px, 5vw, 48px);
  --section-v:      80px;

  /* Navigation */
  --nav-h:          76px;
  --nav-h-sm:       62px;

  /* Transitions */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-med:  0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(45, 57, 64, 0.08);
  --shadow-md: 0 4px 28px rgba(45, 57, 64, 0.13);
  --shadow-lg: 0 10px 50px rgba(45, 57, 64, 0.20);

  /* Radii */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: var(--dark-teal);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--teal); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section { padding: var(--section-v) 0; }
.section--light { background: var(--light-bg); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--dark-teal);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light-text);
  max-width: 620px;
  line-height: 1.8;
}

/* ========================
   4. BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn--hero {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  background: transparent;
}
.btn--hero:hover {
  background: var(--white);
  color: var(--dark-teal);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn--primary {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(31,101,129,0.28);
}

/* ========================
   5. NAVIGATION
   ======================== */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--t-med), box-shadow var(--t-med), height var(--t-med);
}

.site-nav::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dark-teal), var(--accent), var(--sage));
  opacity: 0;
  transition: opacity var(--t-med);
}

.site-nav.nav--scrolled {
  height: var(--nav-h-sm);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(119,152,162,0.15), var(--shadow-sm);
}
.site-nav.nav--scrolled::after { opacity: 1; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo__svg {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.nav-logo:hover .nav-logo__svg { transform: rotate(22.5deg); }

.nav-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.03em;
  transition: color var(--t-fast);
}
.site-nav:not(.nav--scrolled) .nav-logo__name { color: var(--white); }

.nav-logo__sub {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  transition: color var(--t-fast);
}
.site-nav:not(.nav--scrolled) .nav-logo__sub { color: var(--accent); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-fast);
}
.site-nav:not(.nav--scrolled) .nav-links a { color: rgba(255,255,255,0.88); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--teal);
  transition: width var(--t-med);
}
.site-nav:not(.nav--scrolled) .nav-links a::after { background: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--dark-teal); }
.site-nav:not(.nav--scrolled) .nav-links a:hover { color: var(--white); }

.nav-links .nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--r-sm);
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--dark-teal);
  color: var(--white);
  transform: translateY(-1px);
}
.site-nav:not(.nav--scrolled) .nav-links .nav-cta { background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.5); }
.site-nav:not(.nav--scrolled) .nav-links .nav-cta:hover { background: var(--white); color: var(--dark-teal); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dark-teal);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.site-nav:not(.nav--scrolled) .nav-hamburger span { background: var(--white); }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(45,57,64,0.55);
  backdrop-filter: blur(3px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.nav-mobile-overlay.is-open { opacity: 1; pointer-events: all; }

/* Mobile panel */
.nav-mobile-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 82vw); height: 100%;
  background: var(--white);
  z-index: 960;
  padding: 90px 36px 36px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-med);
  box-shadow: -6px 0 40px rgba(45,57,64,0.14);
}
.nav-mobile-panel.is-open { transform: translateX(0); }

.nav-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  color: var(--dark-teal);
  font-size: 1.3rem;
  line-height: 1;
  transition: background var(--t-fast);
}
.nav-mobile-close:hover { background: var(--light-bg); }

.nav-mobile-panel a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-text);
  padding: 17px 0;
  border-bottom: 1px solid rgba(119,152,162,0.18);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a:hover { color: var(--dark-teal); padding-left: 8px; }

/* ========================
   6. HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #1f6581 0%, #2d3940 55%, #233f47 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(130,192,199,0.20) 0%, transparent 45%),
    linear-gradient(160deg, rgba(31,101,129,0.45) 0%, rgba(45,57,64,0.50) 55%, rgba(119,152,162,0.25) 100%);
}

.hero__content {
  position: relative; z-index: 1;
  max-width: 800px;
  padding: var(--nav-h) var(--container-pad) 60px;
  animation: fadeInUp 0.9s var(--ease) both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.hero__tagline {
  font-family: var(--font-ui);
  font-size: clamp(0.6rem, 1.4vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}

.hero__intro strong {
  font-weight: 500;
  color: var(--white);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.55;
}
.hero__scroll span {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ========================
   7. BIO / ABOUT SECTION
   ======================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.bio-image-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.bio-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--teal);
  border-radius: var(--r-lg);
  opacity: 0.45;
  pointer-events: none;
}

.bio-image-wrap img,
.bio-image-placeholder {
  position: relative; z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.bio-image-placeholder {
  background: linear-gradient(150deg, #eef3f2 0%, #d9e3e2 55%, #cddad8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.bio-image-monogram {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
  box-shadow: 0 8px 22px rgba(31, 101, 129, 0.30);
}

.bio-image-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-teal);
  line-height: 1.25;
}

.bio-image-cred {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.bio-content .section-title { margin-bottom: 4px; }
.bio-content .section-label { color: var(--sage); letter-spacing: 0.14em; margin-bottom: 1.2rem; font-size: 0.75rem; text-transform: none; font-weight: 500; }

.bio-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.bio-content p:last-child { margin-bottom: 0; }

.bio-cta-wrap { margin-top: 2rem; }

/* ========================
   8. SERVICES SECTION
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: border-top-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
}
.service-card:hover {
  border-top-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark-teal) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.78;
}

/* ========================
   9. APPROACH BAND
   ======================== */
.approach-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1f6581 0%, #2d3940 100%);
  text-align: center;
}

.approach-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 120% at 85% 15%, rgba(130,192,199,0.16) 0%, transparent 50%),
    linear-gradient(135deg, rgba(31,101,129,0.62) 0%, rgba(45,57,64,0.66) 100%);
}

.approach-band__inner {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.approach-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.approach-band__divider {
  width: 55px; height: 2px;
  background: var(--accent);
  margin: 0 auto 1.6rem;
  opacity: 0.7;
}

.approach-band p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.84);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.approach-band p:last-child { margin-bottom: 0; }

/* ========================
   10. CREDENTIALS
   ======================== */
.credentials-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 20px;
  background: var(--light-bg);
  border-radius: var(--r-md);
  border-left: 3px solid var(--sage);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.credential-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.credential-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}

.credential-item span {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.55;
}

/* ========================
   11. CONTACT SECTION
   ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.82;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(119,152,162,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail__icon svg {
  width: 18px; height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__text { line-height: 1.5; }
.contact-detail__text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2px;
}
.contact-detail__text span {
  font-size: 0.95rem;
  color: var(--body-text);
}
.contact-detail__text a {
  font-size: 0.95rem;
  color: var(--dark-teal);
}
.contact-detail__text a:hover { color: var(--teal); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  background: var(--light-bg);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
}
.form-control::placeholder { color: #bbb; }
.form-control:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(119,152,162,0.14);
}
.form-control.is-error { border-color: #d96060; }

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

.form-error {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c95050;
  margin-top: 5px;
}
.form-error.is-visible { display: block; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn--submit {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
  min-width: 168px;
}
.btn--submit:hover:not(:disabled) {
  background: var(--dark-teal);
  border-color: var(--dark-teal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success-msg {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #3e9168;
  font-weight: 500;
}
.form-success-msg.is-visible { display: block; }

/* ========================
   12. FOOTER
   ======================== */
.site-footer {
  background: var(--slate);
  padding: 44px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--accent); }

.footer-divider {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.18);
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
}

.footer-disclaimer {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
  max-width: 560px;
  line-height: 1.6;
  text-align: center;
}

/* ========================
   13. PAGE BANNER (About / Privacy)
   ======================== */
.page-banner {
  position: relative;
  height: 42vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1f6581 0%, #2d3940 100%);
  margin-top: var(--nav-h);
}

.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 130% at 80% 10%, rgba(130,192,199,0.16) 0%, transparent 55%),
    linear-gradient(135deg, rgba(31,101,129,0.60) 0%, rgba(45,57,64,0.64) 100%);
}

.page-banner__content {
  position: relative; z-index: 1;
  padding: 0 var(--container-pad);
}

.page-banner__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}

/* ========================
   14. ABOUT PAGE SECTIONS
   ======================== */
.full-bio p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.88;
  margin-bottom: 1.4rem;
  max-width: 820px;
}
.full-bio p:last-child { margin-bottom: 0; }

.approach-values-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}

.approach-value {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.approach-value__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(119,152,162,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.approach-value__icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-value__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 6px;
  line-height: 1.3;
}
.approach-value__body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.78;
}

.services-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}

.services-info-item {
  padding: 26px 28px;
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.services-info-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.services-info-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin-bottom: 8px;
}
.services-info-item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.78;
}

/* ========================
   15. PRIVACY PAGE
   ======================== */
.privacy-content { max-width: 800px; }

.privacy-meta {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(147,154,124,0.25);
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark-teal);
  margin: 2.8rem 0 0.8rem;
  line-height: 1.3;
}

.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--body-text);
  margin: 1.6rem 0 0.5rem;
}

.privacy-content p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.82;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: disc;
  margin: 0.5rem 0 1rem 22px;
}
.privacy-content ul li {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

/* ========================
   16. RESPONSIVE
   ======================== */

/* 480px+ */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 768px+ */
@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 310px 1fr;
    gap: 64px;
    align-items: start;
  }
  .bio-image-wrap { max-width: none; margin: 0; }

  .contact-grid {
    grid-template-columns: 1fr 1.35fr;
    gap: 56px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-hamburger { display: none !important; }
  .nav-links { display: flex !important; }
}

/* Mobile only */
@media (max-width: 1023px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 767px) {
  :root { --section-v: 62px; }
  .approach-band { background-attachment: scroll; }
  .hero { background-attachment: scroll; }
  .contact-form { padding: 28px 20px; }
  .section-header { margin-bottom: 36px; }
}

@media (max-width: 479px) {
  .btn { padding: 13px 24px; font-size: 0.66rem; }
  .nav-logo__name { font-size: 1rem; }
  .nav-logo__svg { width: 34px; height: 34px; }
}

/* ========================
   17. PRINT STYLES
   ======================== */
@media print {
  .site-nav,
  .nav-mobile-overlay,
  .nav-mobile-panel,
  .hero__scroll,
  .approach-band { display: none !important; }

  .page-banner { margin-top: 0; height: auto; padding: 30px 0; background: none !important; }
  .page-banner::before { display: none; }
  .page-banner__title,
  .page-banner__eyebrow { color: var(--body-text) !important; }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background: var(--light-bg) !important;
    background-image: none !important;
  }
  .hero::before { display: none; }
  .hero__title,
  .hero__tagline,
  .hero__intro { color: var(--body-text) !important; }

  body { font-size: 11pt; }
  .section { padding: 24px 0; }
  .contact-form { box-shadow: none; border: 1px solid #ddd; }
}

/* ========================
   18. ANIMATIONS
   ======================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.55; }
  50%       { opacity: 0.2; }
}

/* ========================
   19. UTILITIES
   ======================== */
.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;
}

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