/* ============================================================
   BLOOM WOMEN'S HEALTH — STYLE SHEET
   Earthy Forest & Cream Theme
   Dark: #353F37  |  Light: #F8F7F2  |  Button: #BAA48C
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Forest Green Scale */
  --green-950: #1e2520;
  --green-900: #2a3329;
  --green-800: #353F37;   /* Primary dark */
  --green-700: #445547;
  --green-600: #536858;
  --green-500: #667d69;
  --green-400: #82997f; /* was 849688 adjusted */
  --green-300: #a3b5a0;
  --green-200: #c4d1c2;
  --green-100: #dfe8de;
  --green-50:  #f0f5f0;

  /* Cream / Warm Off-White Scale */
  --cream-50:  #F8F7F2;   /* Primary light */
  --cream-100: #f0ede4;
  --cream-200: #e5dfd2;
  --cream-300: #d8cfbe;
  --cream-400: #c9bca7;
  --cream-500: #b8a78e;

  /* Tan / Caramel (Buttons) */
  --tan:       #BAA48C;   /* Primary button */
  --tan-dark:  #a08e74;
  --tan-darker:#8a7660;
  --tan-light: #cec0aa;
  --tan-50:    #f5efe6;
  --tan-100:   #ece0d0;

  /* Neutrals */
  --white:     #ffffff;
  --off-white: #F8F7F2;
  --text-dark: #1e2520;
  --text-mid:  #3d4e3f;
  --text-body: #556157;
  --text-light:#7a8e7c;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows (green-tinted) */
  --shadow-sm: 0 2px 8px  rgba(53,63,55,0.07);
  --shadow-md: 0 8px 24px rgba(53,63,55,0.11);
  --shadow-lg: 0 20px 60px rgba(53,63,55,0.16);

  --nav-h: 72px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--green-300); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 247, 242, 0.88);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid var(--cream-200);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.nav-wrapper.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  color: var(--green-800); letter-spacing: -0.01em;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.75; }

/* Icon mark — pure white bg blends away via multiply on cream nav */
.logo-icon-img {
  height: 44px;
  width: 44px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

/* Footer icon — display naturally; white circle acts as a clean badge on dark footer */
.logo-icon-footer {
  mix-blend-mode: normal;
  opacity: 0.95;
}

/* Wordmark text */
.logo-wordmark {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--green-800);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo-sub {
  font-weight: 300;
  color: var(--green-500);
  font-size: 1rem;
}

/* Footer wordmark — light colors for dark bg */
.footer-wordmark { color: var(--cream-100); }
.footer-sub { color: var(--green-300); }

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem; font-weight: 500; color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--green-800); background: var(--green-50); }

.nav-cta {
  margin-left: 0.5rem; padding: 0.55rem 1.3rem;
  background: var(--tan); color: var(--white);
  border-radius: 100px; font-size: 0.875rem; font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(186,164,140,0.38);
}
.nav-cta:hover {
  background: var(--tan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(186,164,140,0.48);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--green-800); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 100px; font-weight: 500; font-size: 0.925rem;
  padding: 0.8rem 2rem; transition: all var(--transition); cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--tan); color: var(--white);
  box-shadow: 0 4px 18px rgba(186,164,140,0.35);
}
.btn-primary:hover {
  background: var(--tan-dark);
  box-shadow: 0 6px 24px rgba(186,164,140,0.48);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--green-800);
  border: 1.5px solid var(--green-300);
}
.btn-ghost:hover {
  background: var(--green-50); border-color: var(--green-400);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(30,37,32,0.80) 0%,
    rgba(42,51,41,0.60) 45%,
    rgba(53,63,55,0.22) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 4rem 2rem 4rem 8%;
}
.hero-eyebrow {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan-light); margin-bottom: 1.25rem;
}
.hero-heading {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem;
}
.hero-heading em { font-style: italic; color: var(--tan-light); }
.hero-body {
  font-size: 1.05rem; color: rgba(248,247,242,0.85); max-width: 500px;
  margin-bottom: 2.25rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-actions .btn-ghost {
  color: var(--white); border-color: rgba(248,247,242,0.45);
}
.hero-actions .btn-ghost:hover {
  background: rgba(248,247,242,0.12); border-color: rgba(248,247,242,0.70);
}

.hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(248,247,242,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(248,247,242,0.22); border-radius: 100px;
  padding: 0.4rem 0.9rem; color: var(--white); font-size: 0.8rem; font-weight: 500;
}
.badge-icon { font-size: 0.85rem; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(248,247,242,0.55); z-index: 2;
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--white); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--green-800);
  border-bottom: 1px solid var(--green-700);
  padding: 1.1rem 2rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; color: var(--green-200);
}
.trust-item svg { width: 16px; height: 16px; color: var(--tan-light); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--green-600); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 7rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.2; color: var(--text-dark); margin-bottom: 1rem;
}
.section-sub { font-size: 1rem; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--cream-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--tan-50) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--tan-100); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--green-100); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--tan-100); }
.service-icon-wrap svg { width: 22px; height: 22px; color: var(--green-700); }
.service-card:hover .service-icon-wrap svg { color: var(--tan-darker); }

