@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

/* --- 1. BRAND VARIABLES & RESET --- */
:root {
  --clr-blush: #eec9d2;
  --clr-sage: #a8b8a5;
  --clr-stem: #5f6f55;
  --clr-sand: #f4ede4;
  --clr-charcoal: #3a3a3a;
  --clr-rose: #cfa3a8;
  --ff-heading: "Lora", serif;
  --ff-body: "Lato", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--ff-body);
  color: var(--clr-charcoal);
  background: var(--clr-sand);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1,
h2,
h3,
.lead-text {
  font-family: var(--ff-heading);
  color: var(--clr-stem);
}

/* --- 2. REUSABLE LAYOUT & UTILITIES --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
main {
  flex: 1;
  padding: 3rem 0;
}
section {
  margin-bottom: 4rem;
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.cta-button.primary {
  background: var(--clr-sage);
  color: #fff;
}
.cta-button.primary:hover {
  background: var(--clr-stem);
  transform: translateY(-2px);
}
.cta-button.secondary {
  border: 2px solid var(--clr-sage);
  color: var(--clr-stem);
  margin-left: 1rem;
}

/* --- 3. HEADER & NAVIGATION --- */
.site-header {
  background: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-title {
  font-size: 1.6rem;
}
#logo1 {
  width: 100px;
  display: block;
}
.site-nav {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--clr-charcoal);
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--clr-stem);
  border-bottom: 2px solid var(--clr-sage);
}

/* --- 4. HERO, WELCOME & TRUST STATS --- */
.hero-section {
  max-width: 800px;
  margin: 2rem auto 4rem auto;
}
.hero-headline {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.hero-subheadline {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--clr-charcoal);
}
.lead-text {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.stats-section {
  background: #fff;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-number {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-stem);
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* --- 5. SERVICES & PRICING (FLEXBOX MAGIC) --- */
.pricing-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.pricing-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: left;
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--clr-sage);
  transform: translateY(-4px);
}
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-rose);
  color: #fff;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.price-list {
  list-style: none;
  margin: 1.5rem 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-cost {
  font-weight: 700;
  color: var(--clr-stem);
}
.price-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--clr-stem);
}

.inclusions-box {
  margin-top: 1.5rem;
  background: var(--clr-sand);
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.inclusions-box ul {
  list-style: "🌿 ";
  padding-left: 1rem;
}

.travel-notice {
  background: var(--clr-blush);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
  text-align: left;
}
.travel-notice ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

/* --- 6. ABOUT PAGE LAYOUT --- */
.bio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: left;
  margin-top: 2rem;
}
.bio-sidebar {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}
.photo-placeholder {
  background: #fff;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  font-style: italic;
  color: var(--clr-stem);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.credentials-badge-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.credentials-badge-box ul {
  list-style: "✓ ";
  padding-left: 1rem;
  font-size: 0.95rem;
}
.bio-content {
  flex: 2;
  min-width: 300px;
}
.bio-content h3 {
  margin: 1.5rem 0 0.5rem 0;
}
.cta-inline {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- 7. FOOTER & RESPONSIVE TUNING --- */
.site-footer {
  background: var(--clr-stem);
  color: #fff;
  padding: 2.5rem 0;
  font-size: 0.9rem;
  margin-top: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-content a {
  color: var(--clr-blush);
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-container,
  .footer-content,
  .cta-inline,
  .travel-notice ul {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .site-nav {
    margin-top: 1rem;
  }
  .hero-headline {
    font-size: 1.8rem;
  }
  .bio-container {
    flex-direction: column;
    align-items: center;
  }
  .bio-sidebar {
    max-width: 100%;
  }
  .pricing-card {
    max-width: 100%;
  }
  .cta-button.secondary {
    margin-left: 0;
    margin-top: 1rem;
  }
}
