/* ===== CSS RESET & NORMALIZE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFBF5;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== LUXURY PREMIUM GOLD ACCENTS & TYPOGRAPHY ===== */
:root {
  --primary-gold: #C9A961;
  --primary-burgundy: #6B1F1F;
  --secondary-cream: #FAF6F0;
  --accent-bronze: #8B6F47;
  --text-dark: #1A1A1A;
  --text-muted: #6B6B6B;
  --border-elegant: #D4C5A9;
  --shadow-soft: 0 4px 20px rgba(201, 169, 97, 0.15);
  --shadow-medium: 0 8px 30px rgba(107, 31, 31, 0.2);
  --shadow-strong: 0 12px 40px rgba(107, 31, 31, 0.25);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: var(--primary-burgundy);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
}

h2 {
  font-size: 32px;
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #4A1515 100%);
  padding: 20px 0;
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-gold);
}

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
}

header nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

header nav a {
  color: var(--secondary-cream);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

header nav a:hover {
  color: var(--primary-gold);
  transform: translateY(-2px);
}

header nav a:hover::before {
  width: 80%;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--primary-gold);
  background: rgba(201, 169, 97, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border: 2px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-burgundy) 0%, #3A1111 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 2500;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  border-left: 3px solid var(--primary-gold);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--primary-gold);
  background: rgba(201, 169, 97, 0.1);
  padding: 8px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
}

.mobile-menu-close:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--secondary-cream);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(201, 169, 97, 0.2);
  border-left-color: var(--primary-gold);
  transform: translateX(8px);
  color: var(--primary-gold);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #4A1515 50%, var(--accent-bronze) 100%);
  color: var(--secondary-cream);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 30l30-30v60z" fill="%23C9A961" fill-opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--secondary-cream);
  font-size: 56px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.hero h1::after {
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  left: 50%;
  transform: translateX(-50%);
}

.hero p {
  font-size: 20px;
  color: var(--secondary-cream);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--primary-burgundy);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ===== BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary, .btn-secondary, .btn-link {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #B8944F 100%);
  color: var(--primary-burgundy);
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-burgundy);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--secondary-cream);
  border: 2px solid var(--primary-gold);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--primary-burgundy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-link {
  background: transparent;
  color: var(--primary-burgundy);
  border: 2px solid var(--primary-gold);
  padding: 12px 32px;
  margin-top: 32px;
}

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

/* ===== CARDS & GRIDS ===== */
.recipe-grid, .benefit-grid, .service-grid, .category-grid, .testimonial-grid,
.region-grid, .collection-grid, .workshop-grid, .pricing-grid, .stats-grid,
.value-grid, .support-grid, .tip-grid, .story-grid, .faq-categories, .explore-grid,
.steps-grid, .link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.recipe-card, .benefit, .service-card, .category-card, .testimonial-card,
.region-card, .collection-card, .workshop-card, .pricing-card, .stat-card,
.value-card, .support-card, .tip-card, .story-card, .faq-category, .explore-card,
.step-card, .link-card {
  background: var(--secondary-cream);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  border: 2px solid var(--border-elegant);
  position: relative;
  overflow: hidden;
}

.recipe-card::before, .service-card::before, .workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-bronze));
}

.recipe-card:hover, .service-card:hover, .category-card:hover,
.region-card:hover, .collection-card:hover, .workshop-card:hover,
.explore-card:hover, .link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-gold);
}

.recipe-card h3, .service-card h3, .workshop-card h3 {
  color: var(--primary-burgundy);
  margin-bottom: 16px;
  font-size: 20px;
}

.recipe-card p, .service-card p {
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-gold);
  margin: 20px 0;
  font-family: 'Merriweather', serif;
}

.savings {
  color: #2D7059;
  font-weight: 600;
  font-size: 14px;
  margin-top: -16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--secondary-cream);
  padding: 80px 20px;
  border-top: 3px solid var(--primary-gold);
  border-bottom: 3px solid var(--primary-gold);
}

