/* ===================================
   BEACON PATH - VINTAGE RETRO STYLES
   Design Style: Vintage & Retro Inspired
   ================================== */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #2c2416;
  background-color: #f5efe6;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 99, 63, 0.03) 2px, rgba(139, 99, 63, 0.03) 4px);
}

/* VINTAGE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  color: #3d2817;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px rgba(193, 154, 46, 0.3);
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  border-bottom: 3px double #8b633f;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #5d4428;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #3d2817;
}

a {
  color: #8b633f;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px dotted #8b633f;
}

a:hover {
  color: #c19a2e;
  border-bottom: 1px solid #c19a2e;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

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

/* VINTAGE HEADER */
header {
  background: linear-gradient(180deg, #e8dcc8 0%, #d4c4a8 100%);
  border-bottom: 5px solid #8b633f;
  box-shadow: 0 4px 8px rgba(61, 40, 23, 0.2),
              inset 0 -2px 0 rgba(139, 99, 63, 0.3);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(0.3) contrast(1.1);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #3d2817;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 3px;
  transition: all 0.3s ease;
  border-bottom: none;
  background: rgba(139, 99, 63, 0.1);
}

.main-nav a:hover {
  background: #8b633f;
  color: #f5efe6;
  border-color: #5d4428;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(61, 40, 23, 0.3);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #8b633f;
  color: #f5efe6;
  border: 3px solid #5d4428;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(61, 40, 23, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #5d4428;
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #e8dcc8 0%, #d4c4a8 100%);
  border-left: 5px solid #8b633f;
  box-shadow: -4px 0 20px rgba(61, 40, 23, 0.5);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8b633f;
  color: #f5efe6;
  border: 2px solid #5d4428;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #3d2817;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px;
  background: rgba(139, 99, 63, 0.1);
  border: 2px solid #8b633f;
  border-radius: 3px;
  transition: all 0.3s ease;
  border-bottom: 2px solid #8b633f;
}

.mobile-nav a:hover {
  background: #8b633f;
  color: #f5efe6;
  transform: translateX(10px);
}

/* VINTAGE HERO SECTION */
.hero {
  background: linear-gradient(135deg, #d4c4a8 0%, #e8dcc8 50%, #d4c4a8 100%);
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 99, 63, 0.05) 10px, rgba(139, 99, 63, 0.05) 20px),
    linear-gradient(135deg, #d4c4a8 0%, #e8dcc8 50%, #d4c4a8 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 5px double #8b633f;
  box-shadow: inset 0 0 30px rgba(61, 40, 23, 0.1);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(139, 99, 63, 0.03) 2px,
    rgba(139, 99, 63, 0.03) 4px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #3d2817;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(193, 154, 46, 0.3),
               -1px -1px 0px rgba(255, 255, 255, 0.5);
}

.hero-subheadline {
  font-size: 18px;
  color: #5d4428;
  margin-bottom: 32px;
  line-height: 1.6;
  font-style: italic;
}

.highlight {
  background: #c19a2e;
  color: #3d2817;
  padding: 8px 16px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 700;
  border: 2px solid #8b633f;
  box-shadow: 0 3px 6px rgba(61, 40, 23, 0.3);
}

/* VINTAGE BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border-radius: 4px;
  border: 3px solid #5d4428;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: 3px solid #5d4428;
  box-shadow: 0 4px 6px rgba(61, 40, 23, 0.3),
              inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background: #8b633f;
  color: #f5efe6;
}

.btn-primary:hover {
  background: #5d4428;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: #e8dcc8;
  color: #3d2817;
  border-color: #8b633f;
}

.btn-secondary:hover {
  background: #c19a2e;
  color: #f5efe6;
  border-color: #5d4428;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.4);
}

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

/* SECTIONS */
.section,
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

.section-subheadline {
  font-size: 18px;
  color: #5d4428;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* VINTAGE CARDS */
.card,
.benefit-card,
.service-card,
.workshop-card,
.course-card,
.value-card,
.testimonial-card,
.team-member,
.resource-card,
.download-card,
.info-card,
.step-card,
.event-card,
.category-card,
.option-card,
.contact-person {
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 99, 63, 0.02) 10px, rgba(139, 99, 63, 0.02) 20px);
}