.service-card h3 {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600;
  margin-bottom: 0.6rem; color: var(--text-dark);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-bullets {
  flex-grow: 1;
}
.service-link {
  font-size: 0.85rem; font-weight: 600; color: var(--tan-darker);
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto;
  align-self: flex-start;
}
.service-link:hover { color: var(--green-800); }


/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }
.about-container {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center;
}
.about-image-wrap { position: relative; border-radius: var(--radius-xl); overflow: visible; }
.about-img {
  width: 100%; height: 580px; object-fit: cover; object-position: top center;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.about-card-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--green-800); color: var(--white);
  border-radius: var(--radius-lg); padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.float-number {
  font-family: var(--font-serif); font-size: 2.25rem; font-weight: 600; line-height: 1;
}
.float-label { font-size: 0.8rem; opacity: 0.75; margin-top: 0.25rem; }

.about-content .section-heading { text-align: left; }
.about-title {
  font-size: 0.85rem; color: var(--tan-darker); font-weight: 500;
  letter-spacing: 0.03em; margin-bottom: 1.5rem; margin-top: 0.5rem;
}
.about-body { font-size: 0.97rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; }
.about-credentials { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.credential { display: flex; align-items: center; gap: 0.75rem; }
.cred-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tan); flex-shrink: 0;
}
.credential span { font-size: 0.88rem; color: var(--text-body); font-weight: 500; }

/* ============================================================
   WHY US
   ============================================================ */
.why-section {
  background: linear-gradient(160deg, var(--cream-50) 0%, var(--tan-50) 100%);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; border: 1px solid var(--cream-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-number {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300;
  color: var(--tan-light); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.why-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  margin-bottom: 0.6rem; color: var(--text-dark);
}
.why-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--green-800); }
.testimonials-section .section-eyebrow { color: var(--tan-light); }
.testimonials-section .section-heading { color: var(--white); }

.testimonials-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.testimonial-card {
  background: rgba(248,247,242,0.07);
  border: 1px solid rgba(248,247,242,0.12);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(248,247,242,0.11);
}
.stars { color: var(--tan-light); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: rgba(248,247,242,0.88); line-height: 1.7; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; color: var(--green-800); flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.9rem; color: var(--white); display: block; }
.testimonial-author p { font-size: 0.78rem; color: var(--green-300); margin-top: 0.1rem; }

.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2.5rem;
}
.tctl-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(248,247,242,0.10); color: var(--white);
  border: 1px solid rgba(248,247,242,0.18); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.tctl-btn:hover { background: var(--tan); border-color: var(--tan); }
