/* =================================================================
   WiseCraft Peak - Scandinavian Clean Design Styles
   Design Style: Light, Natural, Functional Beauty
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  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', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography - Scandinavian Clean */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #2D5016;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

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

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

a {
  color: #2D5016;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8B4513;
}

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

li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

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

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

/* Section Spacing */
section {
  margin-bottom: 60px;
  padding: 60px 0;
}

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

/* Buttons - Minimalist Scandinavian Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

.btn-primary:hover {
  background-color: #3d6b1e;
  border-color: #3d6b1e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5016;
  border-color: #2D5016;
}

.btn-secondary:hover {
  background-color: #2D5016;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

/* Header Styles */
.site-header {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
  position: static;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
}

.tagline {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
  display: none;
}

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #2c2c2c;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #2D5016;
}

.header-cta {
  display: flex;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #2D5016;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #3d6b1e;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 80px 30px 40px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mobile-menu-close:hover {
  background-color: #f5f5f5;
  border-color: #2D5016;
  color: #2D5016;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: #2c2c2c;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5016;
  padding-left: 12px;
}

/* Hero Section - Clean Scandinavian */
.hero {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2D5016;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 32px;
}

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

/* Feature Cards - Flexbox Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5016;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a5a5a;
}

/* Content Grid - Flexbox */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #d0d0d0;
}

/* Value Proposition Section */
.value-proposition {
  background-color: #ffffff;
  border-top: 1px solid #e8e8e8;
}

.value-proposition h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 48px;
}

/* Membership Cards */
.membership-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.membership-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  max-width: 480px;
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 2px;
  border: 2px solid #e8e8e8;
  position: relative;
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #2D5016;
}

.membership-card.featured {
  border-color: #2D5016;
  border-width: 2px;
}

.membership-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F4A460;
  color: #ffffff;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.membership-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  color: #2D5016;
}

.membership-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #2D5016;
  text-align: center;
  margin-bottom: 28px;
  font-family: 'Merriweather', serif;
}

.membership-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.membership-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #4a4a4a;
  position: relative;
  padding-left: 24px;
}

.membership-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2D5016;
  font-weight: 700;
}

.membership-card .btn {
  width: 100%;
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-item .price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
  margin-top: 16px;
}

/* Testimonials - High Contrast */
.testimonials {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border-left: 4px solid #2D5016;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #2c2c2c;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: #2D5016;
  text-align: right;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2D5016 0%, #3d6b1e 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn-primary {
  background-color: #ffffff;
  color: #2D5016;
  border-color: #ffffff;
}

.cta-section .btn-primary:hover {
  background-color: #F4A460;
  color: #ffffff;
  border-color: #F4A460;
}

.cta-section .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
  background-color: #ffffff;
  color: #2D5016;
}

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Text & Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section > * {
  flex: 1 1 300px;
}

/* Location & Hours */
.location-hours {
  background-color: #ffffff;
  padding: 60px 0;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.location-info,
.hours-info,
.contact-info {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.location-info h3,
.hours-info h3,
.contact-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2D5016;
}

.note {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
  margin-top: 16px;
}

/* Footer */
.site-footer {
  background-color: #2c2c2c;
  color: #d9d9d9;
  padding: 60px 0 30px;
}

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

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

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

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #b0b0b0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #d9d9d9;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #F4A460;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  display: block;
  padding: 8px 16px;
  background-color: #3a3a3a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #2D5016;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #4a4a4a;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: #b0b0b0;
}

.footer-legal a:hover {
  color: #F4A460;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
}

thead {
  background-color: #f5f5f5;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #2D5016;
  border-bottom: 2px solid #e8e8e8;
}

td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #4a4a4a;
}

tr:hover {
  background-color: #fafafa;
}

/* Workshop Cards */
.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.workshop-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.workshop-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2D5016;
}

.workshop-card p {
  margin-bottom: 12px;
  font-size: 15px;
}

.workshop-card strong {
  color: #2D5016;
  font-weight: 600;
}

.availability {
  display: block;
  margin: 16px 0;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-left: 3px solid #F4A460;
  font-size: 14px;
  color: #5a5a5a;
}

/* Event Cards */
.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.event-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D5016;
}

.event-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2D5016;
}

/* Categories Grid */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.category-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

/* Gallery Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.filter-btn {
  padding: 10px 24px;
  background-color: #ffffff;
  color: #2c2c2c;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #2D5016;
  color: #ffffff;
  border-color: #2D5016;
}

/* Contact Form */
.contact-form-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background-color: #f5f5f5;
  padding: 20px;
  border-left: 4px solid #2D5016;
  margin-bottom: 24px;
  font-size: 16px;
  color: #4a4a4a;
}

.privacy-note {
  font-size: 13px;
  color: #6b6b6b;
  margin-top: 20px;
}

/* Contact Options */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  text-align: center;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.contact-option img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.contact-option h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

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

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

