@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/MozaicGEO-Light.ttf") format("truetype");
}

@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/MozaicGEO-Regular.ttf") format("truetype");
}

@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/MozaicGEO-Medium.ttf") format("truetype");
}

@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/MozaicGEO-Bold.ttf") format("truetype");
}

@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/MozaicGEO-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: Mozaic;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/MozaicGEO-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Marlide Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Marlide-Display.ttf") format("truetype");
}

:root {
  --primary: #234240;
  --coral: #eb654e;
  --sage: #6fa491;
  --sage-bar: #9bc1b4;
  --mint: #cbe0d9;
  --cream: #e2d1c4;
  --cream-soft: #fcf6f2;
  --cream-pill: #e2d1c4c4;
  --text: #3e3e3c;
  --text-dark: #3b3b3b;
  --white: #ffffff;
  --heading: "Marlide Display", sans-serif;
  --body: Mozaic, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* Top bar */
.topbar {
  background: var(--sage-bar);
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  text-align: center;
}

.topbar p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
}

/* Header */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr 285px 1fr;
  align-items: stretch;
  min-height: 220px;
  padding: 0;
  max-width: none;
  margin: 0;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 142px;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 285px;
  padding-top: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 70px;
}

.logo {
  display: block;
}

.logo img {
  width: 175px;
  height: auto;
  max-width: 175px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 13px 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item .caret {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  transform: translateY(-1px);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--primary);
  padding: 8px 0;
  z-index: 20;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown a:hover {
  color: var(--cream);
}

.tagline {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  width: 245px;
  margin-top: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-block;
  border-radius: 100px;
  color: var(--white);
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-sm {
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  padding: 10px 15px;
}

.btn-lg {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  padding: 20px 25px;
}

.btn-coral {
  background: var(--coral);
}

.btn-coral:hover {
  background: var(--primary);
}

.btn-sage {
  background: var(--sage);
}

.btn-sage:hover {
  background: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 765px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 100px;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/11/251003_SP_Selah-center-clinic-san-diego-12-1.jpg");
  background-position: 0% 50%;
  background-size: 120% auto;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.62;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 750px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: 100px;
  font-weight: 400;
  line-height: 110px;
  color: var(--cream);
  text-shadow: 1px 1px 58px rgba(0, 0, 0, 0.78);
}

.hero .location {
  margin: -10px 0 -20px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
}

.hero h2 {
  margin: 30px 0;
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 300;
  line-height: 42px;
  color: var(--white);
  text-shadow: 0 0 19px rgba(0, 0, 0, 0.82);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  z-index: 2;
  color: var(--white);
}

.hero-wave svg {
  width: 250%;
  height: 70px;
  display: block;
  transform: translateX(-30%);
}

/* Welcome */
.welcome {
  display: flex;
  align-items: stretch;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/DN-shadows-t.png");
  background-size: cover;
  position: relative;
  border-bottom: 10px solid var(--sage);
}

.welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffffa3 100%);
}

.welcome-photo,
.welcome-copy {
  position: relative;
  z-index: 1;
}

