/* ============================================================
   Soul Wellness Clinic — styles.css
   Design: warm, calming, premium wellness palette
   Colors: sage green, warm cream, soft gold, earthy rose
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

:root {
  /* Palette */
  --cream:       #FAF7F2;
  --cream-dark:  #F2EDE4;
  --cream-deep:  #E8DFD2;
  --sage:        #7C9E8B;
  --sage-light:  #A8C4B0;
  --sage-dark:   #5A7A68;
  --gold:        #C9A96E;
  --gold-light:  #E0C898;
  --gold-dark:   #A07840;
  --rose:        #C4907A;
  --rose-light:  #DEB8A8;
  --brown:       #6B4F3A;
  --brown-light: #9C7B64;
  --charcoal:    #3A3530;
  --charcoal-soft: #5C5550;
  --white:       #FFFFFF;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: 5rem 1.5rem;
  --section-pad-sm: 3.5rem 1.25rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(58,53,48,0.08);
  --shadow-hover: 0 8px 36px rgba(58,53,48,0.14);

  /* Transitions */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: var(--charcoal-soft); }

.text-gold   { color: var(--gold-dark); }
.text-sage   { color: var(--sage-dark); }
.text-rose   { color: var(--rose); }
.text-center { text-align: center; }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}

.section-title {
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 600px;
  line-height: 1.75;
}

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

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,122,104,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,120,64,0.35);
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 2rem;
}
.divider.centered { margin: 1rem auto 2rem; }

/* ======================================================
   NAVIGATION
   ====================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

#navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(58,53,48,0.08);
  padding: 0.8rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  margin-top: 2px;
}

#navbar.scrolled .nav-logo-name  { color: var(--charcoal); }
#navbar.scrolled .nav-logo-tagline { color: var(--brown-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after { transform: scaleX(1); }

#navbar.scrolled .nav-links a { color: var(--charcoal-soft); }
#navbar.scrolled .nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(160,120,64,0.3);
}
.nav-cta::after { display: none !important; }

/* ── Services Dropdown ── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { cursor: pointer; }

.nav-dropdown-arrow {
  font-size: 0.65em;
  margin-left: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(58,53,48,0.14);
  min-width: 210px;
  padding: 8px 0;
  z-index: 200;
  border: 1px solid rgba(58,53,48,0.07);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(58,53,48,0.07);
  border-top: 1px solid rgba(58,53,48,0.07);
  rotate: 45deg;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal-soft) !important;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-menu li a::after { display: none !important; }

.nav-dropdown-menu li a:hover {
  color: var(--sage-dark) !important;
  background: var(--cream);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

/* ── Solid Navbar (service pages with no dark hero) ── */
#navbar[data-nav="solid"] {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(58,53,48,0.08);
}

#navbar[data-nav="solid"] .nav-logo-name { color: var(--charcoal); }
#navbar[data-nav="solid"] .nav-logo-tagline { color: var(--brown-light); }
#navbar[data-nav="solid"] .nav-links a { color: var(--charcoal-soft); }
#navbar[data-nav="solid"] .nav-links a:hover { color: var(--sage-dark); }
#navbar[data-nav="solid"] .hamburger span { background: var(--charcoal); }

/* ── Nav Spacer (for fixed nav on service pages) ── */
.nav-spacer { height: 72px; }

/* 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(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--charcoal); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(58,53,48,0.15);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-deep);
  transition: color var(--transition);
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--sage-dark); }

/* Sub-links under Services in mobile nav */
.mobile-nav-links a.mobile-sub-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  padding: 0.55rem 0 0.55rem 0.8rem;
}

.mobile-nav .btn { margin-top: 2rem; width: 100%; justify-content: center; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(58,53,48,0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; }

/* ======================================================
   HERO
   ====================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #4a6856 0%,
    #5a7a68 25%,
    #6b8d78 50%,
    #7a8f7a 75%,
    #8a9f8a 100%
  );
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.hero-shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  top: -200px; right: -150px;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: 0.15;
}

.hero-shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
  top: 30%; left: 40%;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  color: var(--white);
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-title-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: flex;
  gap: 5rem;
  margin-top: 0;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}

.hero-scroll:hover { color: rgba(255,255,255,0.9); }

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ======================================================
   TRUST BAR
   ====================================================== */
#trust-bar {
  background: var(--charcoal);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}

.trust-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ======================================================
   SERVICES
   ====================================================== */
#services {
  padding: var(--section-pad);
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured::before { transform: scaleX(1); background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.4rem;
  background: var(--cream);
}