.tctl-dots { display: flex; gap: 0.5rem; }
.tctl-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(248,247,242,0.22);
  transition: background var(--transition), width var(--transition);
  cursor: pointer; border: none;
}
.tctl-dot.active { background: var(--tan-light); width: 20px; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.book-section { background: var(--cream-50); }
.book-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.book-heading {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2;
}
.book-body { font-size: 0.97rem; color: var(--text-body); line-height: 1.7; margin-bottom: 2rem; }
.book-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.book-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--text-body);
}
.book-contact-item svg { width: 18px; height: 18px; color: var(--tan); flex-shrink: 0; margin-top: 1px; }

.book-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-200); border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(186,164,140,0.20);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23BAA48C' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px; padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-check { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--tan); cursor: pointer;
}
.form-check label { font-size: 0.83rem; color: var(--text-body); cursor: pointer; line-height: 1.5; }
.form-disclaimer {
  margin-top: 1rem; font-size: 0.75rem; color: var(--text-light);
  text-align: center; line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-body { font-size: 0.97rem; color: var(--text-body); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.contact-detail-item h4 {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--tan-darker); margin-bottom: 0.4rem;
}
.contact-detail-item p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

.map-placeholder {
  background: linear-gradient(135deg, var(--green-100) 0%, var(--tan-50) 100%);
  border-radius: var(--radius-xl); height: 380px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--cream-200); position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(186,164,140,0.25) 0%, transparent 65%);
}
.map-inner { text-align: center; position: relative; z-index: 1; }
.map-inner svg { width: 56px; height: 56px; color: var(--green-600); margin: 0 auto 1rem; }
.map-inner p { font-size: 0.95rem; color: var(--green-800); font-weight: 500; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); padding-top: 5rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(248,247,242,0.07);
}
.footer-logo { color: var(--cream-100); }
.footer-logo .logo-sub { color: var(--green-300); }
.footer-logo .logo-icon { color: var(--tan-light); }
.footer-tagline { font-size: 0.87rem; color: var(--green-400); line-height: 1.7; margin-top: 1rem; margin-bottom: 0.75rem; }
.footer-reg { font-size: 0.75rem; color: var(--green-500); }

.footer-links h4 {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--tan-light); margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a, .footer-links span {
  font-size: 0.87rem; color: var(--green-400); line-height: 1.5;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream-50); }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--green-500); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: var(--green-500); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--cream-100); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--green-800); color: var(--white);
  border-radius: var(--radius-md); padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg); font-size: 0.9rem; font-weight: 500;
  opacity: 0; transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
  border-left: 4px solid var(--tan);
}
.toast svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--tan-light); }
.toast.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}


@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 420px; }
  .about-card-float { right: 1rem; bottom: -1rem; }
  .book-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
  .map-placeholder { height: 280px; }
  .about-content .section-heading { text-align: center; }
  .about-content .section-eyebrow { text-align: center; display: block; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    z-index: 101;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-50);
    padding: 1.5rem 1.5rem 2.5rem;
    gap: 0.25rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    border-top: 1px solid var(--cream-200);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links li {
    display: block;
    width: 100%;
  }
  .nav-link {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--cream-200);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
  }
  .nav-link:hover, .nav-link:active {
    background: var(--cream-100);
    color: var(--green-800);
  }
  .nav-cta {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 1.25rem;
    text-align: center;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
  }


  .hero-content { padding: 3rem 1.5rem; }
  .section { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .trust-inner { gap: 1rem; }
  .trust-divider { display: none; }

  /* FAQ */
  .faq-group-title { font-size: 0.95rem; padding: 1rem 1.25rem; }
  .faq-q { padding: 1rem 1.25rem; font-size: 0.85rem; }
  .faq-a p { padding: 0.25rem 1.25rem 1rem 1.25rem; }

  /* Services — show-more button visible, hidden cards */
  .services-show-more { display: flex; }
  .service-card.hidden-mobile { display: none; }
  .service-card.show-mobile {
    display: block;   /* block not flex — keeps internal card stacking correct */
    animation: fadeSlideDown 0.4s ease both;
  }

  /* Footer — clean, centered, and well-spaced on mobile */
  .footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(248,247,242,0.08);
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(248,247,242,0.08);
    margin-bottom: 0;
  }
  .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
  }
  .footer-wordmark {
    text-align: center;
    font-size: 1.25rem;
  }
  .footer-tagline {
    font-size: 0.85rem;
    color: var(--green-400);
    max-width: 340px;
    margin: 0.85rem auto 0.6rem;
    text-align: center;
    line-height: 1.6;
  }
  .footer-reg {
    font-size: 0.72rem;
    color: var(--green-500);
    text-align: center;
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-links {
    text-align: center;
    padding: 0;
    border-bottom: none;
  }
  .footer-links h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--tan-light);
    margin-bottom: 0.85rem;
    text-align: center;
  }
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
  }
  .footer-links a, .footer-links span {
    font-size: 0.88rem;
    color: var(--green-300);
    text-align: center;
    line-height: 1.5;
  }
  .footer-bottom {
    padding: 1.75rem 0 0.5rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
    padding: 0;
  }
  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--green-500);
  }
  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }



}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}


