/* ============================================================
   Lindsay Bonebrake Therapy
   Global Stylesheet
   ============================================================ */

/* ── Imports ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600&family=Lora:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  /* Colors — mapped from original theme */
  --color-white:         #ffffff;
  --color-black:         #000000;
  --color-dark-navy:     hsl(244, 40%, 15%);   /* darkAccent: ~#171530 */
  --color-light-lavender: hsl(245, 40%, 94%);  /* lightAccent: ~#ECEAF8 */
  --color-mid-gray:      hsl(198, 9%, 48%);    /* safeDarkAccent: ~#6E8085 */
  --color-text:          hsl(244, 40%, 15%);   /* body text */
  --color-text-on-dark:  #ffffff;
  --color-footer-bg:     hsl(244, 40%, 12%);   /* slightly darker navy for footer */

  /* Typography */
  --font-heading:        'Nunito Sans', sans-serif;   /* proxima-nova substitute */
  --font-body:           'Lora', serif;               /* freight-text-pro substitute */

  /* Sizing */
  --max-width:           1400px;
  --page-padding:        4vw;
  --mobile-padding:      6vw;

  /* Buttons */
  --btn-radius:          6px;
  --btn-pad-y:           0.85rem;
  --btn-pad-x:           2rem;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8em;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.4em;
  letter-spacing: 0;
  color: var(--color-dark-navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: hsl(264.66deg 79.86% 33.56%); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8em;
  color: var(--color-text);
  margin-bottom: 1.2em;
}

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

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2em;
  text-transform: capitalize;
  text-decoration: none;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--color-mid-gray);
  border-color: var(--color-mid-gray);
}

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

.btn-secondary:hover {
  background-color: var(--color-light-lavender);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.15);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4vw var(--page-padding);
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Header when not on hero page (solid background) */
.site-header--solid {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Logo is white PNG — invert so it reads on white solid header */
.site-header--solid .header-logo img {
  filter: brightness(0);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 70px;
  width: auto;
  transition: filter 0.4s ease;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-dark-navy);
  transition: color 0.4s ease;
  position: relative;
}

/* On transparent header over hero, nav text is white */
.site-header--transparent .header-nav a {
  color: var(--color-white);
}

.site-header--transparent .hamburger span {
  background: var(--color-white);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark-navy);
  transition: background 0.4s ease, transform 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-dark-navy);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-dark-navy);
  line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: 48% 84%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Top band darkens the transparent nav; right band darkens behind the text */
  background:
    linear-gradient(to bottom, rgba(23, 21, 48, 0.5) 0%, transparent 22%),
    linear-gradient(to left, rgba(23, 21, 48, 0.6) 0%, rgba(23, 21, 48, 0.05) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--page-padding) 80px;
  display: flex;
  justify-content: flex-end;
}

.hero-text {
  max-width: 520px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(264.66deg 79.86% 33.56%);
  margin-bottom: 1.5rem;
  opacity: 1;
  text-shadow: 0 1px 10px rgb(122 119 161 / 60%);
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.25em;
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn-primary {
  background-color: rgba(255,255,255,0.95);
  color: var(--color-dark-navy);
  border-color: transparent;
}

.hero-actions .btn-primary:hover {
  background-color: var(--color-white);
}

.hero-actions .btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.hero-actions .btn-secondary:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section {
  padding: 6rem var(--page-padding);
}

.section--light {
  background-color: var(--color-light-lavender);
}

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

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

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--color-white);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(264.66deg 79.86% 33.56%);
  margin-bottom: 0.75rem;
  display: block;
  text-shadow: 0 1px 10px rgb(122 119 161 / 60%);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   SERVICES SECTION (Home)
   ============================================================ */
.services-section {
  padding: 6rem var(--page-padding);
  background: var(--color-white);
}

.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-light-lavender);
  border-radius: 10px;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 2px 16px rgba(23, 21, 48, 0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(23, 21, 48, 0.10);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 200px;
  height: 120px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.service-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark-navy);
}

