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

:root {
  --color-cream: #faf7f2;
  --color-sand: #e8dfd1;
  --color-terracotta: #c67b5c;
  --color-rust: #9a5a42;
  --color-deep-brown: #3d2c29;
  --color-charcoal: #2a2321;
  --color-gold-accent: #d4a855;

  --bg-primary: var(--color-cream);
  --bg-secondary: var(--color-sand);
  --text-primary: var(--color-charcoal);
  --text-secondary: #5a4a42;
  --text-muted: #8b7b6b;
  --accent: var(--color-terracotta);
  --accent-hover: var(--color-rust);
}

* {
  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.7;
  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 - Elegant Top Bar Style */
.site-header {
  background: var(--color-charcoal);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(61, 44, 41, 0.15);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212, 168, 85, 0.3);
}

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

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

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

.site-nav li {
  position: relative;
}

.site-nav li::after {
  content: "|";
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
  font-size: 0.8rem;
}

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

.site-nav a {
  color: var(--color-sand);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
}

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

/* Hero Section - Classic Editorial */
.section.head {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--color-terracotta);
  opacity: 0.5;
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-deep-brown);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeUp 0.8s ease-out;
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.section header::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-terracotta);
  margin: 1.5rem auto 0;
}

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

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

/* Footer - Warm & Inviting */
.footer {
  background: var(--color-charcoal);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

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

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  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: var(--color-sand);
  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: var(--color-sand);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold-accent);
  transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
  width: 100%;
}

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

.copyright,
.copyright a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

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

.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; }
.fade-in:nth-child(4) { 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: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--color-deep-brown);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
