:root {
  /* Premium Earthy & Wellness Palette */
  --bg-primary: #f8f7f4;       /* Soft warm off-white */
  --bg-secondary: #f0eee8;     /* Slightly darker beige for contrast sections */
  --text-main: #33312e;        /* Charcoal brown */
  --text-muted: #6b665c;       /* Muted brown */
  --accent-color: #8b9a84;     /* Sage green */
  --accent-hover: #75836f;     /* Darker sage green */
  --border-color: #dcd7ce;     /* Soft border */
  --warning-bg: #f9f1f0;
  --warning-text: #b86259;
  
  /* Typography */
  --font-heading: 'Lora', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-padding: 8rem 0;
  --container-width: 1100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--bg-secondary);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(139, 154, 132, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 154, 132, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 215, 206, 0.5);
  transition: padding 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--text-main);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* Accounts for fixed navbar */
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  width: 140px;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-main-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px 20px 100px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  object-fit: cover;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--accent-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 2.5rem;
}

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

/* Abstract Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background-color: #d1dacb; /* Pale accent */
  top: -10%;
  left: -10%;
}

.shape-2 {
  width: 600px;
  height: 600px;
  background-color: #e5dfd3; /* Peachy beige */
  bottom: -20%;
  right: -10%;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: #fff;
  padding: 2.5rem 1.75rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.service-benefits {
  list-style: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.service-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
  line-height: inherit;
}

.warning-text {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--warning-text);
  font-weight: 500;
  background-color: var(--warning-bg);
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

/* Attention Box */
.attention-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.attention-image-wrapper {
  flex: 1;
}

.attention-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.attention-box {
  flex: 1;
  background-color: #fff;
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.attention-box h3 {
  margin-bottom: 1rem;
}

.attention-box p:last-child {
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.pricing-category h3 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(220, 215, 206, 0.7);
  color: var(--text-muted);
}

.price-list li:last-child {
  border-bottom: none;
}

.price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-main);
  background-color: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Banner Section */
.banner-section {
  width: 100%;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* About Section */
.about-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.about-image-wrapper {
  flex: 1;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  object-fit: cover;
}

.about-text {
  flex: 1.2;
}

.quote-block {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
  padding: 2rem;
  margin: 2.5rem 0;
  background-color: rgba(139, 154, 132, 0.05);
  border-radius: 0 16px 16px 0;
}

/* Reviews Carousel */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  list-style: none;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.review-card {
  background-color: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.review-card .stars {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
}

.review-text {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-main);
}

.review-author {
  font-weight: 500;
  color: var(--accent-color);
  font-size: 1rem;
}

.carousel-btn {
  background: transparent;
  border: none;
  font-size: 3rem;
  color: var(--text-muted);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 15px;
  transition: color 0.3s ease;
}

.carousel-btn:hover {
  color: var(--accent-color);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicator.current-indicator {
  background-color: var(--accent-color);
}

/* Footer */
.footer {
  background-color: var(--text-main);
  color: #fff;
  padding: 6rem 0 2rem;
}

.footer h2, .footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer h2 {
  color: #fff;
  font-size: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info p {
  font-size: 1.1rem;
  max-width: 300px;
  margin-top: 1rem;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.detail-val {
  color: #fff;
  font-size: 1.1rem;
  font-style: normal;
  transition: color 0.3s ease;
}

a.detail-val:hover {
  color: var(--accent-color);
}

.footer-warning {
  background-color: rgba(184, 98, 89, 0.1);
  color: #ffa399;
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-container, .attention-section, .about-grid {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-content, .about-text {
    align-items: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.05);
  }

  .nav-menu.active {
    right: 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}
