/* ===== CSS VARIABLES ===== */
:root {
  --sage-dark:    #4B3B57;
  --sage-mid:     #C4791F;
  --sage-light:   #E4D2C3;
  --sage-pale:    #EDF2EA;
  --cream:        #FFF8F0;
  --text-dark:    #2E2536;
  --text-mid:     #5C5058;
  --text-light:   #FFFFFF;
  --accent:       #5C7A63;
  --accent-light: #E1EAE3;
  --accent-mid:   #4F6B57;
  --sage-bold:    #A3B89C;
  --radius:       8px;
  --shadow:       0 2px 12px rgba(75, 59, 87, 0.12);
  --transition:   0.25s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1   { animation: heroSlide 0.8s ease both; }
.hero-sub          { animation: heroSlide 0.8s 0.15s ease both; }
.hero-tagline      { animation: heroSlide 0.8s 0.25s ease both; }
.hero-ctas         { animation: heroSlide 0.8s 0.4s ease both; }

/* Scroll-reveal: elements start hidden, JS adds .revealed */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

a { color: var(--sage-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

p { margin: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-pale  { background: var(--sage-pale); }

.section-title {
  text-align: center;
  color: var(--sage-dark);
  margin: 0 auto 0.75rem;
  position: relative;
  display: block;
  width: fit-content;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.5rem auto 0;
}
.section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-mid);
  border-color: var(--accent-mid);
  color: var(--text-light);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-secondary:hover {
  background: var(--sage-dark);
  color: var(--text-light);
}

/* ===== STICKY NAV ===== */
.nav-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid var(--sage-light);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 12rem;
}
.nav-brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-brand:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 400;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
  background: var(--sage-pale);
}
.nav-links .btn-book {
  background: var(--accent);
  color: var(--text-light) !important;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 0.4rem;
}
.nav-links .btn-book:hover {
  background: var(--accent-mid);
  color: var(--text-light) !important;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding-top: 68px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--sage-bold);
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-content h1 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-size: 0.95rem;
  color: var(--sage-mid);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONDITIONS GRID ===== */
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.condition-tile {
  flex: 0 1 calc(33.333% - 1rem);
}
.condition-tile {
  background: var(--text-light);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.condition-tile:hover {
  box-shadow: 0 6px 24px rgba(75, 59, 87, 0.18);
  transform: translateY(-2px);
}

.tile-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.tile-icon svg,
.tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.condition-tile h3 {
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.tile-intro {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.btn-read-more {
  align-self: center;
  background: none;
  border: 2px solid var(--sage-mid);
  color: var(--sage-mid);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-read-more:hover,
.condition-tile.expanded .btn-read-more {
  background: var(--sage-mid);
  color: var(--text-light);
}
.tile-full {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sage-light);
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.8;
}
.tile-full p + p { margin-top: 0.75rem; }
.condition-tile.expanded .tile-full { display: block; }

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.photo-placeholder {
  width: 100%;
  position: relative;
  left: 20px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--sage-light), var(--sage-pale));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--sage-light);
  object-fit: cover;
  object-position: 45% 25%;
}
.about-text h3 {
  color: var(--sage-dark);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 0.9rem;
}
.about-text p:last-child { margin-bottom: 0; }

/* ===== FIRST VISIT STEPS ===== */
.steps-list {
  max-width: 760px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--sage-light);
}
.step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  min-width: 46px;
  height: 46px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-content h3 {
  color: var(--sage-dark);
  margin-bottom: 0.35rem;
}
.step-content p { color: var(--text-mid); }

/* ===== STAGES ===== */
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stage-card {
  background: var(--text-light);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.stage-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-mid);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stage-card h3 {
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.stage-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ===== HOURS & COSTS ===== */
.costs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.costs-hours h3,
.costs-pricing h3 {
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}
.location-block { margin-bottom: 2rem; }
.location-block:last-child { margin-bottom: 0; }
.location-block h4 {
  color: var(--sage-mid);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td {
  padding: 0.45rem 0.75rem 0.45rem 0;
  color: var(--text-dark);
  vertical-align: top;
}
.hours-table td:first-child {
  font-weight: 700;
  min-width: 90px;
}
.hours-table .note {
  color: var(--text-mid);
  font-size: 0.82rem;
  font-style: italic;
}
.price-card {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.price-card:last-of-type { margin-bottom: 0; }
.price-label {
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-note {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.insurance-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sage-light);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--sage-light); }
.faq-item:first-child { border-top: 1px solid var(--sage-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 2.75rem 1.1rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-question { color: var(--sage-dark); }
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}
.contact-list {
  list-style: none;
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--sage-pale);
  font-size: 0.97rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list a {
  color: var(--sage-dark);
  font-weight: 700;
}
.contact-list a:hover { color: var(--sage-mid); }
.contact-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }
.contact-locations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-card {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.location-card h4 {
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.location-card p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.location-card p:last-child { margin-bottom: 0; }

/* ===== BOOKING ===== */
.booking-choices {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.booking-choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 220px;
  padding: 2rem 1.5rem;
  background: var(--text-light);
  border: 2px solid var(--sage-light);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  font-family: 'Lato', sans-serif;
}
.booking-choice-btn:hover {
  border-color: var(--sage-mid);
  box-shadow: 0 6px 20px rgba(75, 59, 87, 0.18);
  transform: translateY(-2px);
}
.booking-choice-btn.selected {
  border-color: var(--sage-dark);
  background: var(--sage-pale);
}
.choice-icon  { font-size: 2rem; line-height: 1; }
.choice-label { font-size: 1.05rem; font-weight: 700; color: var(--sage-dark); }
.choice-desc  { font-size: 0.82rem; color: var(--text-mid); }

.booking-frame-wrap {
  border: 2px solid var(--sage-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--text-light);
}
.booking-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 750px;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.footer-brand {
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer-reg { font-size: 0.85rem; }
.footer-copy { font-size: 0.8rem; margin-top: 0.25rem; }

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

@media (max-width: 900px) {
  .condition-tile { flex: 0 1 calc(50% - 0.75rem); }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .costs-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.15rem;
    border-top: 1px solid var(--sage-light);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.7rem 0.75rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  .nav-links .btn-book {
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .section { padding: 3.5rem 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { display: flex; justify-content: center; }
  .photo-placeholder { max-width: 180px; width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
  .condition-tile { flex: 0 1 100%; }
  .stages-grid { grid-template-columns: 1fr; }
  .section { padding: 2.75rem 0; }
  .condition-tile { padding: 1.5rem 1.25rem; }
  .stage-card { padding: 1.5rem 1.25rem; }
}
