/* ========================================
   SLEEP THERAPIST NETWORK
   Master Stylesheet
   Deep Navy & Gold Palette
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ========================================
   CSS RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #2D3436;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

/* ========================================
   CONSULTATION BANNER
   ======================================== */

.consultation-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #1B2A4A;
  color: #C9A96E;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.2);
  min-height: 44px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-content span {
  color: #E8D5A3;
}

.banner-link {
  color: #C9A96E;
  font-weight: 600;
  transition: color 0.3s;
}

.banner-link:hover {
  color: #E8D5A3;
}

.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #C9A96E;
  font-size: 1.4rem;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  line-height: 1;
}

.banner-close:hover {
  color: #E8D5A3;
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
  position: sticky;
  top: 44px;
  background: #FAF7F2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 999;
  transition: box-shadow 0.3s;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #2D3436;
  transition: color 0.3s;
  position: relative;
}

.nav-menu li a:hover {
  color: #C9A96E;
}

.nav-menu li a.active {
  color: #C9A96E;
  font-weight: 600;
}

.nav-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #C9A96E;
  border-radius: 1px;
}

.nav-cta {
  font-size: 0.85rem !important;
  padding: 10px 20px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta.active::after {
  display: none !important;
}

.nav-menu li a.btn-gold.active {
  color: #1B2A4A;
  background: #C9A96E;
  border-color: #C9A96E;
}

/* Hamburger Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1B2A4A;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero {
  position: relative;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 74, 0.6);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 74, 0.55);
  z-index: 1;
}

/* When hero-overlay div is present, don't double-darken */
.hero:has(.hero-overlay)::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 750px;
  padding: 40px 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  line-height: 1.7;
  color: #E8D5A3;
}

.hero .lead {
  color: #E8D5A3;
}

.hero-cta {
  display: inline-block;
  background: #C9A96E;
  color: #1B2A4A;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: #E8D5A3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.hero-secondary-link {
  display: inline-block;
  color: #E8D5A3;
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-secondary-link:hover {
  color: #FFFFFF;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 80px 20px;
}

.section-light {
  background: #FAF7F2;
}

.section-dark {
  background: #1B2A4A;
  color: #FFFFFF;
}

.section-white {
  background: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C9A96E;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #FFFFFF;
}

.section-dark p {
  color: #E8D5A3;
}

.section-dark .section-subtitle {
  color: #C9A96E;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #1B2A4A;
  margin-bottom: 12px;
}

.card-content p {
  color: #636E72;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ========================================
   TEAM MEMBER CARDS
   ======================================== */

.team-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #C9A96E;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B2A4A;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Initials placeholder for team photos */
.team-photo .initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #C9A96E;
  letter-spacing: 2px;
}

/* Practice logo circles */
.practice-logo-circle {
  padding: 0;
}

.practice-logo-circle img.practice-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1B2A4A;
  margin-bottom: 4px;
}

