/* ============================================
   New Dawn Behavioral - newdawn.website
   Style: Luxury Retreat #7
   Architecture: Progressive Disclosure #10
   ============================================ */

/* --- Google Fonts loaded via HTML <link> --- */
/* Cormorant Garamond (headings), Raleway (body) */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', 'Lato', sans-serif;
  color: #1A1A1A;
  background-color: #FAF8F5;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8B7355;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #2C3E50;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* === UTILITY CLASSES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: #D4AF37; }
.bg-dark { background-color: #2C3E50; color: #FAF8F5; }
.bg-light { background-color: #FFFFFF; }
.bg-cream { background-color: #FAF8F5; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === SKIP NAVIGATION === */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: #D4AF37;
  color: #1A1A1A;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-nav:focus {
  top: 0;
}

/* === PROGRESS BAR === */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(44, 62, 80, 0.1);
  z-index: 9999;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #8B7355);
  transition: width 0.3s ease;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C3E50;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: #D4AF37;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__phone {
  font-size: 1rem;
  font-weight: 600;
  color: #2C3E50;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__phone:hover {
  color: #D4AF37;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #2C3E50;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === SLIDE-OUT MENU === */
.slide-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #2C3E50;
  z-index: 9998;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5rem 2.5rem 2rem;
  overflow-y: auto;
}

.slide-menu.active {
  right: 0;
}

.slide-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.slide-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.slide-menu__link {
  display: block;
  color: #FAF8F5;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: color 0.3s, padding-left 0.3s;
}

.slide-menu__link:hover {
  color: #D4AF37;
  padding-left: 0.5rem;
}

.slide-menu__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #D4AF37;
  color: #2C3E50;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 2px;
  text-align: center;
  width: 100%;
  transition: background 0.3s;
}

.slide-menu__cta:hover {
  background: #C4A030;
  color: #2C3E50;
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44,62,80,0.75) 0%, rgba(139,115,85,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 2rem;
}

.hero__title {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.hero__title em {
  font-style: normal;
  color: #D4AF37;
  font-weight: 600;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0.95;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #D4AF37;
  font-size: 0.85rem;
  text-align: center;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero__scroll-indicator span {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn--primary {
  background: #D4AF37;
  color: #2C3E50;
  border-color: #D4AF37;
}

.btn--primary:hover {
  background: transparent;
  color: #D4AF37;
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: #D4AF37;
}

.btn--outline:hover {
  background: #D4AF37;
  color: #2C3E50;
}

.btn--dark {
  background: #2C3E50;
  color: #FAF8F5;
  border-color: #2C3E50;
}

.btn--dark:hover {
  background: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn--gold-outline {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.btn--gold-outline:hover {
  background: #D4AF37;
  color: #2C3E50;
}

/* === PROGRESSIVE DISCLOSURE - REVEAL SECTIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}

/* === CONTINUE BUTTON (Progressive Disclosure) === */
.continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.continue-btn:hover {
  background: #D4AF37;
  color: #2C3E50;
}

.continue-btn__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.continue-btn:hover .continue-btn__arrow {
  transform: translateY(3px);
}

/* === SECTION BASE === */
.section {
  padding: 5rem 0;
}

.section--spacious {
  padding: 7rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: 2.5rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}

.section__divider {
  width: 60px;
  height: 2px;
  background: #D4AF37;
  margin: 1rem auto;
}

.section__subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* === TRUST BAR === */
.trust-bar {
  background: #2C3E50;
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #D4AF37;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-bar__icon {
  font-size: 1.2rem;
}

/* === CARD GRID === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  transition: all 0.4s ease;
}

.card:hover {
  box-shadow: 0 8px 40px rgba(44, 62, 80, 0.12);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 2rem;
}

.card__icon {
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.35rem;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__link:hover {
  color: #2C3E50;
}

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stats__item {
  padding: 1.5rem;
}

.stats__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.9rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === AMENITIES PREVIEW === */
.amenities-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenities-preview__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.amenities-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenities-preview__item:hover .amenities-preview__img {
  transform: scale(1.05);
}

.amenities-preview__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(44,62,80,0.8));
  color: #FAF8F5;
  font-size: 0.85rem;
  font-weight: 500;
}

/* === TESTIMONIALS === */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial {
  display: none;
  padding: 2rem;
}

.testimonial.active {
  display: block;
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: #D4AF37;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  opacity: 0.4;
  font-family: 'Cormorant Garamond', serif;
}

.testimonial__author {
  font-weight: 600;
  color: #2C3E50;
  font-size: 1rem;
}

.testimonial__program {
  color: #D4AF37;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(44,62,80,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: #D4AF37;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1a2836 100%);
  padding: 5rem 0;
  text-align: center;
  color: #FAF8F5;
}

.cta-section__title {
  font-size: 2.5rem;
  color: #FAF8F5;
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-weight: 300;
}

.cta-section__phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #D4AF37;
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.cta-section__phone:hover {
  color: #e8c44a;
}

/* === FOOTER === */
.footer {
  background: #1a2836;
  color: #b0b8c1;
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #FAF8F5;
  margin-bottom: 1rem;
}

.footer__brand span {
  color: #D4AF37;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #FAF8F5;
  margin-bottom: 1.25rem;
  position: relative;
}

.footer__title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #D4AF37;
  margin-top: 0.5rem;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__link {
  display: block;
  color: #b0b8c1;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer__link:hover {
  color: #D4AF37;
  padding-left: 0.3rem;
}

.footer__contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer__contact-icon {
  color: #D4AF37;
  min-width: 1.2rem;
}

.footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: #b0b8c1;
}

.footer__bottom a:hover {
  color: #D4AF37;
}

.footer__hipaa {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #888;
}

.breadcrumbs a {
  color: #8B7355;
}

.breadcrumbs a:hover {
  color: #D4AF37;
}

.breadcrumbs span {
  margin: 0 0.5rem;
  color: #ccc;
}

/* === PAGE HERO (Inner pages) === */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 3px;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44,62,80,0.8), rgba(139,115,85,0.6));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FAF8F5;
  padding: 2rem;
}

