:root {
  /* Color Palette - Sophisticated, Warm, and Empowering */
  --color-primary: #5D4352; /* Deep Plum/Mauve */
  --color-secondary: #D4A373; /* Muted Gold/Sand */
  --color-accent: #E9EDC9; /* Soft Sage */
  --color-bg: #FAFAF9; /* Off-white Parchment */
  --color-text: #2D2424; /* Soft Charcoal */
  --color-text-light: #7A6F6F;
  --color-white: #FFFFFF;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Effects */
  --shadow-soft: 0 10px 30px rgba(93, 67, 82, 0.08);
  --border-radius: 4px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout Containers */
.flyer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 0 100px rgba(0,0,0,0.05);
}

/* Decorative Elements */
.bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm10-46c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66 71c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM57 7c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-51 8c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm50 31c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM8 75c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm59 6c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm32-5c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-58-1c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm-36 4c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm42 8c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm33-41c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM41 71c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm51-64c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM10 19c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm20 36c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM61 82c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%235d4352' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Header & Hero */
header {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--space-sm);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin: 0;
  color: var(--color-primary);
  line-height: 1.1;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  margin-top: var(--space-sm);
  color: var(--color-text-light);
}

/* Content Sections */
section {
  padding: var(--space-lg) var(--space-md);
  position: relative;
  z-index: 1;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.image-column {
  position: relative;
}

.placeholder-image.portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--color-accent);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.image-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 40%;
  background-color: var(--color-secondary);
  z-index: -1;
  opacity: 0.3;
}

/* Benefits Styling */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
  font-weight: 300;
}

.benefit-item .placeholder-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
  color: var(--color-secondary);
}

/* Call to Action Areas */
.cta-block {
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xl);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

.cta-tagline {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 1.1rem;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-md);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  background-color: #c49263;
}

/* Typography Helpers */
.text-serif { font-family: var(--font-display); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }

.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-light); }

.h2-display {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.h3-display {
  font-size: 1.5rem;
}

.p-large {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.p-constrained {
  max-width: 600px;
  margin: 1rem auto;
}

.info-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  text-align: left;
}

.info-label {
  margin: 0;
  font-weight: 600;
  color: var(--color-primary);
}

.info-value {
  margin: 0;
  color: var(--color-text-light);
}

.footer-simple {
  background-color: var(--color-bg);
  padding: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.8rem;
}

.container-footer {
  margin-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  
  .image-column {
    order: -1;
  }
}

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

.animate {
  animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Placeholder Overrides */
.placeholder-image {
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.placeholder-image::after {
  content: attr(data-label);
}
