/* =================================================================
   SHEEN & SHADE - NATURE ORGANIC DESIGN SYSTEM
   Rhetorik & Präsentationstraining Berlin
   ================================================================= */

/* =================================================================
   CSS RESET & BASE STYLES
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #2C3E2C;
  background-color: #FAF8F3;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   NATURE ORGANIC COLOR PALETTE
   ================================================================= */

:root {
  /* Earth Tones */
  --color-primary: #4A6741;
  --color-secondary: #8B7355;
  --color-accent: #9CAF88;
  --color-earth: #D4C5B0;
  --color-sage: #A8B89F;
  --color-forest: #2C3E2C;
  --color-sand: #E8DCC8;
  --color-clay: #B89968;
  --color-moss: #6B7C5D;
  --color-cream: #FAF8F3;
  --color-bark: #4D3D30;
  
  /* Functional Colors */
  --color-text: #2C3E2C;
  --color-text-light: #5A6B52;
  --color-bg: #FAF8F3;
  --color-bg-alt: #F0EDE5;
  --color-border: #D4C5B0;
  --color-success: #6B8E5D;
  --color-error: #A86850;
  
  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
  
  /* Typography Scale */
  --font-xs: 14px;
  --font-sm: 16px;
  --font-md: 18px;
  --font-lg: 24px;
  --font-xl: 32px;
  --font-xxl: 48px;
  
  /* Organic Border Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-organic: 40% 60% 50% 50% / 60% 40% 60% 40%;
  
  /* Shadows - Soft & Natural */
  --shadow-sm: 0 2px 8px rgba(44, 62, 44, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 62, 44, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 62, 44, 0.16);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =================================================================
   TYPOGRAPHY - ORGANIC & NATURAL
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-xxl);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
}

h2 {
  font-size: var(--font-xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--font-lg);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: var(--font-md);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  font-size: var(--font-sm);
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: var(--font-lg);
  font-style: italic;
  color: var(--color-primary);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  position: relative;
}

blockquote:before {
  content: '"';
  font-size: 80px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: var(--color-accent);
  opacity: 0.3;
}

/* =================================================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   ================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

/* Section Spacing - Organic Breathing Room */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

section {
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-lg);
  position: relative;
}

/* =================================================================
   HEADER - ORGANIC & FLOWING
   ================================================================= */

header {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand) 100%);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo img:hover {
  transform: scale(1.05);
}

/* Main Navigation - Desktop */
.main-nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--color-forest);
  font-weight: 500;
  font-size: var(--font-sm);
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--color-primary);
  background-color: rgba(156, 175, 136, 0.15);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 80%;
}

/* =================================================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2000;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.mobile-menu-toggle:hover {
  background: var(--color-forest);
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-forest) 100%);
  z-index: 1999;
  padding: var(--space-xxl) var(--space-lg);
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: white;
  color: var(--color-primary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xxl);
}

.mobile-nav a {
  color: white;
  font-size: var(--font-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: var(--color-accent);
  transform: translateX(10px);
}

/* =================================================================
   BUTTONS - ORGANIC SHAPES
   ================================================================= */

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-sm);
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-forest) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* =================================================================
   HERO SECTIONS - ORGANIC & INSPIRING
   ================================================================= */

.hero {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-earth) 50%, var(--color-sage) 100%);
  padding: var(--space-xxl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 175, 136, 0.3) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.2) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(20px, 30px) rotate(3deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subheadline {
  font-size: var(--font-lg);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.trust-indicator {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  font-weight: 500;
  margin-top: var(--space-md);
}

.hero-small {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-earth) 100%);
  padding: var(--space-xxl) 0;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: var(--space-xxl);
}

