/* ========================================
   SILENT ARCANE - CREATIVE ARTISTIC STYLES
   Mystical, refined, and inviting culinary journey
   ======================================== */

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

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

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

body {
  font-family: 'Lato', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C1810;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFEEDD 100%);
  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;
}

/* ========================================
   TYPOGRAPHY - CREATIVE & ARTISTIC
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C1810;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8B4513, #D4A574);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #8B4513;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #8B4513;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 40px;
}

/* ========================================
   HEADER - MYSTICAL & ELEGANT
   ======================================== */

header {
  background: linear-gradient(135deg, #2C1810 0%, #3D2415 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid #D4A574;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.4));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #D4A574;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #D4A574;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFF;
  background: rgba(212, 165, 116, 0.1);
}

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

/* ========================================
   MOBILE MENU - CREATIVE SLIDE-IN
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #2C1810 0%, #3D2415 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4A574;
  color: #D4A574;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4A574;
  color: #2C1810;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #D4A574;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  background: rgba(212, 165, 116, 0.1);
  border-left: 4px solid #8B4513;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(212, 165, 116, 0.2);
  transform: translateX(10px);
  border-left-color: #D4A574;
}

/* ========================================
   HERO SECTION - DRAMATIC & ARTISTIC
   ======================================== */

.hero {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(139, 69, 19, 0.85)), url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="%232C1810"/%3E%3Cpath d="M50 0L100 50 50 100 0 50z" fill="%233D2415" opacity=".3"/%3E%3C/svg%3E');
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #D4A574;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease;
}

.tagline {
  color: #D4A574;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease 0.4s both;
}

/* ========================================
   BUTTONS - CREATIVE & ARTISTIC
   ======================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 69, 19, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #D4A574;
  border: 3px solid #D4A574;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover {
  background: #D4A574;
  color: #2C1810;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* ========================================
   SECTIONS - CREATIVE LAYOUTS
   ======================================== */

section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.intro,
.services-intro,
.brand-story,
.contact-intro {
  background: #FFF;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.intro::before,
.services-intro::before {
  content: '🔮';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 150px;
  opacity: 0.05;
  transform: rotate(15deg);
}

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

.services-grid,
.value-grid,
.recipe-grid,
.testimonials-grid,
.benefits-grid,
.courses-grid,
.instructor-grid,
.mission-grid,
.team-grid,
.articles-grid,
.contact-grid,
.process-steps,
.steps-grid,
.actions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

/* ========================================
   CARDS - ARTISTIC & CREATIVE
   ======================================== */

.service-card,
.value-item,
.recipe-card,
.testimonial-card,
.benefit-card,
.course-card,
.instructor-card,
.mission-card,
.team-card,
.article-card,
.action-card,
.step-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #FFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before,
.recipe-card::before,
.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B4513, #D4A574);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before,
.recipe-card:hover::before,
.course-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.value-item:hover,
.recipe-card:hover,
.course-card:hover,
.article-card:hover,
.action-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
  border-color: #D4A574;
}

.service-card h3,
.recipe-card h3,
.course-card h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 22px;
}

.price,
.duration {
  color: #2C1810;
  font-weight: 700;
  font-size: 20px;
  margin: 16px 0;
  display: block;
}

.service-link,
.explore-link {
  color: #8B4513;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #D4A574;
  text-decoration-thickness: 2px;
  transition: all 0.3s ease;
}

.service-link:hover,
.explore-link:hover {
  color: #D4A574;
  text-decoration-color: #8B4513;
}

/* ========================================
   TESTIMONIALS - READABLE & ELEGANT
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, #F5E6D3 0%, #FFF8F0 100%);
  padding: 80px 20px;
  position: relative;
}

.testimonial-card {
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-left: 5px solid #8B4513;
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
}

.testimonial-card p {
  color: #2C1810;
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .author {
  color: #8B4513;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}

.rating {
  color: #D4A574;
  font-size: 20px;
  letter-spacing: 2px;
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */

.value-proposition {
  background: #FFF;
  padding: 80px 20px;
  text-align: center;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  border-radius: 15px;
  border: 2px solid #D4A574;
}

.value-item h3 {
  color: #8B4513;
  margin-bottom: 16px;
  font-size: 20px;
}

/* ========================================
   PAGE HERO - BREADCRUMB NAVIGATION
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, #2C1810, #3D2415);
  padding: 80px 20px;
  text-align: center;
  color: #FFF;
  border-bottom: 4px solid #D4A574;
}

.breadcrumb {
  color: #D4A574;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #D4A574;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FFF;
}

.page-hero h1 {
  color: #FFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #D4A574;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   FILTERS & CATEGORIES
   ======================================== */

