/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

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

:root {
  --primary: #4A7C2F;
  --primary-light: #7AAF52;
  --primary-dark: #2D5016;
  --primary-deeper: #1E3A0F;
  --primary-glow: rgba(74, 124, 47, 0.15);
  --accent: #C4703A;
  --accent-hover: #b0622f;
  --accent-light: #e8a87a;
  --text: #1C2B0E;
  --text-light: #3D4F2A;
  --text-muted: #6B7D5A;
  --bg: #FAFAF5;
  --bg-light: #EAF3DC;
  --bg-warm: #FDF8F0;
  --border: #C5D9A8;
  --border-light: #dde8c5;
  --success: #4A7C2F;
  --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header & Navigation ===== */
header {
  background: #ffffff;
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-family: 'Cookie', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #2D5016;
}

.logo-nourish .ln-n { color: #f44336; }
.logo-nourish .ln-o { color: #ff9800; }
.logo-nourish .ln-u { color: #ffeb3b; }
.logo-nourish .ln-r { color: #66bb6a; }
.logo-nourish .ln-i { color: #2196f3; }
.logo-nourish .ln-s { color: #1565c0; }
.logo-nourish .ln-h { color: #3f51b5; }

nav ul {
  display: flex;
  gap: 6px;
}

nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.925rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary-dark);
  background: var(--primary-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--primary-glow);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, #111e08 0%, #1E3A0F 50%, #2D5016 100%);
  color: #fff;
  padding: 0;
  text-align: center;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 5, 0.62);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 36px;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-primary,
.hero .btn-outline {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(196, 112, 58, 0.45);
  backdrop-filter: none;
}

.hero .btn-primary:hover,
.hero .btn-outline:hover {
  background: var(--accent-hover);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(196, 112, 58, 0.55);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 125, 50, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.45);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(141, 110, 63, 0.35);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(141, 110, 63, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

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

.btn-outline-green {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-green:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.3);
}

/* ===== Sections ===== */
section {
  padding: 90px 0;
}

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

.bg-warm {
  background: var(--bg-warm);
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section-title p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Features / Services Grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-light);
}

.card:hover::before {
  opacity: 1;
}

.card .icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.card p {
  color: var(--text-light);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ===== About Section ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.975rem;
  line-height: 1.75;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ===== Specialties Tags ===== */
.specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.specialty-tag {
  background: var(--bg-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}

.specialty-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Approach Section ===== */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.approach-column {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.approach-column h3 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
}

.approach-column ul {
  list-style: none;
  padding: 0;
}

.approach-column ul li {
  padding: 9px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.approach-column ul li:last-child {
  border-bottom: none;
}

.approach-column.believe li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.approach-column.dont-believe li::before {
  content: "✕";
  color: #e53935;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Stats ===== */
.stats {
  background: linear-gradient(135deg, #111e08 0%, #2D5016 60%, #3a6520 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats .grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background 0.3s;
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item p {
  margin-top: 0;
  opacity: 0.75;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== Pricing / Packages ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.package-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.package-card.featured {
  border-color: var(--primary);
  border-width: 2px;
  background: linear-gradient(180deg, #f7fbf7 0%, #fff 60%);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 5px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.package-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.package-title {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 700;
}

.package-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.package-features li {
  padding: 9px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.package-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.package-perfect {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 20px;
}

/* ===== Discovery Session ===== */
.discovery-card {
  background: linear-gradient(135deg, #fdf9f4 0%, #fff 100%);
  border: 1.5px solid var(--accent-light);
  border-radius: var(--radius-md);
  padding: 44px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  box-shadow: 0 8px 32px rgba(141, 110, 63, 0.08);
}

.discovery-card h3 {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.discovery-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.discovery-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0;
}

.discovery-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.discovery-card ul li {
  padding: 7px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.discovery-card ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

/* ===== A la Carte ===== */
.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.alacarte-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.alacarte-section h3 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.alacarte-item {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.95rem;
}

.alacarte-item:last-child {
  border-bottom: none;
}

.alacarte-item .price {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 16px;
}

/* ===== FAQ Section ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-item.active .faq-question {
  background: var(--bg-light);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== Contact ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info .info-icon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s;
}

.social-links a.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-links a.facebook {
  background: #1877f2;
  color: #fff;
}

.social-links a.linkedin {
  background: #0a66c2;
  color: #fff;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About page carousel */
.about-carousel {
  position: relative;
  max-width: 780px;
  margin: 40px auto 0;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  border-radius: 14px;
  display: block;
  max-height: 560px;
  object-fit: contain;
  background: #f0ede6;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}

.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

.about-carousel.arrows-visible .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:hover {
  background: #fff;
}

.carousel-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

/* ===== Promise / Highlight Box ===== */
.promise-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px;
  margin-top: 30px;
}

.promise-box h3 {
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 700;
}

.promise-box ul {
  list-style: none;
  padding: 0;
}

.promise-box ul li {
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.promise-box ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #b06030 0%, #C4703A 50%, #d4804a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.06'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.06'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-banner.with-bg {
  background-image: url('../images/hero-banner.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.cta-banner.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(176, 96, 48, 0.88);
  z-index: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-banner p {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(196, 112, 58, 0.45);
}

.cta-banner .btn.btn-green {
  background: var(--primary);
  box-shadow: 0 8px 32px rgba(74, 124, 47, 0.45);
}

.cta-banner .btn.btn-green:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 40px rgba(74, 124, 47, 0.55);
}

.cta-banner .btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 112, 58, 0.55);
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  position: relative;
  background: linear-gradient(150deg, #111e08 0%, #1E3A0F 50%, #2D5016 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header.with-bg {
  background-image: url('../images/hero-banner.jpg');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-header.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(150deg, rgba(8, 16, 4, 0.92) 0%, rgba(20, 40, 8, 0.78) 100%);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== Services Detail ===== */
.service-detail {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--bg);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-detail:hover {
  border-color: var(--primary-light);
  box-shadow: var(--card-shadow);
}

.service-detail h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
}

.service-detail ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* ===== Footer ===== */
footer {
  background: #ffffff;
  color: var(--text-light);
  padding: 56px 0 24px;
  border-top: 1px solid var(--border-light);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-legal h4 {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-legal a {
  display: block;
  color: var(--text-light);
  padding: 5px 0;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--primary-dark);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 44px;
  border-radius: 8px;
  filter: brightness(1.1);
}

.footer-brand .logo-text {
  font-family: 'Cookie', cursive;
  font-weight: 400;
  color: #2D5016;
  font-size: 2.2rem;
}


.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links a {
  display: block;
  color: var(--text-light);
  padding: 5px 0;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--primary);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary-dark);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social a {
  color: var(--primary-dark);
  font-size: 0.875rem;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: all 0.25s;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-light);
  }

  nav ul.open {
    display: flex;
  }

  nav a {
    padding: 12px 16px;
    display: block;
    border-radius: var(--radius-sm);
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .stats .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .alacarte-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 10px;
  }

  .social-links {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .cta-banner h2 {
    font-size: 1.9rem;
  }

  .page-header h1 {
    font-size: 2.1rem;
  }

  .stat-item h3 {
    font-size: 2.4rem;
  }
}