.hero-small h1 {
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.hero-small p {
  font-size: var(--font-md);
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* =================================================================
   CARD LAYOUTS - ORGANIC SHAPES & TEXTURES
   ================================================================= */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.team-member,
.resource-card,
.package-card,
.contact-card,
.category-card,
.guide-card,
.story-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  margin-bottom: var(--space-md);
  border: 2px solid var(--color-border);
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.resource-card:hover,
.package-card:hover,
.contact-card:hover,
.category-card:hover,
.guide-card:hover,
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.benefit-card::before,
.service-card::before,
.value-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: -1;
}

.benefit-card:hover::before,
.service-card:hover::before,
.value-card:hover::before {
  opacity: 0.3;
}

/* =================================================================
   GRID LAYOUTS - FLEXBOX ONLY
   ================================================================= */

.benefits-grid,
.services-grid,
.values-grid,
.team-grid,
.stats-grid,
.resources-grid,
.guides-grid,
.categories-grid,
.packages-grid,
.contact-grid,
.stories-grid,
.services-preview {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.benefit-card,
.service-card,
.value-card,
.team-member,
.resource-card,
.guide-card,
.category-card,
.package-card,
.contact-card,
.story-card,
.service-preview-card {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Content Grid - Flexible Layout */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

/* =================================================================
   TESTIMONIALS - READABLE & TRUSTWORTHY
   ================================================================= */

.testimonials {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  padding: var(--space-xxl) 0;
  border-radius: var(--radius-lg);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.testimonial-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1 1 400px;
  position: relative;
  border-left: 4px solid var(--color-accent);
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-card .quote {
  font-size: var(--font-md);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: var(--space-xs);
}

.testimonial-card .position {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.trust-badges {
  text-align: center;
  font-size: var(--font-sm);
  color: var(--color-text-light);
  margin-top: var(--space-lg);
}

/* =================================================================
   STATS SECTION - NATURE-INSPIRED
   ================================================================= */

.stats {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-forest) 100%);
  padding: var(--space-xxl) 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-organic);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: space-around;
  position: relative;
  z-index: 10;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.stat-number {
  font-size: var(--font-xxl);
  font-weight: 700;
  color: white;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
  font-size: var(--font-sm);
  color: var(--color-sand);
  font-weight: 500;
}

/* =================================================================
   PROCESS & STEPS - ORGANIC FLOW
   ================================================================= */

.process-steps,
.steps,
.phases {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.step,
.phase {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: calc(var(--space-xl) + 40px);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition-smooth);
  margin-bottom: var(--space-md);
}

.step:hover,
.phase:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-sage) 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-md);
  box-shadow: var(--shadow-sm);
}

.step h3,
.phase h3 {
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.step p,
.phase p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* =================================================================
   TEXT & IMAGE SECTIONS - ALIGNED & BALANCED
   ================================================================= */

.text-image-section {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-xxl);
}

.text-image-section > * {
  flex: 1 1 400px;
}

.text-image-section img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* =================================================================
   FEATURE ITEMS - CLEAN & ORGANIZED
   ================================================================= */

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  transition: var(--transition-smooth);
  margin-bottom: var(--space-md);
}

.feature-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* =================================================================
   SERVICE DETAILS - COMPREHENSIVE LAYOUTS
   ================================================================= */

.service-detail {
  background: white;
  padding: var(--space-xxl);
  margin-bottom: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
}

.service-detail h2 {
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.tagline {
  font-size: var(--font-md);
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.price {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.savings {
  display: inline-block;
  background: var(--color-success);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  margin-top: var(--space-xs);
}

/* =================================================================
   LISTS - ORGANIC BULLET POINTS
   ================================================================= */

ul {
  list-style: none;
  margin-bottom: var(--space-md);
}

ul li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
}

ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: var(--font-lg);
}

/* =================================================================
   TIMELINE - ORGANIC PROGRESSION
   ================================================================= */

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
  border-left: 3px solid var(--color-accent);
}

.milestone {
  position: relative;
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.milestone::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 8px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

/* =================================================================
   CTA BANNERS - COMPELLING & ORGANIC
   ================================================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-accent) 100%);
  padding: var(--space-xxl);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: var(--radius-organic);
  animation: float 15s ease-in-out infinite;
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 10;
}

.cta-banner p {
  color: white;
  font-size: var(--font-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 10;
}

.cta-center {
  text-align: center;
  margin-top: var(--space-xl);
}

.guarantee {
  font-size: var(--font-xs);
  color: rgba(255, 255, 255, 0.9);
  margin-top: var(--space-md);
}

/* =================================================================
   FORMS - ORGANIC & USER-FRIENDLY
   ================================================================= */

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--font-sm);
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--color-cream);
  margin-bottom: var(--space-md);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.2);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.note {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.security-note {
  font-size: var(--font-xs);
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--space-md);
}

/* =================================================================
   FOOTER - GROUNDED & NATURAL
   ================================================================= */