.card::before,
.benefit-card::before,
.service-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed rgba(139, 99, 63, 0.3);
  pointer-events: none;
}

.card:hover,
.benefit-card:hover,
.service-card:hover,
.workshop-card:hover,
.course-card:hover,
.value-card:hover,
.resource-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 0 12px 24px rgba(61, 40, 23, 0.4),
              inset 0 2px 0 rgba(255, 255, 255, 0.6);
  border-color: #5d4428;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.workshop-grid,
.course-grid,
.values-grid,
.testimonials-grid,
.team-grid,
.resources-grid,
.downloads-grid,
.info-grid,
.steps-grid,
.events-grid,
.categories-grid,
.options-grid,
.cta-cards,
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.workshop-card,
.course-card,
.value-card,
.resource-card,
.download-card,
.info-card,
.step-card,
.event-card,
.category-card,
.option-card,
.contact-person {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
}

/* VINTAGE TESTIMONIALS */
.testimonials {
  background: linear-gradient(180deg, #e8dcc8 0%, #d4c4a8 100%);
  padding: 60px 20px;
  border-top: 3px double #8b633f;
  border-bottom: 3px double #8b633f;
}

.testimonial-card {
  background: #f5efe6;
  border: 3px solid #8b633f;
  padding: 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 72px;
  color: rgba(139, 99, 63, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p:first-child {
  font-style: italic;
  font-size: 18px;
  color: #3d2817;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.testimonial-card .author {
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: 700;
  color: #8b633f;
  text-align: right;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-top: 2px dotted #8b633f;
  padding-top: 12px;
  margin-top: 8px;
}

/* PRICE STYLING */
.price {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #8b633f;
  margin: 16px 0;
  text-shadow: 1px 1px 0px rgba(193, 154, 46, 0.3);
}

.duration,
.date,
.location,
.spots,
.category,
.read-time,
.format,
.role,
.count {
  font-size: 14px;
  color: #5d4428;
  font-style: italic;
  margin-bottom: 8px;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #c19a2e;
  color: #3d2817;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #8b633f;
  margin-bottom: 12px;
  box-shadow: 0 2px 4px rgba(61, 40, 23, 0.3);
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(180deg, #d4c4a8 0%, #e8dcc8 100%);
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3);
  position: relative;
}

.step::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #8b633f;
}

.step:last-child::after {
  display: none;
}

.step h3 {
  color: #8b633f;
  margin-bottom: 16px;
  font-size: 28px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #8b633f 0%, #5d4428 100%);
  color: #f5efe6;
  padding: 60px 20px;
  text-align: center;
  border-top: 5px double #c19a2e;
  border-bottom: 5px double #c19a2e;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

.cta-banner h2 {
  color: #f5efe6;
  border-bottom: 3px double #c19a2e;
  margin-bottom: 20px;
}

.cta-banner p {
  color: #e8dcc8;
  font-size: 18px;
  margin-bottom: 32px;
}

.trust-element {
  margin-top: 24px;
  font-size: 14px;
  color: #c19a2e;
  font-style: italic;
}

/* STATS */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  padding: 40px 0;
  border-top: 3px double #8b633f;
  border-bottom: 3px double #8b633f;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat h3 {
  font-size: 56px;
  color: #8b633f;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(193, 154, 46, 0.3);
}

.stat p {
  font-size: 16px;
  color: #5d4428;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FAQ */
.faq {
  padding: 60px 20px;
}

.faq-item {
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(61, 40, 23, 0.2);
}

.faq-item h3 {
  color: #8b633f;
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #3d2817 0%, #2c2416 100%);
  color: #e8dcc8;
  padding: 60px 20px 20px;
  border-top: 5px double #8b633f;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

.footer-section h3 {
  color: #c19a2e;
  border-bottom: 2px dotted #8b633f;
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 18px;
}

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

.footer-section p {
  color: #d4c4a8;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-nav a {
  color: #d4c4a8;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px dotted transparent;
}

.footer-nav a:hover {
  color: #c19a2e;
  border-bottom-color: #c19a2e;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px dotted #8b633f;
  color: #8b633f;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #3d2817 0%, #2c2416 100%);
  color: #e8dcc8;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(61, 40, 23, 0.6);
  z-index: 1998;
  border-top: 3px solid #8b633f;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #d4c4a8;
}

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

.cookie-btn {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 3px;
  border: 2px solid #8b633f;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #8b633f;
  color: #f5efe6;
}

.cookie-btn:hover {
  background: #5d4428;
  transform: translateY(-2px);
}

.cookie-btn-secondary {
  background: transparent;
  color: #c19a2e;
  border-color: #c19a2e;
}

.cookie-btn-secondary:hover {
  background: #c19a2e;
  color: #3d2817;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 36, 22, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(180deg, #e8dcc8 0%, #d4c4a8 100%);
  border: 5px solid #8b633f;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px double #8b633f;
}

.cookie-modal-close {
  background: #8b633f;
  color: #f5efe6;
  border: 2px solid #5d4428;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

.cookie-category {
  background: #f5efe6;
  border: 2px solid #8b633f;
  border-radius: 3px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #8b633f;
  margin-bottom: 8px;
}

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #8b633f;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: 2px solid #5d4428;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #f5efe6;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active {
  background: #c19a2e;
}

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

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

/* FORM NOTICE (CONTACT PAGE) */
.form-notice {
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3);
}

.form-notice p {
  margin-bottom: 12px;
  color: #3d2817;
}

.response-time {
  font-style: italic;
  color: #5d4428;
  text-align: center;
  margin-top: 20px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3);
}

.last-updated {
  font-size: 14px;
  color: #8b633f;
  font-style: italic;
  margin-top: 12px;
}

/* SERVICE DETAIL CARDS */
.service-detail-card {
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3);
}

.service-detail-card h3 {
  color: #8b633f;
  margin-bottom: 16px;
  border-bottom: 2px dotted #8b633f;
  padding-bottom: 12px;
}

.service-detail-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-detail-card li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #3d2817;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b633f;
  font-weight: 700;
}