.testimonial-card {
  background: white;
  border-left: 4px solid var(--primary-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary-burgundy);
  font-style: normal;
  margin-top: 16px;
  border-top: 2px solid var(--border-elegant);
  padding-top: 16px;
  width: 100%;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
  background: linear-gradient(135deg, var(--secondary-cream) 0%, #F5EFE7 100%);
  padding: 80px 20px;
}

.benefit {
  text-align: center;
  border: 2px solid var(--border-elegant);
  background: white;
}

.benefit h3 {
  color: var(--primary-burgundy);
  margin-bottom: 16px;
}

.benefit p {
  color: var(--text-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: white;
  padding: 80px 20px;
}

.service-card.featured {
  border: 3px solid var(--primary-gold);
  background: linear-gradient(135deg, var(--secondary-cream) 0%, white 100%);
  transform: scale(1.05);
}

.service-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 8px 16px;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-elegant);
  color: var(--text-dark);
  position: relative;
  padding-left: 24px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}

/* ===== FILTER SIDEBAR ===== */
.recipe-layout {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.filter-sidebar {
  flex: 0 0 250px;
  background: var(--secondary-cream);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--border-elegant);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--primary-burgundy);
  border-bottom: 2px solid var(--primary-gold);
  padding-bottom: 8px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.filter-group label:hover {
  color: var(--primary-gold);
}

.filter-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-gold);
}

.recipe-main {
  flex: 1 1 calc(100% - 282px);
}

