/* Template 8 - Nature Organic / Earthy Zen */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --earth-dark: #2d2a24;
  --earth-brown: #5c4d3c;
  --earth-tan: #a89070;
  --earth-sand: #d4c4a8;
  --earth-cream: #f5f0e6;
  --earth-white: #fdfcfa;
  --leaf-green: #4a6741;
  --leaf-light: #7a9970;
  --moss: #3d4a35;
  --stone: #8b8477;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.8;
  color: var(--earth-dark);
  background: var(--earth-cream);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Natural Organic Style */
.site-header {
  background: var(--earth-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(45, 42, 36, 0.08);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--leaf-green), transparent);
  border-radius: 2px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.site-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--earth-brown);
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  position: relative;
}

.site-logo a::before {
  content: '~';
  position: absolute;
  left: -1.5rem;
  color: var(--leaf-green);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s ease;
}

.site-logo a::after {
  content: '~';
  position: absolute;
  right: -1.5rem;
  color: var(--leaf-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.site-logo a:hover::before,
.site-logo a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

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

.site-nav a {
  color: var(--earth-brown);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--leaf-green);
  border-radius: 1px;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

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

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

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

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 103, 65, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(92, 77, 60, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section.head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--earth-dark);
  letter-spacing: 3px;
  line-height: 1.3;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--earth-brown);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.9;
}

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

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

.section header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--earth-dark);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

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

.section header h2::before {
  right: calc(100% + 1rem);
}

.section header h2::after {
  left: calc(100% + 1rem);
}

.section header p {
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf-green), var(--leaf-light), var(--earth-tan), var(--leaf-light), var(--leaf-green));
}

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

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

.footer-tagline {
  color: var(--earth-sand);
  line-height: 1.9;
  font-size: 1rem;
  font-weight: 300;
}

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

.footer-links a {
  color: var(--earth-sand);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
}

.footer-links a::before {
  content: '•';
  position: absolute;
  left: -1rem;
  color: var(--leaf-light);
  opacity: 0;
  transition: all 0.4s ease;
}

.footer-links a:hover {
  color: var(--leaf-light);
}

.footer-links a:hover::before {
  opacity: 1;
}

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

.copyright a {
  color: var(--stone);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Animations */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: organicFadeIn 1s ease forwards;
}

@keyframes organicFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--earth-brown);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 1px;
}
