/* Ola Esmeralda - Terra Warm Palette */
:root {
  --primary: #8b4513;
  --secondary: #a65d2e;
  --accent: #deb887;
  --background: #fdfaf6;
  --text: #3d2009;
  --white: #ffffff;
  --light-gray: #f5f2ee;
  --border: rgba(139, 69, 19, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

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

address {
  font-style: normal;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--secondary);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
}

.btn-link {
  color: var(--secondary);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

.btn-link:hover {
  color: var(--primary);
}

/* Header */
.header {
  background: var(--primary);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--background) 0%, var(--white) 100%);
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

/* Page Hero */
.page-hero {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Program Hero */
.program-hero {
  background: var(--primary);
  padding: 40px 0 60px;
}

.program-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.program-tagline {
  color: var(--accent);
  font-size: 1.3rem;
  font-style: italic;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--accent);
}

/* Sections */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--background);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text);
  opacity: 0.8;
  margin-top: 12px;
  margin-bottom: 48px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
}

/* Intro Section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  text-align: left;
  margin-bottom: 24px;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text .btn-secondary {
  margin-top: 16px;
}

.intro-image img {
  border-radius: 12px;
}

/* Programs Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.12);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-content {
  padding: 24px;
}

.program-content h3 {
  margin-bottom: 12px;
}

.program-content p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

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

/* Programs Full Grid */
.programs-full-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.program-card-full {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.program-card-full:nth-child(even) {
  direction: rtl;
}

.program-card-full:nth-child(even) > * {
  direction: ltr;
}

.program-card-full .program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.program-card-full .program-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-card-full h2 {
  text-align: left;
  margin-bottom: 8px;
}

.program-duration {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Program Intro Grid */
.program-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.program-intro-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.program-intro-image img {
  border-radius: 12px;
  position: sticky;
  top: 100px;
}

/* Program Info Grid */
.program-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.program-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.program-info-card p {
  font-size: 0.9rem;
}

/* Journey Timeline */
.journey-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.journey-week {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
}

.journey-week:last-child {
  margin-bottom: 0;
}

.week-number {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.journey-week h3 {
  margin-bottom: 12px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  padding: 24px;
}

.benefit-item h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* Ideal Content */
.ideal-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ideal-content p {
  font-size: 1.05rem;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process-step h3 {
  margin-bottom: 12px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.product-content p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.product-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

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

/* Shop Section */
.shop-intro-content {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.shop-products h2 {
  text-align: left;
  margin-bottom: 32px;
  margin-top: 48px;
}

.shop-products h2:first-child {
  margin-top: 0;
}

.shop-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shop-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.shop-info-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.shop-info-card p {
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-preview {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.featured-quote {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote p {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 24px;
}

.featured-quote cite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--accent);
  font-style: normal;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-preview .btn-link {
  color: var(--accent);
  margin-top: 32px;
}

.testimonial-preview .btn-link:hover {
  color: var(--white);
}

/* Testimonials Full Grid */
.testimonials-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card-full {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card-full .testimonial-avatar {
  margin-bottom: 20px;
}

.testimonial-card-full blockquote p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.testimonial-card-full cite {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-top: 20px;
  font-style: normal;
}

.testimonial-program {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 8px;
}

/* Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 24px;
}

.article-category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.article-content h2 {
  font-size: 1.25rem;
  text-align: left;
  margin-bottom: 12px;
}

.article-content h2 a {
  color: var(--primary);
}

.article-content h2 a:hover {
  color: var(--secondary);
}

.article-content p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
}

/* Article Full */
.article-full {
  padding: 40px 0 80px;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 16px 0;
}

.article-intro {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 16px;
}

.article-hero-image {
  margin-bottom: 48px;
}

.article-hero-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.article-body {
  max-width: 750px;
  margin: 0 auto;
}

.article-body h2 {
  text-align: left;
  margin: 48px 0 24px;
  font-size: 1.75rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-footer {
  max-width: 750px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--background);
  border-radius: 12px;
}

.article-footer p {
  margin: 0;
}

/* Related Articles */
.related-articles {
  background: var(--background);
  padding: 60px 0;
}

.related-articles h2 {
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.related-card {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-4px);
}

.related-category {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.related-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
}

/* About Sections */
.story-grid,
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2,
.approach-content h2 {
  text-align: left;
  margin-bottom: 24px;
}

.story-image img,
.approach-image img {
  border-radius: 12px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.philosophy-card {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.philosophy-card h3 {
  margin-bottom: 16px;
}

.values-list {
  max-width: 800px;
  margin: 0 auto;
}

.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item h3 {
  margin-bottom: 12px;
}

.space-content {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.space-gallery img {
  border-radius: 12px;
  width: 100%;
}

/* Pillars & Elements */
.pillars-grid,
.elements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card,
.element-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pillar-card h3,
.element-card h3 {
  margin-bottom: 16px;
}

.elements-grid {
  grid-template-columns: repeat(2, 1fr);
}

.element-card {
  text-align: left;
}

/* Science Content */
.science-content,
.understanding-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Programs Intro */
.programs-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper h2 {
  text-align: left;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--background);
  padding: 24px;
  border-radius: 12px;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: 8px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--white);
}

/* Legal Pages */
.legal-page {
  padding: 60px 0;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 40px;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  text-align: left;
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}

.legal-content p {
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-email {
  margin-top: 16px;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
}

.footer-nav li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-address address {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  opacity: 0.6;
}

.modal-close:hover {
  opacity: 1;
}

.modal-content h3 {
  margin-bottom: 8px;
}

.modal-product-name {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-form input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}

.order-form input:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
  text-align: center;
  margin-top: 8px;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1500;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .programs-grid,
  .products-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .program-card-full {
    grid-template-columns: 1fr;
  }
  
  .program-card-full:nth-child(even) {
    direction: ltr;
  }
  
  .program-info-grid,
  .process-steps,
  .shop-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  section { padding: 60px 0; }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .intro-grid,
  .story-grid,
  .approach-grid,
  .contact-grid,
  .program-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .programs-grid,
  .products-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .elements-grid,
  .benefits-grid,
  .faq-grid,
  .related-grid,
  .space-gallery {
    grid-template-columns: 1fr;
  }
  
  .program-info-grid,
  .process-steps,
  .shop-info-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
  }
  
  .featured-quote p {
    font-size: 1.2rem;
  }
  
  .modal-content {
    padding: 24px;
  }
}