.page-hero__title {
  font-size: 3rem;
  color: #FAF8F5;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.page-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  font-weight: 300;
}

/* === ABOUT PAGE === */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mission-box {
  background: #2C3E50;
  color: #FAF8F5;
  padding: 3rem;
  text-align: center;
  border-left: 4px solid #D4AF37;
}

.mission-box__title {
  color: #D4AF37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.mission-box__text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #FFFFFF;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.value-item:hover {
  border-bottom-color: #D4AF37;
}

.value-item__icon {
  font-size: 1.5rem;
  color: #D4AF37;
  min-width: 2rem;
}

.value-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.value-item__text {
  font-size: 0.9rem;
  color: #666;
}

/* === TREATMENT MODALITIES === */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.modality {
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: box-shadow 0.3s;
}

.modality:hover {
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}

.modality__title {
  font-size: 1.2rem;
  color: #2C3E50;
  margin-bottom: 0.5rem;
}

.modality__text {
  font-size: 0.9rem;
  color: #666;
}

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.team-member__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2C3E50, #8B7355);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.team-member__name {
  font-size: 1.2rem;
  color: #2C3E50;
  margin-bottom: 0.25rem;
}

.team-member__role {
  font-size: 0.85rem;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-member__creds {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.75rem;
}

.team-member__bio {
  font-size: 0.9rem;
  color: #666;
}

/* === AMENITIES GALLERY === */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.amenity-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-card__img {
  transform: scale(1.05);
}

.amenity-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(44,62,80,0.85));
  color: #FAF8F5;
}

.amenity-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #FAF8F5;
}

.amenity-card__desc {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* === PROGRAMS PAGE === */
.program-detail {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.program-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.program-detail__grid--reverse {
  direction: rtl;
}

.program-detail__grid--reverse > * {
  direction: ltr;
}

.program-detail__image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.program-detail__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 0.75rem;
}

.program-detail__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.program-detail__list {
  list-style: none;
  padding: 0;
}

.program-detail__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #555;
}

