/* ============================================
 FONTS
 ============================================ */
@font-face {
  font-family: "Freight Display Book";
  src: url("../fonts/Freight Disp Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/Avenir Next LT Pro Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================
 SERVICE CARDS
 ============================================ */
.services-section {
  padding: 48px 32px 56px;
  max-width: 1000px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--warm-linen);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(58, 56, 53, 0.12);
}
.service-card-img {
  height: 150px;
  overflow: hidden;
  background: var(--blush-beige);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 16px 18px 18px;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--warm-charcoal);
}
.service-card-teaser {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-card-link {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-blue);
  letter-spacing: 0.06em;
}

/* ============================================
 MODAL
 ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 56, 53, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--soft-ivory);
  border-radius: 10px;
  max-width: 540px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}
.modal-img-placeholder {
  width: 100%;
  height: 120px;
  background: var(--blush-beige);
  border-radius: 10px 10px 0 0;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(58, 56, 53, 0.55);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: rgba(58, 56, 53, 0.85);
}
.modal-content {
  padding: 24px 28px 28px;
}
.modal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 14px;
}
.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.modal-bullets {
  list-style: none;
  margin-bottom: 22px;
}
.modal-bullets li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0 4px 18px;
  position: relative;
}
.modal-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate-blue);
}

/* ============================================
 DESIGN TOKENS
 ============================================ */
:root {
  --soft-ivory: #f5f2ef;
  --warm-linen: #e5dfd9;
  --blush-beige: #ddd2cb;
  --sage-mist: #c9cdc8;
  --sea-glass: #d6dedd;
  --slate-blue: #6b8fa8;
  --stone-gray: #a9aeae;
  --warm-charcoal: #3a3835;
  --text-muted: #6b6763;
  --accent-red: #FF2C2C;

  --font-heading: "Freight Display Book", Georgia, serif;
  --font-body: "Avenir Next", -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  background: var(--soft-ivory);
  color: var(--warm-charcoal);
}

/* ============================================
 NAV
 ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--blush-beige);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--warm-charcoal);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-blue);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--slate-blue);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--warm-charcoal);
}
.nav-links a.active::after {
  width: 100%;
  background: var(--warm-charcoal);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 700px) {
  .nav {
    position: relative;
  }
  .nav-toggle {
    display: flex;
    z-index: 201;
  }
  .nav-toggle.open span {
    background: var(--soft-ivory);
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--warm-charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--soft-ivory);
    padding-bottom: 4px;
    letter-spacing: 0.02em;
    position: relative;
  }
  .nav-links a.active {
    color: var(--sea-glass);
  }
  .nav-links a::after {
    display: block;
    background: var(--slate-blue);
  }
  .nav-links a.active::after {
    width: 100%;
    background: var(--sea-glass);
  }
}

/* ============================================
 HERO (parallax)
 ============================================ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-image: url("../images/Therapy_Hero.jpg");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 56, 53, 0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--soft-ivory);
  max-width: 520px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--sea-glass);
  margin-bottom: 14px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================
 BUTTONS
 ============================================ */
.btn-primary {
  display: inline-block;
  background-color: var(--slate-blue);
  color: var(--soft-ivory);
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.btn-primary:hover {
  background-color: var(--accent-red);
}

/* ============================================
 INSURANCE BAND
 ============================================ */
.insurance-band {
  background: var(--sea-glass);
  padding: 28px 32px;
  text-align: center;
}
.insurance-band .label {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--warm-charcoal);
  margin-bottom: 18px;
}
.insurance-marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.insurance-badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 28px;
}

/* ============================================
 TWO-COLUMN SECTION
 ============================================ */
.two-col {
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.accent-bar {
  width: 32px;
  height: 3px;
  background: var(--slate-blue);
  margin-bottom: 16px;
}
.two-col h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
}
.two-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
 BOOKSHELF SECTION
 ============================================ */
.bookshelf {
  padding: 8px 32px 48px;
  border-top: 1px solid var(--blush-beige);
  max-width: 1000px;
  margin: 0 auto;
}
.bookshelf-intro {
  padding-top: 40px;
}
.bookshelf-intro h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 6px;
}
.bookshelf-intro p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.book-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
}
.book-cover {
  background: var(--blush-beige);
  border-radius: 6px;
  aspect-ratio: 2 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-gray);
  font-size: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.book-title {
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 8px;
}
.book-info .btn-amazon {
  margin-top: 10px;
  align-self: flex-end;
}
.book-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--slate-blue);
  color: var(--soft-ivory);
  border: none;
  padding: 9px 18px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.btn-amazon:hover {
  background-color: var(--warm-charcoal);
}