.legal-content h2 {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.legal-content h3 {
  margin-top: 24px;
  color: #4a4a4a;
}

.last-updated {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
  margin-bottom: 32px;
}

.back-link {
  margin-top: 60px;
  text-align: center;
}

/* Thank You Page */
.thank-you-page {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2D5016;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.subtitle {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 24px;
}

/* Story Section */
.story {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 40px auto;
  padding-left: 40px;
  border-left: 2px solid #2D5016;
}

.timeline-item {
  position: relative;
  padding: 16px 0 16px 32px;
  margin-bottom: 24px;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  background-color: #2D5016;
  border-radius: 50%;
}

.timeline-item strong {
  display: block;
  font-size: 20px;
  color: #2D5016;
  margin-bottom: 8px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2D5016;
}

/* Achievements */
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.achievement-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: #2D5016;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}

/* Facilities Grid */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.facility-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.facility-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5016;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.feature-item img {
  width: 50px;
  height: 50px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

  .tagline {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card,
  .service-item,
  .category-card,
  .membership-card,
  .workshop-card,
  .event-card,
  .testimonial-card {
    flex: 1 1 100%;
  }

  .text-image-section {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-card {
    flex: 1 1 calc(50% - 24px);
  }

  .service-item {
    flex: 1 1 calc(50% - 24px);
  }

  .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .workshop-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .tagline {
    display: block;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .site-header,
  .site-footer,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* Utility Classes */
.section-intro {
  font-size: 18px;
  color: #5a5a5a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.pricing-note {
  background-color: #f5f5f5;
  padding: 16px;
  border-left: 4px solid #F4A460;
  margin-top: 32px;
  font-size: 15px;
}

.booking-note,
.registration-note,
.info-element,
.membership-note {
  text-align: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 24px;
  font-style: italic;
}

.accessibility-note,
.special-note {
  background-color: #f5f5f5;
  padding: 16px;
  border-left: 4px solid #2D5016;
  margin-top: 24px;
  font-size: 15px;
  color: #4a4a4a;
}

/* Mission Statement */
.mission-statement {
  font-size: 20px;
  line-height: 1.7;
  color: #2D5016;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 500;
}

/* Image Descriptions & Gallery */
.seasons-grid,
.moments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.season-block,
.moment-block {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.season-block h3,
.moment-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2D5016;
}

blockquote.quote {
  background-color: #f5f5f5;
  padding: 32px;
  border-left: 4px solid #2D5016;
  margin: 40px 0;
  font-size: 18px;
  font-style: italic;
  color: #4a4a4a;
}

/* Contact Page Specifics */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.address-block,
.directions-block,
.accessibility-block {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 280px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.hours-block {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.hours-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #2D5016;
}

.hours-block ul {
  list-style: none;
  padding: 0;
}

.hours-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.special-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  font-size: 14px;
  color: #6b6b6b;
}

.parking-note {
  font-size: 14px;
  color: #6b6b6b;
  font-style: italic;
  margin-top: 16px;
}

/* Visit Prompt */
.visit-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.visit-option {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.visit-option h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2D5016;
}

/* Thank You Page Specific */
.confirmation-message {
  background-color: #f5f5f5;
  padding: 32px;
  border-radius: 2px;
  margin: 32px 0;
}

.next-steps {
  text-align: left;
  margin: 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ol {
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 20px;
  line-height: 1.7;
}

.timeline-note {
  text-align: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 24px;
  font-style: italic;
}

.while-waiting {
  margin: 60px 0;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
}

.suggestion-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.return-navigation {
  margin: 60px 0;
}

.nav-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.nav-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background-color: #ffffff;
  padding: 28px;
  text-align: center;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2D5016;
}

.nav-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2D5016;
}

.nav-card p {
  font-size: 15px;
  color: #5a5a5a;
}

.closing-message {
  margin: 60px 0;
  text-align: center;
}

.signature {
  margin-top: 32px;
  font-size: 16px;
}

.signature em {
  display: block;
  margin-top: 8px;
  color: #6b6b6b;
  font-size: 14px;
}

/* Price Highlight */
.price-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #2D5016;
  text-align: center;
  margin: 24px 0;
  font-family: 'Merriweather', serif;
}

.ideal-for {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 2px;
  margin-top: 24px;
  font-size: 15px;
}

/* Membership Detail Cards */
.membership-detail-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.membership-detail {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 2px;
  border: 2px solid #e8e8e8;
  position: relative;
}

.membership-detail.featured {
  border-color: #2D5016;
}

.membership-detail h2 {
  font-size: 28px;
  margin-bottom: 16px;
  text-align: center;
}

.membership-detail h3 {
  font-size: 20px;
  margin: 24px 0 16px;
  color: #2D5016;
}

/* Workshop Intro */
.workshop-intro {
  background-color: #ffffff;
  padding: 60px 0;
}

.season-indicator {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #8B4513;
  margin-bottom: 32px;
}

/* Festivals Grid */
.festivals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.festival-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.festival-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2D5016;
}

.festival-card .price {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: #8B4513;
}

/* Photo Credit */
.photo-credit {
  text-align: center;
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 16px;
}

/* Smooth Transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

button,
.btn,
a {
  transition: all 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #2D5016;
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background-color: #F4A460;
  color: #ffffff;
}

::-moz-selection {
  background-color: #F4A460;
  color: #ffffff;
}