@media (max-width: 480px) {
  .hero-heading { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-card-float { position: relative; right: auto; bottom: auto; margin-top: 1rem; }
  .float-number { font-size: 1.75rem; }
  .book-form { padding: 1.75rem 1.25rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   SERVICE BULLETS
   ============================================================ */
.service-bullets {
  list-style: none; padding: 0; margin: 0 0 1.25rem 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.service-bullets li {
  font-size: 0.82rem; color: var(--text-body); line-height: 1.5;
  padding-left: 1rem; position: relative;
}
.service-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.5em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--tan); flex-shrink: 0;
}

/* ============================================================
   ABOUT SUBTITLE
   ============================================================ */
.about-subtitle {
  font-size: 0.88rem; color: var(--text-body); font-weight: 400;
  line-height: 1.6; margin-bottom: 1.25rem; margin-top: -0.5rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-container { display: flex; flex-direction: column; gap: 1rem; }

.faq-group {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-group-title {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.1rem 1.75rem;
  background: var(--green-50);
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-200);
  margin: 0;
}
.faq-group-num {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700;
  color: var(--tan); letter-spacing: 0.05em; flex-shrink: 0;
}
.faq-item { border-bottom: 1px solid var(--cream-100); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 1.75rem; text-align: left;
  font-family: var(--font-sans); font-size: 0.88rem; font-weight: 500;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.faq-q:hover { background: var(--cream-50); color: var(--green-700); }
.faq-q[aria-expanded="true"] { color: var(--tan-darker); background: var(--tan-50); }
.faq-chevron {
  width: 16px; height: 16px; flex-shrink: 0; color: var(--tan);
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
}
.faq-a p {
  padding: 0.25rem 1.75rem 1.25rem 1.75rem;
  font-size: 0.88rem; color: var(--text-body); line-height: 1.8;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section { background: var(--white); }
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.location-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem 2rem;
  position: relative; overflow: hidden;
}
.location-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--tan);
}
.location-org {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tan-darker); margin-bottom: 0.3rem;
}
.location-name {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.location-detail {
  display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.85rem;
}
.location-detail svg {
  width: 17px; height: 17px; color: var(--green-500); flex-shrink: 0; margin-top: 2px;
}
.location-detail-text {
  font-size: 0.88rem; color: var(--text-body); line-height: 1.55;
}
.location-detail-text a {
  color: var(--tan-darker); transition: color var(--transition);
}
.location-detail-text a:hover { color: var(--green-800); }
.location-btn {
  margin-top: 1.5rem; font-size: 0.82rem; padding: 0.6rem 1.4rem;
}



/* Locations stack at 900px — no conflict with anything above */
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING SECTION — CONSULTATION PORTRAIT
   ============================================================ */
.book-portrait-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin: 1.5rem 0 1.75rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  background: var(--cream-50);
}
.book-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* Show More Services button — hidden on desktop only */
@media (min-width: 769px) {
  .services-show-more { display: none; }
}
.services-show-more {
  justify-content: center;
  margin-top: 1rem;
}
.services-show-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem;
}