/* ============================================================
   INNEREDGE ACADEMY — NATURE ORGANIC DESIGN SYSTEM
   Forest green + gold + cream with organic shapes
   ============================================================ */

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

:root {
  --green: #2D5016;
  --green-light: #3D6B1E;
  --green-dark: #1E3A0E;
  --green-muted: #4A7A2E;
  --gold: #D4A843;
  --gold-light: #E4C06A;
  --gold-dark: #B8912E;
  --gold-muted: #C9B876;
  --cream: #FAF8F5;
  --cream-dark: #F0ECE5;
  --cream-warm: #F5F0E8;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --earth-brown: #6B4F3A;
  --earth-light: #8B7355;
  --moss: #5A7247;
  --shadow-sm: 0 2px 12px rgba(45,80,22,0.06);
  --shadow: 0 4px 20px rgba(45,80,22,0.08);
  --shadow-lg: 0 12px 40px rgba(45,80,22,0.12);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 50px;
  --radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

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

/* === ORGANIC DECORATIONS === */
.organic-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  z-index: 0;
}

.section { position: relative; }

.section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(45,80,22,0.03);
  pointer-events: none;
  z-index: 0;
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  background: rgba(212,168,67,0.04);
  pointer-events: none;
  z-index: 0;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrapper { display: flex; align-items: center; }
.logo-wrapper img, .logo-wrapper svg { height: 44px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 8px; }

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover {
  background: var(--cream-warm);
  color: var(--green);
}

.main-nav a.active {
  background: rgba(45,80,22,0.08);
  color: var(--green);
  font-weight: 600;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--cream-warm); }

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--green);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; text-align: center; }
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, var(--green-muted) 100%);
  color: var(--white);
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(212,168,67,0.07);
  animation: blobFloat 12s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 450px;
  height: 450px;
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  background: rgba(255,255,255,0.04);
  animation: blobFloat 15s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(3deg); }
  66% { transform: translate(-10px, 10px) rotate(-2deg); }
}

.hero h1 { color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0.92;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-page { padding: 80px 0 60px; }
.hero-page h1 { margin-bottom: 12px; }
.hero-page p { margin-bottom: 0; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover {
  background: var(--cream);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

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

.section-alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-warm) 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto 0;
  border-radius: var(--radius-pill);
}

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,80,22,0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-blob);
  background: rgba(212,168,67,0.06);
  transition: transform var(--transition-slow);
}

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

.card:hover::before { transform: scale(1.5); }

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: border-radius var(--transition-slow);
}

.card:hover .card-icon {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.card-icon svg { width: 28px; height: 28px; fill: var(--white); stroke: var(--white); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* === COURSE CARDS === */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,80,22,0.05);
}

.course-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.course-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.course-card-image::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-blob);
  background: rgba(212,168,67,0.1);
}

.course-card-image svg { width: 64px; height: 64px; opacity: 0.3; fill: var(--gold); position: relative; z-index: 1; }

.course-card-body { padding: 28px; }
.course-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.course-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.course-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.course-meta svg { width: 16px; height: 16px; fill: var(--gold); }

.course-price {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 16px;
}

.course-curriculum { margin: 20px 0; }
.course-curriculum h4 { font-size: 1rem; margin-bottom: 12px; color: var(--green); }
.course-curriculum ul { list-style: none; padding: 0; }
.course-curriculum li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
}

.course-curriculum li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--gold);
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  transition: transform var(--transition);
}

.stat-item:hover { transform: scale(1.05); }

.stat-item h3 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item p { font-size: 0.95rem; opacity: 0.85; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  transition: border-radius var(--transition-slow);
}

.testimonial-card:hover .testimonial-avatar {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.testimonial-info strong { display: block; color: var(--green); font-size: 0.95rem; }
.testimonial-info span { font-size: 0.85rem; color: var(--text-light); }

/* === PRICING === */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-blob);
  background: rgba(45,80,22,0.03);
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(212,168,67,0.06) 100%);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  padding: 6px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 { margin-bottom: 8px; }

.pricing-card .price {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--green);
  font-weight: 700;
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: sans-serif;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-features { list-style: none; text-align: left; margin: 24px 0; }

.pricing-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-features li:last-child { border: none; }

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  background: rgba(45,80,22,0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.pricing-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 21px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; }

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.95rem;
}

.comparison-table th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td:first-child { text-align: left; font-weight: 500; }

.comparison-table tr:hover { background: rgba(45,80,22,0.02); }

.comparison-table .check { color: var(--green); font-weight: 700; font-size: 1.2rem; }
.comparison-table .dash { color: var(--text-light); }