/* NEWSLETTER & BENEFITS */
.newsletter-signup {
  background: linear-gradient(135deg, #d4c4a8 0%, #e8dcc8 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 3px double #8b633f;
  border-bottom: 3px double #8b633f;
}

.benefits-list {
  margin: 32px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list p {
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.subscriber-count {
  margin-top: 20px;
  font-style: italic;
  color: #8b633f;
}

/* PRICING INFO */
.pricing-info {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: #f5efe6;
  border: 3px solid #8b633f;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(61, 40, 23, 0.3);
}

.pricing-info .price {
  font-size: 48px;
  margin-bottom: 16px;
}

/* RESPONSIVE - TABLET */
@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .benefit-card,
  .service-card,
  .workshop-card,
  .course-card,
  .value-card,
  .resource-card,
  .download-card,
  .info-card,
  .step-card,
  .event-card,
  .category-card,
  .option-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step::after {
    display: none;
  }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 20px;
  }

  .section,
  section {
    padding: 40px 20px;
  }

  .benefit-card,
  .service-card,
  .workshop-card,
  .course-card,
  .value-card,
  .resource-card,
  .download-card,
  .info-card,
  .step-card,
  .event-card,
  .category-card,
  .option-card,
  .contact-person,
  .team-member {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .stats {
    flex-direction: column;
  }

  .stat h3 {
    font-size: 42px;
  }
}

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

.card,
.benefit-card,
.service-card,
.workshop-card,
.course-card,
.value-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* VINTAGE TEXTURE OVERLAYS */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(139, 99, 63, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(193, 154, 46, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  .btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .benefit-card,
  .service-card {
    border: 1px solid black;
    box-shadow: none;
  }
}