.service-card__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  flex: 1;
  width: 100%;
  text-align: left;
}

.service-card .btn {
  align-self: center;
}

/* ============================================================
   ABOUT / INTRO SECTION (Home)
   ============================================================ */
.about-section {
  padding: 6rem var(--page-padding);
  background: var(--color-light-lavender);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-content .btn {
  margin-top: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* ============================================================
   LET'S CONNECT SECTION (Home)
   ============================================================ */
.connect-section {
  position: relative;
  padding: 7rem var(--page-padding);
  text-align: left;
  overflow: hidden;
}

.connect-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/altbackground.png');
  background-size: cover;
  background-position: center center;
}

.connect-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(23, 21, 48, 0.5) 0%, transparent 22%),
    linear-gradient(to right, rgba(23, 21, 48, 0.85) 0%, rgba(23, 21, 48, 0.05) 65%);
}

.connect-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
}

.connect-content h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.connect-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-white);
  padding: 4rem var(--page-padding) 2.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-brand .brand-label {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.5rem;
  display: block;
}

.footer-nav h4 {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ============================================================
   INNER PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
  padding: 9rem var(--page-padding) 4rem;
  background: var(--color-light-lavender);
}

.page-hero--with-image {
  position: relative;
  background: none;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 21, 48, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding) 3rem;
}

.page-hero-content h1 {
  color: var(--color-white);
}

.page-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-section {
  padding: 5rem var(--page-padding);
  background: var(--color-light-lavender);
}

.steps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.steps-section h2 {
  margin-bottom: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.step-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border-top: 3px solid var(--color-dark-navy);
  transition: box-shadow 0.2s, transform 0.2s;
}

.step-card:hover {
  box-shadow: 0 6px 24px rgba(23, 21, 48, 0.09);
  transform: translateY(-2px);
}

.step-card__number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 0.75rem;
  display: block;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark-navy);
  margin-bottom: 1rem;
}

.step-card__body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-text);
}

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-block {
  padding: 5rem var(--page-padding);
}

.content-block--alt {
  background: var(--color-light-lavender);
}

.content-block__inner {
  max-width: 900px;
  margin: 0 auto;
}

.content-block__inner--wide {
  max-width: var(--max-width);
}

.content-block h2 {
  margin-bottom: 1.5rem;
}

.content-block h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

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

/* Two-column feature layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-image {
  width: 100%;
  border-radius: 4px;
}

/* Concern/condition list */
.concerns-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.concerns-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

.concerns-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--color-mid-gray);
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

/* Pullquote / callout */
.callout {
  background: var(--color-light-lavender);
  border-left: 4px solid var(--color-dark-navy);
  padding: 1.5rem 2rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}

.callout p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-dark-navy);
  margin: 0;
}

/* CTA Banner */
.cta-banner {
  padding: 5rem var(--page-padding);
  background: var(--color-dark-navy);
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
  background: var(--color-white);
  color: var(--color-dark-navy);
  border-color: transparent;
}

.cta-banner .btn-primary:hover {
  background: var(--color-light-lavender);
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  padding: 5rem var(--page-padding);
}

.faq-section + .faq-section {
  padding-top: 0;
}

.faq-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.accordion {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark-navy);
  line-height: 1.4;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: var(--color-mid-gray);
}

.accordion-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  transition: transform 0.3s;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--color-dark-navy);
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.3s;
}

.accordion-icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.accordion-icon::after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.accordion-body {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--color-text);
}

.accordion-body p { margin-bottom: 0.8rem; }

.accordion-item.is-open .accordion-body {
  display: block;
}

/* Disclaimer */
.disclaimer-section {
  padding: 4rem var(--page-padding);
  background: var(--color-light-lavender);
}

.disclaimer-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  margin-bottom: 1.5rem;
}

.disclaimer-section p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(23,21,48,0.75);
  margin-bottom: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  padding: 5rem var(--page-padding);
}

.contact-layout__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 1rem;
}