.welcome-photo {
  flex: 0 0 37%;
  width: 37%;
  min-width: 0;
  overflow: hidden;
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.welcome-copy {
  flex: 1 1 63%;
  width: 63%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px 60px 75px 75px;
}

.welcome-copy h2 {
  font-family: var(--heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 45px;
  color: var(--coral);
  margin-bottom: 22px;
}

.welcome-copy p {
  font-size: 18px;
  line-height: 25.2px;
  color: var(--text);
  margin-bottom: 16px;
}

.welcome-copy h4 {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  margin-top: 10px;
}

/* What is */
.what-is {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 75px 20px;
}

.what-is-copy {
  width: 60%;
  padding-right: 20px;
}

.what-is-copy h2,
.experience-copy h2,
.who-intro h2,
.env-copy h2,
.paths h2,
.chapter h2,
.blogs h2 {
  font-family: var(--heading);
  font-size: 45px;
  font-weight: 400;
  line-height: 45px;
  color: var(--primary);
}

.what-is-copy h2 {
  margin-bottom: 22px;
}

.lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.find-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 25.2px;
  color: var(--primary);
  margin: 22px 0 16px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.pill {
  background: var(--cream-pill);
  padding: 5px 12px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.what-is-media {
  width: 45%;
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
}

.what-is-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* Belong */
.belong {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 0 20px 75px;
}

.belong-photo {
  width: 35%;
}

.belong-photo img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
}

.belong-card {
  width: 70.555%;
  border-radius: 20px;
  padding: 50px;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/Transformation-spectrum-a.png");
  background-size: cover;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.belong-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.64;
  border-radius: 20px;
}

.belong-card > * {
  position: relative;
  z-index: 1;
}

.check-list {
  margin-top: 18px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 25.2px;
  color: var(--text);
  padding-block-end: 5px;
  margin-block-start: 5px;
}

.check-list li:first-child {
  margin-block-start: 0;
}

.check-icon {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex-shrink: 0;
  color: var(--sage);
}

/* Experience */
.experience {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 100px 20px 75px;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/DN-shadows-p.png");
  background-size: cover;
}

.experience-copy {
  width: 55%;
  padding: 50px 50px 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy h2 {
  margin-bottom: 18px;
}

.experience-copy .lead-strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
}

.experience-media {
  width: 45%;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticker-bar {
  width: 100%;
  background: var(--primary);
  margin: 0;
  padding: 15px 0;
  border-radius: 10px 0 0 10px;
}

.ticker-container {
  overflow: hidden;
  position: relative;
}

.ticker-container::before,
.ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 1;
}

.ticker-container::before {
  left: 0;
  background-image: linear-gradient(90deg, #234240, rgba(255, 255, 255, 0));
}

.ticker-container::after {
  right: 0;
  background-image: linear-gradient(270deg, #234240, rgba(255, 255, 255, 0));
}

.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  height: 45px;
}

.ticker {
  display: inline-block;
  margin-top: 5px;
  animation: marquee 80s linear infinite;
}

.ticker-item {
  display: inline-block;
  font-size: 18px;
  padding: 5px 20px;
  background-color: #6fa491;
  color: #ffffff;
  border-radius: 10px;
  margin: 0 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Therapy CTA */
.therapy-cta {
  background: var(--mint);
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.35);
  padding: 50px 20px 55px;
  text-align: center;
}

.therapy-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.therapy-cta h3 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 28px;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.btn-row .btn-lg {
  min-width: 300px;
}

/* Who we help */
.who {
  position: relative;
  padding: 75px 20px 80px;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/DN-shadows-i.png-1.png");
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}

.who::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.52;
}

.who > * {
  position: relative;
  z-index: 1;
}

.who-intro {
  max-width: 720px;
  margin: 0 auto 20px;
}

.who-intro h2 {
  text-align: center;
  margin-bottom: 18px;
}

.who-intro p {
  font-weight: 500;
}

.who-grid {
  display: flex;
  gap: 60px;
  max-width: 1140px;
  margin: 20px auto;
}

.help-card {
  flex: 1;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
}

.help-card-header {
  background: var(--primary);
  padding: 20px 20px 15px;
}

.help-card-header h3 {
  font-family: var(--heading);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

.help-card-sub {
  background: var(--mint);
  padding: 20px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
}

.help-card-list {
  padding: 15px 22px 20px;
}

.help-card-list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  color: var(--text);
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid var(--primary);
}

.help-card-list li:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.who .btn {
  margin-top: 10px;
}

/* Environment */
.environment {
  display: flex;
  align-items: center;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/Transformation-spectrum-a.png");
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

.environment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint);
  opacity: 0.58;
}

.environment > * {
  position: relative;
  z-index: 1;
}

.env-photo {
  width: 50%;
}

.env-photo img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
}

.env-copy {
  width: 50%;
  padding: 75px;
  text-align: center;
}

.env-copy h2 {
  margin-bottom: 18px;
}

.env-copy p {
  max-width: 720px;
  margin: 0 auto 16px;
  font-weight: 500;
}

.env-copy .emphasis {
  font-weight: 600;
}

/* Paths */
.paths {
  position: relative;
  padding: 80px 20px 70px;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/DN-shadows-v-scaled-1.jpeg");
  background-size: cover;
  text-align: center;
}

.paths::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff80 100%);
}

.paths > * {
  position: relative;
  z-index: 1;
}

.paths h2 {
  margin-bottom: 16px;
}

.paths .intro {
  max-width: 830px;
  margin: 0 auto 20px;
  font-weight: 500;
}

.paths-grid {
  display: flex;
  gap: 40px;
  margin: 20px auto 28px;
  max-width: 1200px;
}

.path-card {
  flex: 1;
  width: 33.33%;
  background: var(--cream-soft);
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
}

.path-card-header {
  background: var(--coral);
  padding: 20px 20px 15px;
}

.path-card-header h3 {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}

.path-card-sub {
  background: var(--mint);
  padding: 20px;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3em;
}

.path-card-body {
  background: var(--cream-soft);
  padding: 20px;
}

.path-card-body p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
  color: var(--text);
}

.path-card-body p + p {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--cream);
}

/* Chapter */
.chapter {
  background-color: #9bc1b4;
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/Transformation-light-a.png");
  background-size: cover;
  background-attachment: fixed;
  box-shadow: 0 -20px 20px 0 rgba(0, 0, 0, 0.23);
  padding: 0 20px 50px;
  position: relative;
}

.chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint);
  opacity: 0.5;
}

.chapter-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 40px;
}

.chapter-ribbon {
  background: var(--coral);
  margin: -25px auto 0;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  color: var(--white);
  position: relative;
  z-index: 2;
  width: fit-content;
}

.chapter h2 {
  font-size: 75px;
  line-height: 0.95;
  width: 40%;
}

.chapter-copy {
  width: 60%;
}

.chapter-copy p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.chapter-copy .btn-row .btn-lg {
  min-width: 0;
  flex: 1;
  background: var(--sage);
}

.chapter-copy .btn-row .btn-lg:hover {
  background: var(--coral);
}

/* Blogs */
.blogs {
  background-color: var(--cream);
  background-image: url("https://www.selah.center/wp-content/uploads/2025/08/DN-shadows-b.png.png");
  background-size: cover;
  padding: 75px 20px 30px;
}

.blogs h2 {
  text-align: center;
  margin-bottom: 36px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 16px;
  max-width: 1140px;
  margin: 0 auto 36px;
}

.blog-card {
  display: block;
  background: transparent;
}

.blog-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 70px 20px 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.4fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand img {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 16px;
}

.footer-brand .btn {
  margin-top: 8px;
}

.footer-col h4 {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-col a,
.footer-areas a {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  color: var(--white);
}

.footer-col a:hover,
.footer-areas a:hover {
  color: var(--cream);
}

.footer-therapies {
  columns: 2;
  column-gap: 24px;
}

.footer-mid {
  max-width: 1200px;
  margin: 0 auto 28px;
  text-align: center;
}

.footer-mid h4 {
  font-family: var(--heading);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-areas {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-areas a {
  display: inline;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.socials a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: var(--cream);
  opacity: 0.85;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
}

@media (max-width: 1200px) {
  .header-inner {
    min-height: 180px;
    grid-template-columns: 1fr 200px 1fr;
  }

  .header-left {
    padding-left: 24px;
  }

  .header-right {
    padding-right: 20px;
  }

  .header-brand {
    width: 200px;
    padding-top: 12px;
  }

  .tagline {
    width: 200px;
    margin-top: 8px;
  }

  .logo img {
    width: 140px;
    max-width: 140px;
  }

  .welcome-copy {
    padding: 50px 40px;
  }

  .env-copy {
    padding: 50px;
  }

  .chapter h2 {
    font-size: 70px;
  }

  .paths-grid {
    gap: 20px;
  }

  .path-card-header h3 {
    font-size: 34px;
  }
}

@media (max-width: 1024px) {
  .hero h2 {
    font-size: 34px;
    line-height: 34px;
  }

  .welcome,
  .what-is,
  .belong,
  .experience,
  .environment,
  .chapter-inner {
    flex-direction: column;
  }

  .welcome-photo,
  .welcome-copy,
  .what-is-copy,
  .what-is-media,
  .belong-photo,
  .belong-card,
  .experience-copy,
  .experience-media,
  .env-photo,
  .env-copy,
  .chapter h2,
  .chapter-copy {
    width: 100%;
  }

  .welcome-copy {
    padding: 20px;
  }

  .what-is-media img,
  .belong-photo img,
  .env-photo img {
    min-height: 0;
    height: 70vh;
  }

  .who-grid,
  .paths-grid {
    flex-direction: column;
    gap: 20px;
  }

  .path-card {
    width: 100%;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    min-height: 88px;
    padding: 10px 16px;
  }

  .header-left,
  .header-right,
  .tagline {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    width: 110px;
  }

  .hero {
    min-height: 70vh;
    background-size: cover;
    background-position: 20% 100%;
  }

  .hero h1 {
    font-size: 75px;
    line-height: 80px;
  }

  .hero h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .welcome-copy h2,
  .what-is-copy h2,
  .experience-copy h2,
  .who-intro h2,
  .env-copy h2,
  .paths h2,
  .blogs h2 {
    font-size: 36px;
    line-height: 38px;
  }

  .belong {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .belong-card {
    padding: 20px;
  }

  .experience {
    padding: 50px 20px;
  }

  .experience-copy {
    padding: 0 0 20px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn-lg {
    min-width: 0;
    width: 100%;
  }

  .therapy-cta h3 {
    font-size: 28px;
  }

  .chapter h2 {
    font-size: 45px;
    width: 100%;
  }

  .blog-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-therapies {
    columns: 1;
  }

  .mobile-nav {
    display: none;
    background: var(--primary);
    padding: 10px 20px 24px;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav a {
    display: block;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }
}