.recipe-filters,
.blog-categories {
  padding: 40px 20px;
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filters-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  font-weight: 700;
  color: #8B4513;
  font-size: 14px;
  text-transform: uppercase;
}

.filter-select {
  padding: 12px 16px;
  border: 2px solid #D4A574;
  border-radius: 8px;
  font-size: 16px;
  background: #FFF;
  color: #2C1810;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-pill {
  padding: 10px 24px;
  background: #FFF;
  border: 2px solid #D4A574;
  border-radius: 50px;
  color: #8B4513;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* ========================================
   RECIPE & ARTICLE META
   ======================================== */

.recipe-meta,
.meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #D4A574;
}

.recipe-meta span,
.meta {
  color: #8B4513;
  font-size: 14px;
  font-weight: 600;
}

.difficulty,
.time {
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #D4A574;
}

.category {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ========================================
   PREMIUM UPSELL & CTA SECTIONS
   ======================================== */

.premium-upsell,
.cta-section,
.booking-cta {
  background: linear-gradient(135deg, #2C1810, #3D2415);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.premium-upsell::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.upsell-content,
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.upsell-content h2,
.cta-content h2 {
  color: #FFF;
  margin-bottom: 24px;
}

.upsell-content h2::after,
.cta-content h2::after {
  background: #D4A574;
  left: 50%;
  transform: translateX(-50%);
}

.upsell-content p,
.cta-content p {
  color: #D4A574;
  font-size: 18px;
  margin-bottom: 30px;
}

.benefits-list {
  text-align: left;
  max-width: 500px;
  margin: 30px auto;
  color: #FFF;
}

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  position: relative;
  padding-left: 30px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: 700;
  font-size: 18px;
}

.pricing {
  color: #D4A574;
  font-size: 32px;
  font-weight: 700;
  margin: 30px 0;
}

/* ========================================
   SERVICE BLOCKS
   ======================================== */

.services-detailed {
  padding: 60px 20px;
}

.service-block {
  background: #FFF;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-left: 5px solid #8B4513;
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.2);
}

.service-block h3 {
  color: #8B4513;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-block ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-block li {
  margin-bottom: 12px;
  color: #2C1810;
  position: relative;
  padding-left: 25px;
}

.service-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-size: 14px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */

.process {
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 80px 20px;
}

.process-steps {
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 22.5px);
  min-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq,
.faq-contact {
  padding: 60px 20px;
  background: #FFF;
}

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

.faq-item {
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  border-left: 4px solid #8B4513;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.15);
}

.faq-item h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #2C1810;
  margin-bottom: 0;
}

/* ========================================
   MISSION & VALUES
   ======================================== */

.mission-vision {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
}

.mission-grid {
  justify-content: center;
  margin-bottom: 40px;
}

.mission-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.values {
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 40px auto 0;
}

.values h3 {
  color: #8B4513;
  text-align: center;
  margin-bottom: 24px;
}

.values ul {
  padding-left: 0;
}

.values li {
  padding: 16px 20px;
  border-bottom: 1px solid #F5E6D3;
  position: relative;
  padding-left: 40px;
}

.values li::before {
  content: '★';
  position: absolute;
  left: 10px;
  color: #D4A574;
  font-size: 18px;
}

/* ========================================
   TEAM & INSTRUCTORS
   ======================================== */

.team,
.instructors {
  padding: 80px 20px;
  background: #FFF;
}

.team-grid,
.instructor-grid {
  justify-content: center;
}

.team-card,
.instructor-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.role {
  color: #8B4513;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 16px;
}

/* ========================================
   BLOG SECTIONS
   ======================================== */

.featured-article {
  padding: 60px 20px;
}

.featured-post {
  background: linear-gradient(135deg, #2C1810, #3D2415);
  padding: 60px 40px;
  border-radius: 20px;
  color: #FFF;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 3px solid #D4A574;
}

.featured-post h2 {
  color: #FFF;
  font-size: 32px;
  margin-bottom: 20px;
}

.featured-post h2::after {
  background: #D4A574;
}

.featured-post p {
  color: #D4A574;
  font-size: 18px;
}

.featured-post .category {
  margin-bottom: 20px;
}

.blog-grid {
  padding: 60px 20px;
}

.article-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: #FFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #8B4513;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, #8B4513, #D4A574);
  padding: 80px 20px;
  text-align: center;
}

.newsletter-content h2 {
  color: #FFF;
  margin-bottom: 20px;
}

