/* Template 2 - Warm Earth Tones / Organic Minimalism */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  --color-cream: #faf8f5;
  --color-sand: #e8e0d5;
  --color-terracotta: #c4704b;
  --color-olive: #5c6b4d;
  --color-charcoal: #2d2d2d;
  --color-warm-gray: #7a7267;
  --color-gold: #b8965a;
  
  --bg-primary: var(--color-cream);
  --bg-secondary: #f5f2ed;
  --text-primary: var(--color-charcoal);
  --text-secondary: var(--color-warm-gray);
  --text-muted: #9a928a;
  --accent: var(--color-terracotta);
  --accent-secondary: var(--color-olive);
}

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

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

body {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Top Bar with Centered Logo */
.site-header {
  background: var(--bg-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-sand);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold), var(--color-olive));
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 1rem;
}

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.4s ease;
}

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

.site-nav {
  margin-top: 1rem;
}

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

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

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}

.site-nav a:hover {
  color: var(--text-primary);
}

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

/* Hero Section - Left Aligned with Large Typography */
.section.head {
  padding: 7rem 0 6rem;
  text-align: left;
  position: relative;
  background: var(--bg-secondary);
}

.section.head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sand) 0%, transparent 100%);
  opacity: 0.5;
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.15;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

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

.section header {
  text-align: left;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-sand);
}

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
}

/* Footer - Horizontal Layout with Warm Accent */
.footer {
  background: var(--color-charcoal);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.4s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
}

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

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

.fade-in {
  opacity: 0;
  animation: fadeUp 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: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