.program-detail__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #D4AF37;
}

/* === DAILY SCHEDULE === */
.schedule {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2rem;
  margin-top: 1.5rem;
}

.schedule__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}

.schedule__item {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.schedule__time {
  min-width: 100px;
  font-weight: 600;
  color: #D4AF37;
  font-size: 0.9rem;
}

.schedule__activity {
  color: #555;
  font-size: 0.9rem;
}

/* === LEVELS OF CARE COMPARISON === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.comparison-table th {
  background: #2C3E50;
  color: #FAF8F5;
  padding: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}

.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: #555;
}

.comparison-table tr:hover td {
  background: rgba(212, 175, 55, 0.04);
}

/* === ADMISSIONS STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  position: relative;
}

.step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #D4AF37;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.step__title {
  font-size: 1.2rem;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.step__text {
  font-size: 0.9rem;
  color: #666;
}

/* === INSURANCE GRID === */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.insurance-item {
  background: #FFFFFF;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  font-weight: 500;
  color: #2C3E50;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.insurance-item:hover {
  border-color: #D4AF37;
}

/* === FAQ ACCORDION === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2C3E50;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-item__question:hover {
  color: #D4AF37;
}

.faq-item__icon {
  font-size: 1.2rem;
  color: #D4AF37;
  transition: transform 0.3s;
  min-width: 1.5rem;
  text-align: center;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.5rem;
  color: #D4AF37;
  min-width: 2rem;
}

.contact-info__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-size: 1.05rem;
  color: #2C3E50;
  font-weight: 500;
}

.contact-info__value a {
  color: #2C3E50;
}

.contact-info__value a:hover {
  color: #D4AF37;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === DIRECTIONS === */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.direction-card {
  padding: 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.direction-card__title {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.direction-card__text {
  font-size: 0.9rem;
  color: #666;
}

/* === BLOG PAGE === */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.blog-featured__image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-featured__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.blog-featured__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-featured__excerpt {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.blog-featured__date {
  font-size: 0.8rem;
  color: #999;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  transform: translateY(-2px);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.25rem;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: #999;
}

/* === PRIVACY PAGE === */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.privacy-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}

.privacy-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.privacy-content ul {
  margin-bottom: 1rem;
}

.privacy-content ul li {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

/* === WHAT TO BRING LIST === */
.bring-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bring-list__column h4 {
  margin-bottom: 1rem;
}

.bring-list__item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #555;
}

.bring-list__icon {
  color: #D4AF37;
}

.bring-list__icon--no {
  color: #c0392b;
}

/* === SERVICE AREA === */
.service-area {
  background: #FFFFFF;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-area__city {
  background: #FAF8F5;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: #2C3E50;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

/* === TWO COLUMN LAYOUT === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* === CREDENTIAL BADGES === */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.credential {
  background: #FAF8F5;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: #2C3E50;
  font-weight: 500;
}

/* === SUBSTANCES LIST === */
.substances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.substance-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: #FFFFFF;
  border-left: 3px solid #D4AF37;
  font-size: 0.95rem;
  color: #2C3E50;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #D4AF37;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D4AF37;
  margin-left: -5px;
}

.timeline__title {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 0.3rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: #666;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  .hero__title { font-size: 2.8rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .program-detail__grid { grid-template-columns: 1fr; }
  .program-detail__grid--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .bring-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero__title { font-size: 2.2rem; }
  .section { padding: 3.5rem 0; }
  .section__title { font-size: 2rem; }
  .page-hero { min-height: 35vh; }
  .page-hero__title { font-size: 2.2rem; }
  .cta-section__title { font-size: 2rem; }
  .cta-section__phone { font-size: 1.8rem; }
  .amenities-preview { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__phone { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; }
  .amenities-preview { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; align-items: center; gap: 0.75rem; }
  .stats { grid-template-columns: 1fr; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .reveal--left { transition: none; opacity: 1; transform: none; }
  .reveal--right { transition: none; opacity: 1; transform: none; }
  .reveal--scale { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero__scroll-indicator { animation: none; }
}