/* ============================================
 CLOSING CTA BAND
 ============================================ */
.cta-band {
  background: var(--warm-charcoal);
  padding: 40px 32px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--soft-ivory);
  margin-bottom: 18px;
}

/* ============================================
 FOOTER
 ============================================ */
.footer {
  background: var(--sage-mist);
  padding: 48px 32px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-col-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--slate-blue);
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  list-style: none;
}
.footer-links a {
  color: var(--warm-charcoal);
  text-decoration: none;
}
.footer-grid > div:last-child {
  text-align: right;
}
.footer-grid > div:last-child .footer-links {
  flex-direction: column;
}
@media (max-width: 700px) {
  .footer-grid > div:last-child .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 20px;
    justify-content: flex-start;
  }
}
.footer-bottom {
  border-top: 1px solid #b5b9b4;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
 INNER PAGE HEADER
 ============================================ */
.page-header {
  padding: 48px 32px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-header h1,
.page-header h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 8px;
}
.page-header--center {
  display: flex;
  justify-content: center;
}
.page-header-group {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-header-sub {
  font-size: 13px;
  color: var(--stone-gray);
  letter-spacing: 0.06em;
}

/* ============================================
 BIO SECTION
 ============================================ */
.bio-section {
  background: var(--warm-linen);
  padding: 56px 32px;
}
.bio-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 700px) {
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.bio-photo {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--blush-beige);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-gray);
  font-size: 13px;
}
.bio-text-col h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 18px;
}
.bio-text-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
 EDUCATION & CREDENTIALS
 ============================================ */
.education-section {
  padding: 56px 32px;
}
.education-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.education-inner h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 32px;
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .edu-grid {
    grid-template-columns: 1fr;
  }
}
.edu-card {
  background: var(--warm-linen);
  border-radius: 8px;
  padding: 24px 28px;
  border-left: 3px solid var(--slate-blue);
  overflow: hidden;
}
.edu-card-img {
  width: calc(100% + 56px);
  margin: -24px -28px 20px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.edu-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.edu-card-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--slate-blue);
  margin-bottom: 10px;
}
.edu-card-degree {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}
.edu-card-field {
  font-size: 13px;
  color: var(--warm-charcoal);
  margin-bottom: 6px;
}
.edu-card-school {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.edu-card-year {
  font-size: 12px;
  color: var(--stone-gray);
  margin-top: 8px;
}

/* ============================================
 CONTACT PAGE
 ============================================ */
.contact-section {
  padding: 56px 32px;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.contact-info > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-booking {
  margin-bottom: 32px;
}
.contact-divider {
  border: none;
  border-top: 1px solid var(--blush-beige);
  margin: 28px 0;
}
.spwidget-button-wrapper { text-align: left !important; }
.spwidget-button {
  display: inline-block !important;
  padding: 12px 28px !important;
  color: var(--soft-ivory) !important;
  background: var(--slate-blue) !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
  text-decoration: none !important;
  transition: background-color 0.25s ease !important;
}
.spwidget-button:hover {
  background: var(--accent-red) !important;
  color: var(--soft-ivory) !important;
}
.spwidget-button:active {
  box-shadow: none !important;
}
.office-photos {
  background: var(--slate-blue);
  padding: 0;
}
.office-photos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 340px;
  overflow: hidden;
}
@media (max-width: 700px) {
  .office-photos-inner {
    grid-template-columns: 1fr;
    max-height: none;
  }
}
.office-photo {
  width: 100%;
  height: 340px;
  object-fit: contain;
  background: var(--warm-linen);
  display: block;
}
.office-photo:first-child {
  height: 360px;
  object-fit: cover;
  object-position: center center;
  transform: translateX(50px);
}
.office-photo:last-child {
  object-position: center center;
  background: var(--slate-blue);
}
@media (max-width: 700px) {
  .office-photo {
    height: 56vw;
    object-fit: cover;
    background: var(--slate-blue);
  }
  .office-photo:first-child {
    height: 56vw;
    transform: none;
    object-position: center center;
  }
}

/* ============================================
 404 PAGE
 ============================================ */
.not-found-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: var(--soft-ivory);
}
.not-found-inner {
  text-align: center;
  max-width: 480px;
}
.not-found-inner .accent-bar {
  margin: 0 auto 24px;
}
.not-found-code {
  font-family: var(--font-heading);
  font-size: 96px;
  color: var(--blush-beige);
  line-height: 1;
  margin-bottom: 8px;
}
.not-found-inner h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--warm-charcoal);
  margin-bottom: 16px;
}
.not-found-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.not-found-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
 PRIVACY POLICY PAGE
 ============================================ */