.service-card:nth-child(1) .service-icon { background: rgba(124,158,139,0.15); }
.service-card:nth-child(2) .service-icon { background: rgba(196,144,122,0.15); }
.service-card:nth-child(3) .service-icon { background: rgba(201,169,110,0.15); }
.service-card:nth-child(4) .service-icon { background: rgba(124,158,139,0.12); }

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.service-card p  { font-size: 0.93rem; line-height: 1.7; color: var(--charcoal-soft); }

.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
  transition: gap var(--transition), color var(--transition);
}
.service-learn:hover { gap: 0.7rem; color: var(--sage); }
.service-learn-arrow { font-size: 1rem; }

/* ======================================================
   WHY US / APPROACH
   ====================================================== */
#approach {
  padding: var(--section-pad);
  background: var(--cream-dark);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-visual {
  position: relative;
}

.approach-card-big {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.approach-icon-big {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.approach-card-big h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--sage-dark);
}

.approach-card-big p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.approach-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.approach-float-icon { font-size: 1.2rem; }
.approach-float-1 { bottom: -1.5rem; right: -1.5rem; }
.approach-float-2 { top: -1.25rem; left: -1.5rem; }

.approach-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.approach-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach-point-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.approach-point:nth-child(1) .approach-point-icon { background: rgba(124,158,139,0.15); }
.approach-point:nth-child(2) .approach-point-icon { background: rgba(201,169,110,0.15); }
.approach-point:nth-child(3) .approach-point-icon { background: rgba(196,144,122,0.15); }
.approach-point:nth-child(4) .approach-point-icon { background: rgba(124,158,139,0.12); }

.approach-point-text h4 { margin-bottom: 0.35rem; color: var(--charcoal); }
.approach-point-text p  { font-size: 0.92rem; line-height: 1.65; }

/* ======================================================
   ABOUT
   ====================================================== */
#about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-photo-placeholder {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.about-photo-placeholder-icon { font-size: 4rem; margin-bottom: 1rem; }
.about-photo-placeholder h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; }
.about-photo-placeholder p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.about-credential {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 150px;
}

.about-credential-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
}

.about-credential-label {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

.about-content {}

.about-content .section-subtitle { max-width: 100%; }

.about-bio {
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  background: var(--cream-dark);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--brown);
  font-size: 0.97rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-soft);
}

.about-highlight-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
#testimonials {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #4a6856 0%, #5a7a68 40%, #6b8d78 100%);
}

#testimonials .section-label { color: var(--gold-light); }
#testimonials .section-title { color: var(--white); }
#testimonials .section-subtitle { color: rgba(255,255,255,0.75); }
#testimonials .divider { background: linear-gradient(90deg, var(--gold-light), rgba(224,200,152,0.4)); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), background var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.15);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 0.2em;
  opacity: 0.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.1rem;
}

.testimonials-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ======================================================
   FAQ
   ====================================================== */
#faq {
  padding: var(--section-pad);
  background: var(--cream-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-deep);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--sage-dark); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--charcoal-soft);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--sage);
  color: var(--white);
}

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

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-aside {
  position: sticky;
  top: 6rem;
}

.faq-aside-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.faq-aside-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.faq-aside-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.faq-aside-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ======================================================
   CONTACT / BOOKING
   ====================================================== */
#contact {
  padding: var(--section-pad);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  background: rgba(124,158,139,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.contact-info-value a:hover { color: var(--sage-dark); }

.contact-info-note {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin-top: 0.2rem;
}

.contact-hours {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.contact-hours h4 {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-deep);
}

.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--charcoal); }
.hours-time { color: var(--charcoal-soft); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap p {
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-label .required { color: var(--rose); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,158,139,0.15);
  background: var(--white);
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C5550' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  margin-top: 0.9rem;
}

/* ======================================================
   FOOTER
   ====================================================== */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-logo-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
  background: var(--sage);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-contact-icon {
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  color: var(--sage-light);
}

.footer-contact-text {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

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

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* ======================================================
   TOAST NOTIFICATION
   ====================================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-hover);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  display: flex;
  transform: translateY(0);
}


.toast-icon { font-size: 1.2rem; }

/* ======================================================
   SCROLL REVEAL
   ====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ======================================================
   BACK TO TOP
   ====================================================== */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(90,122,104,0.3);
}

#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .approach-grid { gap: 3rem; }
  .about-grid    { gap: 3rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }

  .approach-visual { max-width: 480px; margin: 0 auto; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .faq-aside { position: static; }
}

@media (max-width: 768px) {
  :root { --section-pad: var(--section-pad-sm); }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero-stats { gap: 2rem; justify-content: center; text-align: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 1.5rem; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