.newsletter-content h2::after {
  background: #FFF;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter-content p {
  color: #FFF;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form-placeholder {
  background: #FFF;
  padding: 30px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.newsletter-form-placeholder p {
  color: #2C1810;
  font-weight: 700;
}

/* ========================================
   CONTACT SECTIONS
   ======================================== */

.contact-content {
  padding: 60px 20px;
}

.contact-grid {
  gap: 40px;
  align-items: flex-start;
}

.contact-info,
.contact-form-section {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  background: #FFF;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-info h3,
.contact-form-section h3 {
  color: #8B4513;
  margin-bottom: 30px;
  font-size: 24px;
}

.info-block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F5E6D3;
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h4 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 18px;
}

.info-block p {
  color: #2C1810;
  margin-bottom: 0;
}

.form-note {
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #8B4513;
  margin-bottom: 20px;
}

.contact-form-section ul {
  margin-top: 20px;
  padding-left: 20px;
}

.contact-form-section li {
  margin-bottom: 12px;
  color: #2C1810;
}

.map-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
}

.map-placeholder {
  background: #FFF;
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 3px dashed #D4A574;
}

.map-placeholder p {
  color: #2C1810;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C1810, #3D2415);
  padding: 120px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(139, 69, 19, 0.5);
  animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you-content h1 {
  color: #FFF;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #D4A574;
  font-size: 18px;
}

.next-steps,
.suggested-actions,
.explore-more,
.confirmation {
  padding: 60px 20px;
}

.back-home {
  text-align: center;
  padding: 40px 20px;
}

/* ========================================
   APPROACH & LOCATION
   ======================================== */

.approach,
.location {
  padding: 60px 20px;
  background: #FFF;
}

.approach-list {
  max-width: 800px;
  margin: 30px auto 0;
  padding-left: 0;
}

.approach-list li {
  padding: 20px 20px 20px 50px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.approach-list li::before {
  content: '✦';
  position: absolute;
  left: 20px;
  color: #8B4513;
  font-size: 20px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.location-details p {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  padding: 60px 20px;
  background: #FFF;
}

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

.legal-content h2 {
  color: #8B4513;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.legal-content h3 {
  color: #8B4513;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #2C1810;
}

/* ========================================
   FOOTER - CREATIVE & ARTISTIC
   ======================================== */

footer {
  background: linear-gradient(135deg, #2C1810, #1A0F0A);
  color: #D4A574;
  padding: 60px 20px 20px;
  border-top: 5px solid #D4A574;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M50 0L100 50 50 100 0 50z" fill="%23D4A574" opacity=".02"/%3E%3C/svg%3E');
  opacity: 0.5;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-col h4 {
  color: #FFF;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #D4A574;
}

.footer-col p {
  color: #D4A574;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #D4A574;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
  display: inline-block;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFF;
  transform: translateX(10px);
}

.footer-nav a:hover::before {
  left: -15px;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 165, 116, 0.3);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #D4A574;
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2C1810, #3D2415);
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid #D4A574;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #D4A574;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #8B4513, #D4A574);
  color: #FFF;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: #D4A574;
  border: 2px solid #D4A574;
}

.cookie-btn-reject:hover {
  background: rgba(212, 165, 116, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #D4A574;
  border: 2px solid #8B4513;
}

.cookie-btn-settings:hover {
  background: rgba(139, 69, 19, 0.2);
  border-color: #D4A574;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFF;
  max-width: 600px;
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #8B4513;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F5E6D3;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #8B4513;
  margin-bottom: 20px;
  font-size: 28px;
}

.cookie-category {
  background: linear-gradient(135deg, #FFF8F0, #FFEEDD);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 4px solid #8B4513;
}

.cookie-category h3 {
  color: #8B4513;
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #8B4513, #D4A574);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #2C1810;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .tagline {
    font-size: 16px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  /* Section padding */
  section {
    padding: 40px 15px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  /* Card layouts - stack on mobile */
  .service-card,
  .value-item,
  .recipe-card,
  .testimonial-card,
  .benefit-card,
  .course-card,
  .instructor-card,
  .mission-card,
  .team-card,
  .article-card,
  .step,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Contact grid - stack */
  .contact-info,
  .contact-form-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer - stack columns */
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Cookie consent - stack */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  /* Process steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Filters - stack */
  .filters-wrapper {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .value-item,
  .recipe-card,
  .course-card,
  .article-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .testimonial-card,
  .mission-card,
  .team-card,
  .instructor-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .step {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations - apply to elements as needed */
.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFF;
  }
  
  .container {
    max-width: 100%;
  }
}

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

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

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

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

/* Accessibility */
.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;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
select:focus {
  outline: 3px solid #D4A574;
  outline-offset: 2px;
}

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