/* ===================================
   CRISP CASCADE - MODERN BOLD DESIGN
   Modern Bold Style with Strong Typography
   =================================== */

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

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

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

body {
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - BOLD & MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  color: #C23010;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

h2 {
  font-size: 32px;
  color: #1a1a1a;
  border-bottom: 6px solid #C23010;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
  color: #1a1a1a;
}

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

a {
  color: #C23010;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

a:hover {
  color: #8B2209;
  transform: translateX(3px);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  font-weight: 600;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #1a1a1a;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 6px solid #C23010;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(-3deg);
}

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

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.nav-menu a:hover {
  color: #C23010;
  border: 3px solid #C23010;
  background-color: rgba(194, 48, 16, 0.1);
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #C23010;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(194, 48, 16, 0.4);
  font-weight: 900;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B2209;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.5);
  border-left: 6px solid #C23010;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #ffffff;
  border: 3px solid #C23010;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 20px;
  background-color: rgba(194, 48, 16, 0.2);
  border: 3px solid #C23010;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.05em;
}

.mobile-nav a:hover {
  background-color: #C23010;
  transform: translateX(8px) scale(1.05);
}

/* ===================================
   HERO SECTION - BOLD DESIGN
   =================================== */

.hero {
  background: linear-gradient(135deg, #C23010 0%, #8B2209 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #1a1a1a;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.05) 10px,
    rgba(0, 0, 0, 0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
}

.subheadline {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #FFF3E0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   BUTTONS - GEOMETRIC & BOLD
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 4px solid #1a1a1a;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #ffffff;
  color: #1a1a1a;
  box-shadow: 6px 6px 0px #1a1a1a;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #1a1a1a;
  background-color: #FFF3E0;
}

.btn-primary {
  background-color: #C23010;
  color: #ffffff;
  border-color: #1a1a1a;
  box-shadow: 6px 6px 0px #1a1a1a;
}

.btn-primary:hover {
  background-color: #8B2209;
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #1a1a1a;
}

.btn-secondary {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #C23010;
  box-shadow: 6px 6px 0px #C23010;
}

.btn-secondary:hover {
  background-color: #2a2a2a;
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #C23010;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ===================================
   CARDS - GEOMETRIC DESIGN
   =================================== */

.benefit-card,
.service-card,
.recipe-card,
.class-card,
.testimonial-card,
.page-card,
.contact-card,
.post-card,
.value-card {
  background-color: #ffffff;
  border: 6px solid #1a1a1a;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 8px 8px 0px #C23010;
}

.benefit-card:hover,
.service-card:hover,
.recipe-card:hover,
.class-card:hover,
.page-card:hover,
.contact-card:hover,
.post-card:hover,
.value-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px #C23010;
}

.testimonial-card {
  background-color: #FFF3E0;
  border: 6px solid #C23010;
  box-shadow: 8px 8px 0px #1a1a1a;
}

.testimonial-card:hover {
  box-shadow: 4px 4px 0px #1a1a1a;
}

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

.card p {
  margin-bottom: 16px;
  font-weight: 600;
  color: #2a2a2a;
}

/* ===================================
   FLEXBOX GRIDS - NO CSS GRID
   =================================== */

.benefits-grid,
.service-grid,
.recipe-grid,
.class-grid,
.testimonial-grid,
.page-grid,
.contact-grid,
.post-grid,
.values-grid,
.content-cards,
.location-grid,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: flex-start;
}

.benefit-card,
.service-card,
.recipe-card,
.class-card,
.page-card,
.contact-card,
.post-card,
.value-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===================================
   PRICE STYLING
   =================================== */

.price {
  font-size: 32px;
  font-weight: 900;
  color: #C23010;
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.quote {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.6;
}

.author {
  font-weight: 900;
  color: #C23010;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.rating {
  color: #FFB300;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

/* ===================================
   FILTER BUTTONS - BOLD STYLE
   =================================== */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.filter-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #1a1a1a;
  border: 4px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0px #C23010;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #C23010;
  color: #ffffff;
  border-color: #1a1a1a;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #1a1a1a;
}

/* ===================================
   FORMS - BOLD DESIGN
   =================================== */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: #ffffff;
  border: 6px solid #1a1a1a;
  box-shadow: 12px 12px 0px #C23010;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}

.form-input,
.form-textarea,
select.form-input {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border: 4px solid #1a1a1a;
  background-color: #ffffff;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-family: 'Arial', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C23010;
  box-shadow: 0 0 0 4px rgba(194, 48, 16, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-transform: none;
  font-size: 14px;
}

input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.email-input {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border: 4px solid #1a1a1a;
  background-color: #ffffff;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   SECTIONS - HIGH CONTRAST
   =================================== */

.value-proposition,
.services-preview,
.testimonials,
.featured-recipes,
.course-benefits,
.upcoming-classes,
.services-overview,
.story,
.values,
.blog-grid,
.popular-pages {
  padding: 60px 20px;
  background-color: #ffffff;
}

.value-proposition {
  background-color: #FFF3E0;
  border-top: 8px solid #C23010;
  border-bottom: 8px solid #C23010;
}

.section-intro {
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 700;
  color: #2a2a2a;
}

/* ===================================
   CTA BANNERS - BOLD STYLE
   =================================== */

.cta-banner,
.cta-subscription,
.consultation-cta,
.booking-cta,
.cta-join {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 8px solid #C23010;
  border-bottom: 8px solid #C23010;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(194, 48, 16, 0.1) 20px,
    rgba(194, 48, 16, 0.1) 40px
  );
  pointer-events: none;
}

.cta-banner h2,
.cta-subscription h2,
.consultation-cta h2 {
  color: #ffffff;
  border-bottom: 6px solid #C23010;
  display: inline-block;
  padding-bottom: 12px;
}

.benefits-list {
  list-style: none;
  margin: 32px auto;
  max-width: 500px;
  text-align: left;
}

.benefits-list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
}

.benefits-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #C23010;
  font-size: 20px;
  font-weight: 900;
}

/* ===================================
   RECIPE & CLASS META
   =================================== */

.recipe-meta,
.class-info,
.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-weight: 700;
}

.recipe-meta span,
.class-info span,
.post-meta span {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  border: 3px solid #C23010;
  letter-spacing: 0.05em;
}

.post-meta .category {
  background-color: #C23010;
  border-color: #1a1a1a;
}

.read-more {
  font-weight: 900;
  color: #C23010;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-top: 16px;
  border-bottom: 3px solid #C23010;
  padding-bottom: 4px;
}

.read-more:hover {
  color: #8B2209;
  border-color: #8B2209;
  transform: translateX(8px);
}

/* ===================================
   FOOTER - BOLD DESIGN
   =================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 8px solid #C23010;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h4 {
  color: #C23010;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 4px solid #C23010;
  display: inline-block;
  padding-bottom: 8px;
  font-weight: 900;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

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

.footer-section a {
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #C23010;
  padding-left: 8px;
}

.footer-section p {
  font-weight: 600;
  line-height: 1.8;
  color: #cccccc;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 4px solid #C23010;
  font-weight: 700;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 1000;
  border-top: 6px solid #C23010;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-weight: 700;
}

.cookie-text p {
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* ===================================
   ERROR PAGES
   =================================== */

.error-hero,
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #C23010 0%, #8B2209 100%);
  color: #ffffff;
  border-bottom: 8px solid #1a1a1a;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.error-message,
.confirmation-message {
  font-size: 20px;
  font-weight: 700;
  color: #FFF3E0;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 80px;
  color: #ffffff;
  background-color: #4CAF50;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-weight: 900;
  border: 6px solid #1a1a1a;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
}

.help-contact,
.what-happens-next,
.suggested-content,
.timeline-steps {
  padding: 60px 20px;
  text-align: center;
}

.contact-link {
  display: inline-block;
  margin: 16px;
  padding: 16px 32px;
  background-color: #C23010;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px 0px #1a1a1a;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #1a1a1a;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background-color: #ffffff;
  border: 6px solid #1a1a1a;
  box-shadow: 8px 8px 0px #C23010;
}

.step h3 {
  color: #C23010;
  font-size: 24px;
  margin-bottom: 16px;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #C23010;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 48px;
}

.last-updated {
  color: #FFF3E0;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

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

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

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.text-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.text-section p,
.text-section li {
  font-weight: 600;
  line-height: 1.8;
  color: #2a2a2a;
}

.text-section ul {
  margin-left: 32px;
  margin-bottom: 20px;
}

.text-section a {
  color: #C23010;
  font-weight: 900;
  border-bottom: 2px solid #C23010;
}

.text-section a:hover {
  color: #8B2209;
  border-color: #8B2209;
}

.address {
  font-weight: 700;
  line-height: 1.8;
  color: #1a1a1a;
}

/* ===================================
   TEXT-IMAGE SECTIONS
   =================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.text-image-section > div {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

/* ===================================
   LOCATION & CONTACT INFO
   =================================== */

.location-info,
.contact-form-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

.location-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.hours {
  font-weight: 700;
  line-height: 1.8;
  color: #2a2a2a;
}

/* ===================================
   BLOG SPECIFIC
   =================================== */

.category-filter,
.filter-navigation {
  padding: 40px 20px;
  background-color: #FFF3E0;
  border-top: 4px solid #C23010;
  border-bottom: 4px solid #C23010;
}

.newsletter-signup {
  padding: 80px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  border-top: 8px solid #C23010;
}

.newsletter-signup h2 {
  color: #ffffff;
  border-color: #C23010;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .error-code {
    font-size: 80px;
  }

  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  /* Card layouts */
  .benefit-card,
  .service-card,
  .recipe-card,
  .class-card,
  .page-card,
  .contact-card,
  .post-card,
  .value-card,
  .testimonial-card {
    flex: 1 1 100%;
  }

  /* Form adjustments */
  .newsletter-form {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }

  /* Footer adjustments */
  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }

  /* Timeline steps */
  .step {
    flex: 1 1 100%;
  }

  /* Reduce spacing on mobile */
  .section {
    padding: 32px 16px;
  }

  .hero,
  .cta-banner,
  .cta-subscription {
    padding: 60px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .recipe-card,
  .class-card,
  .page-card,
  .post-card,
  .value-card {
    flex: 1 1 calc(50% - 32px);
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

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

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer {
    display: none;
  }

  body {
    color: #000000;
    background: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}

/* ===================================
   END OF STYLESHEET
   =================================== */