@media (max-width: 768px) {
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

/* === BLOG === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,80,22,0.04);
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--green), var(--green-light), var(--green-muted));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 180px;
  height: 180px;
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  background: rgba(212,168,67,0.1);
}

.blog-card-image svg { width: 48px; height: 48px; opacity: 0.2; fill: var(--gold); position: relative; z-index: 1; }

.blog-card-body { padding: 28px; }

.blog-date {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.read-more {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more svg { width: 16px; height: 16px; fill: var(--green); transition: transform var(--transition); }
.read-more:hover svg { transform: translateX(6px); }

/* Blog article content */
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article p { margin-bottom: 20px; color: var(--text-light); font-size: 1.02rem; line-height: 1.85; }
.blog-article h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.blog-article h3 { margin: 32px 0 12px; }

.related-articles { margin-top: 64px; padding-top: 48px; border-top: 2px solid var(--cream-dark); }
.related-articles h3 { text-align: center; margin-bottom: 32px; font-size: 1.4rem; }

/* === CONTACT === */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-blob);
  background: rgba(212,168,67,0.06);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,168,67,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 250px;
  height: 250px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(212,168,67,0.08);
}

.contact-info-card h3 { color: var(--gold); margin-bottom: 28px; }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; position: relative; z-index: 1; }
.contact-info-item svg { width: 24px; height: 24px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item p { font-size: 0.95rem; line-height: 1.6; }
.contact-info-item a { color: var(--gold-light); }
.contact-info-item a:hover { color: var(--white); }

.hours-list { margin-top: 8px; }
.hours-list li {
  list-style: none;
  padding: 6px 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}

/* Map container */
.map-container { position: relative; z-index: 1; }

/* === FAQ === */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--green);
  font-size: 1rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: Georgia, serif;
  transition: background var(--transition);
  border-radius: var(--radius);
}

.faq-question:hover { background: rgba(45,80,22,0.02); }

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

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

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

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

/* === TEAM === */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  margin: 24px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  border: 4px solid var(--gold);
  transition: border-radius var(--transition-slow);
}

.team-card:hover .team-avatar {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; padding: 0 20px; }
.team-card .team-role { color: var(--gold-dark); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; padding: 0 20px; }

/* === TIMELINE === */
.timeline { position: relative; padding: 32px 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}

.timeline-item {
  display: flex;
  margin-bottom: 44px;
  position: relative;
}

.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: 52%; }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: 52%; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  transition: border-radius var(--transition-slow);
}

.timeline-item:hover .timeline-dot {
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.timeline-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.timeline-item:hover .timeline-content { transform: translateY(-3px); }

.timeline-content h4 { color: var(--gold-dark); font-size: 0.9rem; margin-bottom: 4px; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-light); }

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) { padding-left: 52px; padding-right: 0; justify-content: flex-start; }
  .timeline-dot { left: 20px; }
}

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(45,80,22,0.03);
}

.value-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.value-card svg { width: 48px; height: 48px; fill: var(--green); margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-muted) 100%);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(212,168,67,0.06);
  animation: blobFloat 14s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
  background: rgba(255,255,255,0.03);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { max-width: 560px; margin: 0 auto 36px; opacity: 0.92; font-size: 1.05rem; position: relative; z-index: 1; }

/* === FOOTER === */
.site-footer {
  background: linear-gradient(180deg, var(--green-dark) 0%, #162B08 60%, var(--earth-brown) 100%);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(212,168,67,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 16px; }
.footer-brand .logo-wrapper { margin-bottom: 8px; }

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 22px;
  font-family: Georgia, serif;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: all var(--transition);
  border-radius: 4px;
}

.footer-col a:hover { color: var(--gold); transform: translateX(4px); }

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

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.footer-social svg { width: 18px; height: 18px; fill: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === THANK YOU === */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.thankyou-icon {
  width: 90px;
  height: 90px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--shadow);
}

.thankyou-icon svg { width: 40px; height: 40px; fill: var(--white); }

/* === LEGAL === */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 44px 0 16px; }
.legal-content h3 { font-size: 1.15rem; margin: 32px 0 12px; }
.legal-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.8; }
.legal-content ul { margin: 12px 0 20px 24px; color: var(--text-light); }
.legal-content li { padding: 5px 0; }

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

/* === UTILITY === */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-48 { gap: 48px; }

/* Mission/Vision split */
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 768px) { .mission-vision { grid-template-columns: 1fr; } }

.mv-card {
  padding: 44px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.mv-card::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-blob);
  background: rgba(45,80,22,0.04);
}

.mv-card:hover { transform: translateY(-4px); }

.mv-card h3 { margin-bottom: 16px; }
.mv-card p { color: var(--text-light); line-height: 1.8; }

/* Two col layout */
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* === SECTION GRADIENT TRANSITIONS === */
.section + .section-alt {
  margin-top: -1px;
}

.section-alt + .section {
  margin-top: -1px;
}

/* Gentle gradient between content sections */
.section:not(.section-dark):not(.section-alt)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(240,236,229,0.3));
  pointer-events: none;
  z-index: 0;
}