.contact-intro p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-dark-navy);
}

label .required {
  color: var(--color-mid-gray);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-dark-navy);
  background: var(--color-light-lavender);
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
  line-height: 1.6;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  box-shadow: 0 0 0 2px var(--color-mid-gray);
}

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

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-dark-navy);
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit .btn {
  width: 100%;
}

/* Booking section */
.booking-section {
  padding: 5rem var(--page-padding) 0;
  background: var(--color-white);
}

.booking-section__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.booking-section h2 {
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-cards {
    gap: 2rem;
  }

  .about-inner {
    gap: 3rem;
  }

  .steps-grid {
    gap: 1.5rem;
  }

  .two-col {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .services-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --page-padding: var(--mobile-padding);
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-content {
    justify-content: flex-start;
  }

  .hero-text {
    max-width: 100%;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    order: -1;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-layout__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 7rem var(--page-padding) 3rem;
  }

  /* Let's Connect — no mobile-specific overrides needed for generic background */
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   FOOTER NAV — MULTI-COLUMN
   ============================================================ */
.footer-nav-cols {
  display: flex;
  gap: 3rem;
}

.footer-nav-cols > div {
  flex: 1;
}

@media (max-width: 480px) {
  .footer-nav-cols {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-section {
  padding: 5rem var(--page-padding);
}

.testimonials-section__inner {
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-section h2 {
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--color-light-lavender);
  border-radius: 8px;
  padding: 3rem 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-body);
  font-size: 7rem;
  line-height: 1;
  color: var(--color-dark-navy);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 2rem;
  pointer-events: none;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--color-text);
  margin: 0 0 1.5rem;
}

.testimonial-card cite {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2.25rem 2rem;
  }
}

/* ============================================================
   REFER PAGE
   ============================================================ */
.refer-steps {
  counter-reset: refer-step;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin: 2.5rem 0;
}

.refer-steps li {
  counter-increment: refer-step;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.refer-steps li::before {
  content: counter(refer-step);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-white);
  background: var(--color-dark-navy);
  min-width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.refer-steps li p {
  padding-top: 0.5rem;
  margin: 0;
}

.refer-note {
  background: var(--color-light-lavender);
  border-radius: 6px;
  padding: 1.25rem 1.75rem;
  font-size: 0.95rem;
  color: var(--color-mid-gray);
  margin-top: 2rem;
}

/* ============================================================
   CHILDREN'S THERAPY PAGE
   ============================================================ */
.concerns-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2.5rem;
  margin: 1.75rem 0;
}

.concerns-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.concerns-list li::before {
  content: '—';
  color: var(--color-mid-gray);
  flex-shrink: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .concerns-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-dark-navy);
  padding: 1.1rem var(--page-padding);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2.5rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.trust-bar__item {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-bar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-bar__sep { display: none; }
  .trust-bar__inner { gap: 0.5rem 1.5rem; }
}

/* ============================================================
   PAGE HERO SUBTITLE
   ============================================================ */
.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-mid-gray);
  margin-top: 1.25rem;
}

/* ============================================================
   INTRO LEDE
   ============================================================ */
.intro-lede {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* ============================================================
   FEATURE IMAGE
   ============================================================ */
.feature-image {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  max-height: 440px;
}

/* ============================================================
   BOOKING PLACEHOLDER
   ============================================================ */
.booking-placeholder {
  border: 2px dashed rgba(23, 21, 48, 0.15);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--color-mid-gray);
  margin-top: 1.5rem;
  background: var(--color-light-lavender);
}

.booking-placeholder p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   STEPS SECTION — WHITE VARIANT
   ============================================================ */
.steps-section--white {
  background: var(--color-white);
}

.steps-section--white .step-card {
  background: var(--color-light-lavender);
  border-top-color: var(--color-mid-gray);
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 0;
}

.stat-strip__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-dark-navy);
  margin-bottom: 0.15rem;
}

.stat-strip__item span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-mid-gray);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .stat-strip { gap: 1.5rem; }
}