footer {
  background: linear-gradient(180deg, var(--color-forest) 0%, var(--color-bark) 100%);
  color: var(--color-sand);
  padding: var(--space-xxl) 0 var(--space-lg);
  margin-top: var(--space-xxl);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h4 {
  color: white;
  font-size: var(--font-md);
  margin-bottom: var(--space-md);
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-col p,
.footer-col a {
  color: var(--color-sand);
  font-size: var(--font-sm);
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding-left: 0;
  margin-bottom: var(--space-xs);
}

.footer-col ul li::before {
  display: none;
}

.footer-col a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 197, 176, 0.3);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--color-sand);
  font-size: var(--font-xs);
  transition: var(--transition-smooth);
}

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

/* =================================================================
   COOKIE CONSENT BANNER - ORGANIC & COMPLIANT
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-primary) 100%);
  padding: var(--space-lg);
  box-shadow: 0 -4px 16px rgba(44, 62, 44, 0.2);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--color-accent);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: white;
  font-size: var(--font-sm);
}

.cookie-text h3 {
  color: white;
  margin-bottom: var(--space-sm);
  font-size: var(--font-md);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 44, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-lg);
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  padding: var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cookie-category h4 {
  margin-bottom: var(--space-xs);
}

.cookie-toggle {
  width: 60px;
  height: 30px;
  background: var(--color-border);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-toggle.active {
  background: var(--color-accent);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle.active::after {
  left: 33px;
}

/* =================================================================
   LEGAL PAGES - CLEAN & READABLE
   ================================================================= */

.legal-hero {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-earth) 100%);
  padding: var(--space-xxl) 0;
  text-align: center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: var(--space-xxl);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.legal-content h2 {
  color: var(--color-forest);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-border);
}

.legal-content h3 {
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

/* =================================================================
   THANK YOU PAGE - CELEBRATORY & ORGANIC
   ================================================================= */

.thank-you-hero {
  text-align: center;
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xxl);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--color-success);
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-lg);
  animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmation {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.expected-response {
  text-align: center;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-lg);
}

.stats-mini {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.stats-mini span {
  font-weight: 600;
  color: var(--color-primary);
}

/* =================================================================
   SPECIAL SECTIONS
   ================================================================= */

.section-subtitle {
  text-align: center;
  font-size: var(--font-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.large-quote {
  font-size: var(--font-xl);
  text-align: center;
  font-style: italic;
  color: var(--color-primary);
  margin: var(--space-xxl) 0;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
  border-radius: var(--radius-lg);
}

/* Pillars Grid for Methodology */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.pillar {
  flex: 1 1 250px;
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid var(--color-border);
}

.pillar:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.pillar-letter {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-sage) 100%);
  color: white;
  font-size: var(--font-xl);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-md);
}

/* Comparison Table */
.comparison-table {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-md);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span:first-child {
  color: var(--color-success);
  font-weight: 600;
}

.comparison-row span:last-child {
  color: var(--color-text-light);
}

/* Stats Overlay */
.stats-overlay {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-sm);
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile toggle */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: var(--font-xl);
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: var(--font-lg);
  }
  
  /* Container padding */
  .container {
    padding: 0 var(--space-md);
  }
  
  /* Section padding */
  section {
    padding: var(--space-xl) 0;
  }
  
  /* Hero adjustments */
  .hero {
    min-height: 500px;
    padding: var(--space-xl) 0;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Text-image sections stack */
  .text-image-section {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .values-grid,
  .team-grid,
  .resources-grid,
  .guides-grid,
  .categories-grid,
  .packages-grid,
  .contact-grid,
  .stories-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .team-member,
  .resource-card,
  .guide-card,
  .category-card,
  .package-card,
  .contact-card,
  .story-card {
    flex: 1 1 100%;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Process steps */
  .step,
  .phase {
    padding-left: var(--space-lg);
  }
  
  .step-number {
    left: calc(-1 * var(--space-sm));
    width: 40px;
    height: 40px;
    font-size: var(--font-sm);
  }
  
  /* Comparison table */
  .comparison-row {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  /* Smaller spacing on mobile */
  :root {
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
  }
  
  /* Typography */
  .hero h1 {
    font-size: 28px;
  }
  
  /* Buttons */
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-xs);
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 100%;
  }
}

/* =================================================================
   ANIMATIONS & INTERACTIONS
   ================================================================= */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* =================================================================
   END OF STYLES
   ================================================================= */