.team-credentials {
  font-size: 0.9rem;
  color: #C9A96E;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-specialties {
  font-size: 0.9rem;
  color: #636E72;
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.95rem;
  color: #636E72;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

.team-link {
  color: #C9A96E;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.team-link:hover {
  color: #1B2A4A;
}

/* Specialty tags */
.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.specialty-tag {
  display: inline-block;
  background: #FAF7F2;
  color: #1B2A4A;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-gold {
  background: #C9A96E;
  color: #1B2A4A;
  border-color: #C9A96E;
}

.btn-gold:hover {
  background: #b8953d;
  border-color: #b8953d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 169, 110, 0.3);
}

.btn-navy {
  background: #1B2A4A;
  color: #FFFFFF;
  border-color: #1B2A4A;
}

.btn-navy:hover {
  background: #243656;
  border-color: #243656;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 42, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: #1B2A4A;
  border: 2px solid #1B2A4A;
}

.btn-outline:hover {
  background: #1B2A4A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1rem;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.15;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1B2A4A;
  line-height: 1.2;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B2A4A;
  line-height: 1.3;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1B2A4A;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2D3436;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
}

.text-gold { color: #C9A96E; }
.text-navy { color: #1B2A4A; }
.text-center { text-align: center; }

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-item {
  border-bottom: 1px solid #E0DCD4;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1B2A4A;
  transition: color 0.3s;
  gap: 16px;
}

.faq-question:hover {
  color: #C9A96E;
}

.faq-toggle {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #C9A96E;
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: #636E72;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: #C9A96E;
  font-weight: 500;
}

.faq-answer a:hover {
  color: #1B2A4A;
}

/* FAQ category headers */
.faq-category {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #1B2A4A;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #C9A96E;
}

.faq-category:first-child {
  margin-top: 0;
}

/* ========================================
   SERVICES PREVIEW (Homepage)
   ======================================== */

.services-preview {
  padding: 80px 20px;
  background: #FAF7F2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1B2A4A;
  margin-bottom: 12px;
}

.service-card-body p {
  color: #636E72;
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.read-more {
  color: #C9A96E;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.read-more:hover {
  color: #1B2A4A;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro-section {
  padding: 80px 20px;
  background: #FFFFFF;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.our-story-section,
.our-approach-section,
.meet-team-section {
  padding: 40px 20px;
}

.our-story-section .section-header h2,
.our-approach-section .section-header h2,
.meet-team-section .section-header h2 {
  font-size: 2.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.story-content p,
.approach-content p {
  margin-bottom: 24px;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content p {
  color: #636E72;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ========================================
   TEAM PREVIEW
   ======================================== */

.team-preview {
  padding: 80px 20px;
  background: #FAF7F2;
}

.section-intro {
  max-width: 700px;
  margin: 12px auto 0;
  color: #636E72;
  font-size: 1rem;
  line-height: 1.7;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  color: #636E72;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

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

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-tagline {
  color: #636E72;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #C9A96E;
  letter-spacing: 2px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
  padding: 80px 20px;
  background: #FFFFFF;
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #C9A96E;
  color: #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  color: #636E72;
  font-size: 0.93rem;
}

.step-arrow {
  color: #C9A96E;
  font-size: 1.6rem;
  font-weight: 600;
  padding-top: 14px;
  flex-shrink: 0;
}

.steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
  padding: 80px 20px;
  background: #1B2A4A;
}

.section-header-light {
  text-align: center;
  margin-bottom: 40px;
}

.trust-card {
  text-align: center;
  padding: 0 16px;
}

.trust-card h3 {
  color: #FFFFFF;
  margin-bottom: 10px;
}

.trust-card p {
  color: #99a8b5;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   HERO BUTTONS
   ======================================== */

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-secondary {
  background: transparent;
  color: #E8D5A3;
  border: 2px solid #E8D5A3;
}

.btn-secondary:hover {
  background: rgba(232, 213, 163, 0.15);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* ========================================
   DIVIDER CONTENT
   ======================================== */

.divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.divider-quote {
  max-width: 650px;
  margin: 0 auto;
}

.divider-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.6;
}

.divider-quote footer {
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: #C9A96E;
  font-family: 'Inter', sans-serif;
}

/* ========================================
   NATURE DIVIDERS
   ======================================== */

.nature-divider {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nature-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0.75);
  z-index: 1;
}

.nature-divider .quote,
.nature-divider-quote,
.nature-quote {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.4rem;
  font-style: italic;
  max-width: 650px;
  padding: 24px;
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nature-divider .quote-attribution,
.quote-attribution {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: #C9A96E;
  font-family: 'Inter', sans-serif;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: #1B2A4A;
  color: #E8D5A3;
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-referral h4 {
  color: #C9A96E;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-referral p {
  color: #99a8b5;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-referral .referral-fax {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}

.footer-referral .btn-referral {
  display: inline-block;
  background: transparent;
  border: 1.5px solid #C9A96E;
  color: #C9A96E;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 4px;
}

.footer-referral .btn-referral:hover {
  background: #C9A96E;
  color: #1B2A4A;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: #99a8b5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #C9A96E;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #99a8b5;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #C9A96E;
}

.footer-contact p {
  color: #99a8b5;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #C9A96E;
}

.footer-contact a:hover {
  color: #E8D5A3;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: #636E72;
  font-size: 0.85rem;
}

.footer-psypact a {
  color: #C9A96E;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-psypact a:hover {
  color: #E8D5A3;
}

/* ========================================
   FORMS
   ======================================== */

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1B2A4A;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0DCD4;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #2D3436;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: auto;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

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

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

::placeholder {
  color: #aaa;
}

/* ========================================
   HOW IT WORKS / STEPS
   ======================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-item {
  text-align: center;
  padding: 0 16px;
}

.step-number-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C9A96E;
  color: #1B2A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-item h3 {
  margin-bottom: 8px;
}

.step-item p {
  color: #636E72;
  font-size: 0.95rem;
}

/* ========================================
   TRUST / VALUE PROPS
   ======================================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  text-align: center;
  padding: 0 16px;
}

.trust-item h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.trust-item p {
  color: #99a8b5;
  font-size: 0.95rem;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
  padding: 60px 20px;
  text-align: center;
}

.cta-gold {
  background: linear-gradient(135deg, #C9A96E 0%, #E8D5A3 100%);
}

.cta-gold h2 {
  color: #1B2A4A;
}

.cta-gold p {
  color: #1B2A4A;
  opacity: 0.85;
}

/* ========================================
   SERVICE DETAIL
   ======================================== */

.service-detail {
  max-width: 800px;
  margin: 0 auto;
}

.service-detail h2 {
  margin-bottom: 20px;
}

.service-detail p {
  color: #636E72;
  margin-bottom: 16px;
}

.callout-box {
  background: #FAF7F2;
  border-left: 4px solid #C9A96E;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.callout-box h4 {
  color: #1B2A4A;
  margin-bottom: 8px;
}

.callout-box p {
  margin-bottom: 0;
}

/* Info cards grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid #E0DCD4;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s;
}

.info-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-card h4 {
  margin-bottom: 8px;
}

.info-card p {
  color: #636E72;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   RESOURCE CARDS
   ======================================== */

.resource-card {
  background: #fff;
  border: 1px solid #E0DCD4;
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.resource-card p {
  color: #636E72;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.resource-card a {
  color: #C9A96E;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .our-story-section,
  .our-approach-section,
  .meet-team-section {
    padding: 60px 20px;
  }

  .our-story-section .section-header h2,
  .our-approach-section .section-header h2,
  .meet-team-section .section-header h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 400px;
    background-attachment: scroll;
  }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FAF7F2;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-top: 1px solid #E0DCD4;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #E0DCD4;
  }

  .nav-menu li a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .nav-menu li a.active::after {
    display: none;
  }

  .nav-cta {
    margin: 12px 24px !important;
    text-align: center !important;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .steps-grid,
  .trust-grid,
  .info-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .section {
    padding: 50px 20px;
  }

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

  /* Banner mobile */
  .consultation-banner {
    font-size: 0.8rem;
    padding: 8px 40px 8px 16px;
  }

  .banner-content {
    gap: 6px;
  }

  /* Team cards */
  .team-photo {
    width: 140px;
    height: 140px;
  }

  .nature-divider {
    background-attachment: scroll;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  .hero { min-height: 320px; }
  .hero h1 { font-size: 1.6rem; }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 16px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .team-photo .initials {
    font-size: 2rem;
  }
}
