/* Template 15 - Burgundy Wine / Luxury Classic */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg-ivory: #fdfbf7;
  --bg-champagne: #f5f0e8;
  --bg-wine: #722f37;
  --bg-burgundy: #5a252b;
  --text-dark: #1f1a1b;
  --text-body: #3a3234;
  --text-muted: #6d6163;
  --accent-gold: #c9a962;
  --accent-rose: #b8707a;
  --border-light: #e5ddd4;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  line-height: 1.8;
  color: var(--text-body);
  background: var(--bg-ivory);
  font-weight: 400;
}

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

/* Header - Luxury/Wine Style */
.site-header {
  background: var(--bg-wine);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem 0;
  position: relative;
}

.site-logo {
  text-align: center;
  margin-bottom: 1.25rem;
}

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

.site-logo a:hover {
  text-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
}

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

.site-nav li {
  position: relative;
}

.site-nav li:not(:last-child)::after {
  content: '~';
  color: rgba(255, 255, 255, 0.25);
  margin: 0 1.5rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
}

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

/* Hero Section - Elegant Wine Style */
.section.head {
  padding: 7rem 0;
  text-align: center;
  background: var(--bg-champagne);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section.head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
  font-style: italic;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.section.head p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* Section Styling */
.section {
  padding: 5rem 0;
  background: var(--bg-ivory);
}

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

.section header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--bg-wine);
  font-style: italic;
  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-gold);
}

.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: 550px;
  margin: 0 auto;
}

/* Footer - Luxury Wine */
.footer {
  background: var(--bg-burgundy);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--accent-gold);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  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.65);
  line-height: 1.9;
  font-style: italic;
}

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

.footer-links li:not(:last-child)::after {
  content: '/';
  color: rgba(255, 255, 255, 0.25);
  margin: 0 1rem;
}

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

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

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

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

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

.fade-in {
  opacity: 0;
  animation: elegantFade 0.8s ease forwards;
}

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

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.65rem;
  color: var(--bg-wine);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
  font-style: italic;
}
