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

:root {
  --forest: #2C3E2D;
  --forest-light: #3d5440;
  --gold: #C9A84C;
  --gold-light: #dfc07a;
  --sage: #8FAF8B;
  --sage-light: #b8cfb5;
  --cream: #F7F3EE;
  --warm-white: #fdfaf7;
  --charcoal: #2A2A2A;
  --text-mid: #5a5a5a;
  --text-light: #8a8a8a;
  --border: rgba(44,62,45,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: .875rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--forest-light) !important;
  color: var(--cream) !important;
}

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

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 0.5rem
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  min-width: 200px;
  list-style: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 200;
}

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

.dropdown-menu li a {
  display: block;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--forest);
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ── SCROLL OFFSET ── */
#booking {
  scroll-margin-top: 80px;
}

/* ── SHARED UTILITIES ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  text-align: center;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold); color: var(--charcoal);; }



.btn-outline {
  background: transparent;
  color: var(--forest);
  padding: 0.875rem 2rem;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ── BOOKING PAGES (shared) ── */
.booking-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.booking-hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.booking-tag {
  display: inline-block;
  background: rgba(44,62,45,0.08);
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.booking-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.session-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.detail-cell {
  background: var(--warm-white);
  padding: 1.5rem;
  text-align: center;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.375rem;
}

.detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
}

.what-to-expect {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.expect-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expect-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.expect-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.calendly-placeholder {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.calendly-placeholder p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.calendly-placeholder strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.cal-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--sage);
  font-size: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.06em;
}

/*-- hide hamburger on desktop --*/
.hamburger {
  display: none;
}

/* ── RESPONSIVE ── */
/* ── MOBILE (640px and under) ── */
@media (max-width: 640px) {

  /* NAV */
  nav { padding: 0 1rem; }

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

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: all 0.3s;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 0;
    z-index: 99;
    gap: 0;
  }

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

  .nav-links li:not(.nav-dropdown) {
    display: block !important;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    display: block;
    background: rgba(44,62,45,0.04);
  }

  .nav-cta {
    margin: 0.75rem 1.5rem;
    display: block;
    text-align: center;
  }

  /* PREVENT horizontal scroll */
  body { overflow-x: hidden; }
  img, video, iframe { max-width: 100%; }

  /* PRICING CARDS - stack vertically */
  div[style*="grid-template-columns: repeat(3"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  div[style*="grid-template-columns: repeat(2"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  /* BOOKING PAGE */
  .booking-page {
    padding: 1.5rem 1rem;
  }

  /* ABOUT PAGE */
  .about-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* CONTACT SECTION */
  .contact-section {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  /* PHILOSOPHY */
  .philosophy > div {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .philosophy-quote {
    text-align: center;
  }

  .nav-dropdown {
    display: none !important;
  }
  
  /* SERVICES TWO COLUMN - stack on mobile */
  .services > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  .services {
    padding: 3rem 1rem;
  }

  .testimonials-section {
    margin: 2rem 0 0 !important;
  }
  
  /*FIXING CONTACT FORM FOR MOBILE*/
  .contact-grid {
  grid-template-columns: 1fr !important;
  padding: 2rem !important;
  gap: 2rem !important;
  }
  .contact-page {
  overflow-x: hidden;
  }
  
  /*FIXING LEFT ALIGN FOR CONTACT PAGE HERO TEXT*/
  .contact-hero {
    justify-content: flex-start;
    text-align: left;
    padding: 4rem 2rem !important;
  }

  .contact-hero-inner {
    text-align: left;
  }
}
@media (hover: none) {
  .btn-primary:hover {
    background: var(--forest);
    color: var(--cream);
  }
}