.sorting-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.sorting-options select {
  padding: 12px 20px;
  border: 2px solid var(--border-elegant);
  border-radius: 8px;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sorting-options select:hover {
  border-color: var(--primary-gold);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 12px 20px;
  border: 2px solid var(--border-elegant);
  border-radius: 8px;
  color: var(--primary-burgundy);
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination a:hover, .pagination a.active {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

/* ===== TABS & FILTERS ===== */
.filter-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab {
  padding: 14px 28px;
  background: white;
  border: 2px solid var(--border-elegant);
  border-radius: 30px;
  color: var(--primary-burgundy);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab:hover, .tab.active {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ===== REGION BADGES ===== */
.region-badge, .region-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ===== WEEK PLAN ===== */
.week-plan {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.day-plan {
  flex: 1 1 calc(20% - 16px);
  min-width: 180px;
  background: white;
  border: 2px solid var(--border-elegant);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.day-plan:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-soft);
}

.day-plan h3 {
  color: var(--primary-burgundy);
  font-size: 18px;
  margin-bottom: 12px;
}

.day-plan span {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 14px;
}

/* ===== GLOSSARY ===== */
.glossary-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glossary-item {
  background: var(--secondary-cream);
  border-left: 4px solid var(--primary-gold);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.glossary-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

.glossary-item h3 {
  color: var(--primary-burgundy);
  margin-bottom: 12px;
}

/* ===== STATISTICS ===== */
.statistics {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #4A1515 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.statistics h2 {
  color: var(--secondary-cream);
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-gold);
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 48px;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--secondary-cream);
  font-size: 18px;
}

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-form-section, .contact-info {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.contact-info {
  background: var(--secondary-cream);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--border-elegant);
}

.info-block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border-elegant);
}

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

.info-block h3 {
  color: var(--primary-burgundy);
  margin-bottom: 12px;
  font-size: 20px;
}

.form-note {
  background: rgba(201, 169, 97, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: white;
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  color: var(--primary-burgundy);
  margin-top: 48px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--border-elegant);
}

.text-section h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.text-section h3 {
  color: var(--accent-bronze);
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--secondary-cream);
  border: 2px solid var(--border-elegant);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  color: var(--primary-burgundy);
  margin-bottom: 16px;
  font-size: 20px;
}

/* ===== MISSION/VISION ===== */
.mission-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.mission-card {
  flex: 1 1 calc(50% - 16px);
  background: linear-gradient(135deg, var(--secondary-cream) 0%, white 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 12px;
  padding: 48px;
  min-width: 300px;
}

.mission-card h2 {
  color: var(--primary-burgundy);
  margin-bottom: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #4A1515 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  margin: 60px 0;
}

.cta-section h2 {
  color: var(--secondary-cream);
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--secondary-cream);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--accent-bronze) 0%, var(--primary-burgundy) 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.page-header h1 {
  color: var(--secondary-cream);
}

.page-header p {
  color: var(--secondary-cream);
  font-size: 18px;
}

/* ===== 404 ERROR ===== */
.error-display {
  text-align: center;
  padding: 60px 20px;
}

.error-display h1 {
  font-size: 120px;
  color: var(--primary-gold);
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.error-display h2 {
  color: var(--primary-burgundy);
  margin-bottom: 16px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-content {
  text-align: center;
  padding: 40px;
}

.success-message {
  color: #2D7059;
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #2A0F0F 100%);
  color: var(--secondary-cream);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--primary-gold);
}

.footer-content {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(201, 169, 97, 0.3));
}

.footer-brand p {
  color: rgba(250, 246, 240, 0.8);
  line-height: 1.8;
}

.footer-links {
  flex: 1 1 180px;
}

.footer-links h3 {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(250, 246, 240, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-contact {
  flex: 1 1 200px;
}

.footer-contact h3 {
  color: var(--primary-gold);
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact p {
  color: rgba(250, 246, 240, 0.8);
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.footer-bottom p {
  color: rgba(250, 246, 240, 0.6);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-burgundy) 0%, #3A1111 100%);
  color: var(--secondary-cream);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--primary-gold);
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: var(--secondary-cream);
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: var(--primary-gold);
  color: var(--primary-burgundy);
  border: 2px solid var(--primary-gold);
}

.cookie-accept:hover {
  background: #B8944F;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--secondary-cream);
  border: 2px solid var(--secondary-cream);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.cookie-settings:hover {
  background: rgba(201, 169, 97, 0.1);
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  border: 3px solid var(--primary-gold);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-content h2 {
  color: var(--primary-burgundy);
  margin-bottom: 24px;
}

.cookie-category {
  background: var(--secondary-cream);
  border: 2px solid var(--border-elegant);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: var(--primary-burgundy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--primary-gold);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1 1 calc(50% - 6px);
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-save {
  background: var(--primary-gold);
  color: var(--primary-burgundy);
  border: 2px solid var(--primary-gold);
}

.cookie-save:hover {
  background: #B8944F;
  transform: translateY(-2px);
}

.cookie-close {
  background: transparent;
  color: var(--primary-burgundy);
  border: 2px solid var(--border-elegant);
}

.cookie-close:hover {
  border-color: var(--primary-burgundy);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero { padding: 80px 20px; }
  .hero h1 { font-size: 44px; }
  
  .filter-sidebar {
    position: static;
    flex: 0 0 100%;
  }
  
  .recipe-main {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 18px; }
  
  section { padding: 40px 20px; margin-bottom: 40px; }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .recipe-card, .benefit, .service-card, .category-card,
  .region-card, .workshop-card, .pricing-card {
    flex: 1 1 100%;
  }
  
  .contact-layout {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .mission-card {
    flex: 1 1 100%;
  }
  
  .day-plan {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .error-display h1 {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  
  .btn-primary, .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .recipe-card, .service-card {
    padding: 20px;
  }
  
  .price { font-size: 20px; }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .error-display h1 {
    font-size: 60px;
  }
}

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

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.recipe-card, .service-card, .benefit {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 3px solid var(--primary-gold);
  outline-offset: 2px;
}

button:focus, a:focus {
  outline: 3px solid var(--primary-gold);
}

/* ===== PRINT STYLES ===== */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner, .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}