/* Template 11 - Sunset Warm / Terracotta Modern */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --sunset-cream: #fef7ed;
  --sunset-sand: #fde8d0;
  --sunset-peach: #f5c4a8;
  --sunset-terracotta: #c2714f;
  --sunset-rust: #a4522a;
  --sunset-mahogany: #7a3921;
  --sunset-dark: #3d1d10;
  --olive-accent: #6b7c5a;
  --olive-light: #9aab87;
}

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

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

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

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

/* Header - Warm Split Style */
.site-header {
  background: var(--sunset-cream);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunset-terracotta) 0%, var(--sunset-rust) 50%, var(--olive-accent) 100%);
}

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

.site-logo a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--sunset-mahogany);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}

.site-logo a::after {
  content: '.';
  color: var(--sunset-terracotta);
  font-size: 2.5rem;
  line-height: 0;
}

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

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

.site-nav li {
  position: relative;
}

.site-nav li::after {
  content: '/';
  color: var(--sunset-peach);
  margin: 0 0.25rem;
  font-weight: 300;
}

.site-nav li:last-child::after {
  display: none;
}

.site-nav a {
  color: var(--sunset-mahogany);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sunset-terracotta);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.site-nav a:hover::before {
  width: 80%;
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: left;
  position: relative;
  background: linear-gradient(135deg, var(--sunset-cream) 0%, var(--sunset-sand) 100%);
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--sunset-peach);
  opacity: 0.3;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.section.head .container {
  position: relative;
  z-index: 1;
}

.section.head h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.75rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--sunset-dark);
  line-height: 1.15;
  max-width: 800px;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--sunset-mahogany);
  max-width: 600px;
  font-weight: 400;
  line-height: 1.8;
}

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

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

.section header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--sunset-dark);
}

.section header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--sunset-terracotta);
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

/* Footer - Warm Layered Style */
.footer {
  background: var(--sunset-dark);
  padding: 0;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--sunset-terracotta), var(--sunset-rust), var(--sunset-mahogany));
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 0 3rem;
}

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

.footer-tagline {
  color: var(--sunset-sand);
  line-height: 1.9;
  font-size: 1rem;
  opacity: 0.9;
}

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

.footer-links a {
  color: var(--sunset-sand);
  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;
  color: var(--sunset-terracotta);
  transition: all 0.3s ease;
}

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

.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 196, 168, 0.15);
  background: rgba(0, 0, 0, 0.2);
}

.copyright a {
  color: var(--sunset-peach);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes warmGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(194, 113, 79, 0.2); }
  50% { box-shadow: 0 0 40px rgba(194, 113, 79, 0.4); }
}

.fade-in {
  opacity: 0;
  transform: translateX(-20px);
  animation: warmSlideIn 0.8s ease forwards;
}

@keyframes warmSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--sunset-mahogany);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
