/* Template 9 - Forest Moss / Organic Natural */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --moss-light: #e8efe4;
  --sage-green: #9caa8e;
  --forest-green: #4a5d4c;
  --deep-evergreen: #2d3a2e;
  --bark-brown: #5c4a3d;
  --cream-white: #fdfcf8;
  --terracotta: #c67d5e;
  --golden-hour: #d4a574;
}

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

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

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.75;
  color: var(--deep-evergreen);
  background: var(--cream-white);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Organic flowing style */
.site-header {
  background: var(--cream-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage-green), transparent);
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.site-logo a {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest-green);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.site-logo a::before,
.site-logo a::after {
  content: '—';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-green);
  transition: all 0.3s ease;
}

.site-logo a::before {
  left: -30px;
}

.site-logo a::after {
  right: -30px;
}

.site-logo a:hover {
  color: var(--terracotta);
}

.site-logo a:hover::before,
.site-logo a:hover::after {
  color: var(--terracotta);
}

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

.site-nav a {
  color: var(--bark-brown);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a::after {
  content: '•';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  color: var(--terracotta);
  transition: transform 0.3s ease;
}

.site-nav a:hover {
  color: var(--forest-green);
}

.site-nav a:hover::after {
  transform: translateX(-50%) scale(1);
}

/* Hero Section - Nature-inspired */
.section.head {
  padding: 7rem 0 6rem;
  text-align: center;
  background: linear-gradient(180deg, var(--moss-light) 0%, var(--cream-white) 100%);
  position: relative;
}

.section.head::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 80"><path fill="%23fdfcf8" d="M0,80 C300,20 900,20 1200,80 L1200,80 L0,80 Z"/></svg>') center bottom/cover no-repeat;
}

.section.head h1 {
  font-family: 'Crimson Pro', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-evergreen);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section.head h1::first-letter {
  font-size: 4.5rem;
  color: var(--terracotta);
}

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

/* Section Styling */
.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: 'Crimson Pro', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--deep-evergreen);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section header h2::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--golden-hour);
}

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

/* Footer - Earthy and grounded */
.footer {
  background: var(--deep-evergreen);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green), var(--terracotta), var(--golden-hour));
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 3rem;
}

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

.footer-tagline {
  color: var(--sage-green);
  line-height: 1.9;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--moss-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--golden-hour);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(156, 170, 142, 0.2);
}

.copyright a {
  color: var(--sage-green);
  font-size: 0.85rem;
}

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

.fade-in {
  opacity: 0;
  animation: growIn 0.8s 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: 'Crimson Pro', serif;
  font-size: 1.6rem;
  color: var(--deep-evergreen);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