.privacy-section {
  padding: 48px 32px 64px;
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-inner h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--warm-charcoal);
  margin-top: 40px;
  margin-bottom: 12px;
}
.privacy-inner h2:first-child {
  margin-top: 0;
}
.privacy-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.privacy-inner ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.privacy-inner ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.privacy-inner a {
  color: var(--slate-blue);
  text-decoration: none;
}
.privacy-inner a:hover {
  color: var(--warm-charcoal);
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--warm-charcoal);
}

/* ============================================
 OFFICE & LOCATION
 ============================================ */
.location-section {
  background: var(--sea-glass);
  padding: 56px 32px;
}
.location-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) {
  .location-inner {
    grid-template-columns: 1fr;
  }
}
.location-info h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.location-item-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--slate-blue);
  margin-bottom: 4px;
}
.location-item-value {
  font-size: 14px;
  color: var(--warm-charcoal);
  line-height: 1.6;
}
.location-item-value a {
  color: var(--warm-charcoal);
  text-decoration: none;
}
.location-item-value a:hover {
  color: var(--slate-blue);
}
.location-map {
  border-radius: 8px;
  overflow: hidden;
  height: 340px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
 SCROLL REVEAL
 ============================================ */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.revealed:nth-child(1) {
  transition-delay: 0s;
}
.reveal-stagger.revealed:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.revealed:nth-child(3) {
  transition-delay: 0.24s;
}
.reveal-stagger.revealed:nth-child(4) {
  transition-delay: 0.36s;
}
.reveal-stagger.revealed:nth-child(5) {
  transition-delay: 0.48s;
}
.reveal-stagger.revealed:nth-child(6) {
  transition-delay: 0.60s;
}
.reveal-stagger.revealed:nth-child(7) {
  transition-delay: 0.72s;
}
.reveal-stagger.revealed:nth-child(8) {
  transition-delay: 0.84s;
}
.reveal-stagger.revealed:nth-child(9) {
  transition-delay: 0.96s;
}

/* ============================================
 RESPONSIVE — GLOBAL MOBILE (≤ 700px)
 ============================================ */
@media (max-width: 700px) {

  /* Reduce horizontal padding across all main sections */
  .insurance-band,
  .bookshelf,
  .cta-band,
  .bio-section,
  .education-section,
  .services-section,
  .contact-section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .two-col {
    padding: 36px 20px;
  }
  .page-header {
    padding: 32px 20px 24px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  /* Insurance band */
  .insurance-band .label {
    font-size: 18px;
  }

  /* Page header headings */
  .page-header h1,
  .page-header h3 {
    font-size: 22px;
  }

  /* Bookshelf: keep side-by-side book layout, just reduce cover size */
  .book-item {
    grid-template-columns: 90px 1fr;
    gap: 14px;
  }

  /* CTA band */
  .cta-band h2 {
    font-size: 18px;
  }

  /* Footer: left-align navigate column when stacked */
  .footer-grid > div:last-child {
    text-align: left;
  }

  /* Modal: full-width on small screens */
  .modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .modal-box {
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-content h2 {
    font-size: 18px;
  }

  /* Location details: single column */
  .location-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Map height */
  .location-map {
    height: 260px;
  }

  /* Hero height */
  .hero {
    height: 60vh;
    min-height: 320px;
  }

  /* Disable parallax and reset overhang */
  .hero-bg {
    top: 0;
    bottom: 0;
    transform: none !important;
    background-attachment: scroll;
    background-position: center top;
  }

  /* Hero content */
  .hero-eyebrow {
    font-size: 10px;
  }
  .hero-content {
    padding: 0 20px;
  }
}

/* ============================================
 RESPONSIVE — TABLET (701px–900px)
 ============================================ */
@media (min-width: 701px) and (max-width: 900px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .bio-inner {
    grid-template-columns: 200px 1fr;
    gap: 36px;
  }
  .contact-inner {
    gap: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
