/* Template 14 - Sage Green / Natural Wellness */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg-cream: #faf8f5;
  --bg-sage-light: #e8efe6;
  --bg-sage: #c5d5c0;
  --bg-sage-dark: #4a5d45;
  --text-forest: #2a3a28;
  --text-body: #3d4d3a;
  --text-muted: #6b7a68;
  --accent-moss: #7a9a6d;
  --accent-gold: #c9a227;
  --border-light: #d4ddd1;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg-cream);
  font-weight: 400;
}

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

/* Header - Natural/Organic Style */
.site-header {
  background: var(--bg-cream);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--bg-sage);
  padding-bottom: 1.25rem;
}

.site-logo a {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-forest);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.site-logo a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--accent-moss);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.site-logo a:hover::after {
  width: 100%;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--accent-moss);
}

/* Hero Section - Organic/Wellness Style */
.section.head {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-sage-light) 100%);
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--bg-sage) 50%, transparent 100%);
}

.section.head h1 {
  font-family: 'Fraunces', serif;
  font-size: 3.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-forest);
  line-height: 1.25;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.section header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section header h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-forest);
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: '~';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-moss);
  font-weight: 300;
}

.section header h2::before {
  left: -2rem;
}

.section header h2::after {
  right: -2rem;
}

.section header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

/* Footer - Earthy Natural */
.footer {
  background: var(--bg-sage-dark);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-moss), var(--accent-gold), var(--accent-moss));
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-moss);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::before {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.3);
}

.footer-bottom {
  text-align: center;
}

.copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes gentleRise {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: gentleRise 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--text-forest);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
