/* Template 6 - Elegant Luxury / Warm Noir */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;500;700&display=swap");

:root {
  --color-noir: #1a1a1a;
  --color-charcoal: #2a2a2a;
  --color-taupe: #3d3a36;
  --color-gold: #c9a962;
  --color-gold-light: #ddc89b;
  --color-cream: #f5f3ef;
  --color-warm-white: #faf9f7;
  
  --bg-primary: var(--color-noir);
  --bg-secondary: var(--color-charcoal);
  --bg-accent: var(--color-taupe);
  --text-primary: var(--color-cream);
  --text-secondary: #b8b5ae;
  --text-muted: #7a7772;
  --accent: var(--color-gold);
  --accent-light: var(--color-gold-light);
}

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

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

body {
  font-family: "Lato", sans-serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 300;
  overflow-x: hidden;
}

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

/* Header - Elegant Centered with Gold Accents */
.site-header {
  background: transparent;
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.site-header.scrolled::before {
  opacity: 0.98;
}

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

.site-logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.site-logo a:hover {
  color: var(--accent-light);
  letter-spacing: 0.2em;
}

.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.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

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

.site-nav a::before {
  left: 50%;
}

.site-nav a::after {
  right: 50%;
}

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

.site-nav a:hover::before,
.site-nav a:hover::after {
  width: 50%;
}

/* Hero Section - Luxurious Centered Typography */
.section.head {
  padding: 10rem 0 8rem;
  text-align: center;
  position: relative;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.section.head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.section.head p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.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(--text-primary);
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
}

.section header h2::before,
.section header h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--accent);
}

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

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

.section header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* Footer - Elegant Three Column */
.footer {
  background: var(--bg-secondary);
  padding: 0;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  transition: all 0.4s ease;
}

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

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.fade-in {
  opacity: 0;
  animation: elegantFade 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.35s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }

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(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 500;
}
