/* ============================================
   QUIVER GEAR - MODERN BOLD DESIGN SYSTEM
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   MODERN BOLD TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

a {
  color: #2C5F2D;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #8B4513;
  transform: translateY(-2px);
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 12px;
  font-size: 18px;
}

strong {
  font-weight: 800;
  color: #000000;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

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

header {
  background: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #F4E8D0;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #F4E8D0;
  transform: none;
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5F2D;
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000000;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8B4513;
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  padding: 16px 0;
  border-bottom: 3px solid #2C5F2D;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4E8D0;
  border-bottom-color: #F4E8D0;
  padding-left: 20px;
  transform: none;
}

/* ============================================
   HERO SECTIONS - MODERN BOLD
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::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;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 32px;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  color: #F4E8D0;
  font-weight: 600;
  line-height: 1.6;
}

.breadcrumb {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #F4E8D0;
}

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

/* ============================================
   BUTTONS - BOLD & VIBRANT
   ============================================ */

.btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

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

.btn-primary {
  background: #8B4513;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(139,69,19,0.4);
}

.btn-primary:hover {
  background: #6d3410;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139,69,19,0.6);
  color: #ffffff;
}

.btn-secondary {
  background: #000000;
  color: #F4E8D0;
  border: 3px solid #F4E8D0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
  background: #F4E8D0;
  color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(244,232,208,0.4);
}

.hero-cta {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.link-secondary {
  color: #F4E8D0;
  font-weight: 700;
  text-decoration: underline;
  font-size: 18px;
}

.link-secondary:hover {
  color: #ffffff;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */

.trust-indicators {
  margin-top: 40px;
  padding: 24px;
  background: rgba(0,0,0,0.3);
  border-left: 6px solid #F4E8D0;
}

.trust-indicators p {
  font-size: 18px;
  font-weight: 700;
  color: #F4E8D0;
  margin: 0;
}

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

.values-grid,
.services-grid,
.steps-grid,
.stats-grid,
.benefits-grid,
.categories-grid,
.collections-grid,
.access-methods,
.contact-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.value-item,
.service-card,
.step,
.stat-item,
.benefit-item,
.category-item,
.collection-card,
.method,
.contact-item,
.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 12px 12px 0 rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.value-item:hover,
.service-card:hover,
.benefit-item:hover,
.category-item:hover,
.collection-card:hover,
.method:hover,
.contact-item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 rgba(139,69,19,0.2);
  border-color: #2C5F2D;
}

.value-item h3,
.service-card h3,
.benefit-item h3,
.category-item h3,
.collection-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  font-size: 24px;
}

.value-item p,
.service-card p,
.benefit-item p,
.category-item p,
.collection-card p {
  color: #333333;
  font-size: 16px;
}

/* ============================================
   SERVICE CARDS - PRICING
   ============================================ */

.service-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #8B4513;
  margin: 24px 0;
  display: block;
}

.service-card ul {
  list-style: none;
  margin-top: 24px;
}

.service-card li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  font-size: 16px;
}

.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 900;
  font-size: 20px;
}

/* ============================================
   STEP CARDS
   ============================================ */

.step {
  text-align: center;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #2C5F2D;
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(44,95,45,0.3);
}

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

.supporting-text {
  text-align: center;
  font-size: 18px;
  color: #666666;
  font-style: italic;
  margin-top: 40px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.stats h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background: transparent;
  border: 4px solid #F4E8D0;
  box-shadow: none;
}

.stat-item:hover {
  background: #2C5F2D;
  border-color: #2C5F2D;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(44,95,45,0.4);
}

.stat-item h3 {
  font-size: 56px;
  color: #F4E8D0;
  margin-bottom: 16px;
  font-weight: 900;
}

.stat-item p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonials {
  background: #F4E8D0;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  font-weight: 900;
  color: #2C5F2D;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 800;
  color: #2C5F2D;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CLUB CARDS
   ============================================ */

.clubs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.club-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #2C5F2D;
  box-shadow: 8px 8px 0 rgba(44,95,45,0.2);
  transition: all 0.3s ease;
}

.club-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(139,69,19,0.3);
  border-color: #8B4513;
}

.club-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.club-card .schedule {
  background: #000000;
  color: #F4E8D0;
  padding: 12px 20px;
  display: inline-block;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 16px;
}

.club-card .current {
  color: #8B4513;
  font-weight: 700;
  font-style: italic;
  margin-top: 16px;
}

.club-card .members {
  color: #666666;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ============================================
   BLOG LAYOUTS
   ============================================ */

.post-featured {
  background: #000000;
  color: #ffffff;
  padding: 60px;
  margin-bottom: 60px;
  border: 6px solid #F4E8D0;
}

.post-featured h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
}

.post-featured .category {
  background: #2C5F2D;
  color: #ffffff;
  padding: 8px 20px;
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.post-featured .excerpt {
  font-size: 20px;
  color: #F4E8D0;
  margin-bottom: 24px;
  line-height: 1.8;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999999;
}

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

.post-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(44,95,45,0.2);
  border-color: #2C5F2D;
}

.post-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.post-card .meta {
  font-size: 14px;
  color: #666666;
  font-weight: 700;
  margin-top: 16px;
}

/* ============================================
   CONTACT FORMS & INFO
   ============================================ */

.form-container {
  background: #F4E8D0;
  padding: 60px;
  border: 6px solid #000000;
  margin-bottom: 40px;
}

.form-info {
  margin-bottom: 32px;
}

.form-info p {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.form-note {
  background: #ffffff;
  padding: 32px;
  border-left: 6px solid #8B4513;
  margin-top: 32px;
}

.form-note p {
  font-size: 16px;
  color: #333333;
}

.form-note strong {
  color: #8B4513;
}

.form-note a {
  color: #2C5F2D;
  text-decoration: underline;
  font-weight: 800;
}

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

.legal-page {
  padding: 60px 0;
}

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

.legal-content h2 {
  color: #2C5F2D;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 32px;
  border-bottom: 4px solid #000000;
  padding-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  padding-left: 16px;
}

.last-updated {
  font-size: 14px;
  color: #666666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a3a1b 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

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

.success-icon {
  width: 120px;
  height: 120px;
  background: #F4E8D0;
  color: #2C5F2D;
  font-size: 72px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.thank-you-hero h1 {
  color: #ffffff;
}

.thank-you-hero .subtitle {
  font-size: 22px;
  color: #F4E8D0;
}

.info-grid,
.explore-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.info-item,
.explore-card,
.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 40px;
  border: 4px solid #000000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
  text-align: center;
}

.explore-card:hover,
.action-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(139,69,19,0.2);
  border-color: #2C5F2D;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
  background: #000000;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 0;
}

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

.cta-section p {
  font-size: 22px;
  color: #F4E8D0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .secondary-text {
  font-size: 18px;
  color: #999999;
  margin-top: 24px;
}

/* ============================================
   FOOTER - BOLD & STRUCTURED
   ============================================ */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 32px;
}

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

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

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

.footer-column h4 {
  color: #F4E8D0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border-bottom: 3px solid #2C5F2D;
  padding-bottom: 12px;
}

.footer-column p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-column a {
  display: block;
  color: #cccccc;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F4E8D0;
  padding-left: 12px;
  transform: none;
}

.tagline {
  font-size: 18px;
  font-weight: 700;
  color: #F4E8D0;
  font-style: italic;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 2px solid #333333;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  font-size: 14px;
  color: #999999;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #999999;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: #F4E8D0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
  z-index: 998;
  border-top: 4px solid #F4E8D0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  font-size: 16px;
  color: #F4E8D0;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #2C5F2D;
  color: #ffffff;
}

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

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

.cookie-reject:hover {
  background: #8B4513;
  border-color: #8B4513;
}

.cookie-settings {
  background: transparent;
  color: #F4E8D0;
  text-decoration: underline;
  border: none;
  padding: 12px 24px;
}

.cookie-settings:hover {
  color: #ffffff;
}

/* ============================================
   COOKIE PREFERENCES MODAL
   ============================================ */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border: 6px solid #000000;
  box-shadow: 16px 16px 0 rgba(0,0,0,0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-content h2 {
  color: #000000;
  margin-bottom: 24px;
}

.cookie-preference {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #F4E8D0;
}

.cookie-preference:last-child {
  border-bottom: none;
}

.cookie-preference h3 {
  color: #2C5F2D;
  font-size: 20px;
  margin-bottom: 12px;
}

.cookie-preference label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  p { font-size: 16px; }

  /* Hero */
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }

  /* Navigation */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Buttons */
  .btn { padding: 14px 32px; font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }

  /* Grid layouts */
  .value-item,
  .service-card,
  .step,
  .stat-item,
  .benefit-item,
  .category-item,
  .collection-card,
  .method,
  .contact-item,
  .team-member,
  .club-card,
  .post-card,
  .info-item,
  .explore-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Stats */
  .stat-item { flex: 1 1 calc(50% - 32px); min-width: calc(50% - 32px); }

  /* Testimonials */
  .testimonial-card { flex: 1 1 100%; min-width: 100%; }

  /* Footer */
  .footer-content { flex-direction: column; }
  .footer-column { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  /* Cookie banner */
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-btn { flex: 1 1 calc(50% - 8px); }

  /* Sections */
  .section { padding: 40px 0; margin-bottom: 40px; }
  
  /* Featured post */
  .post-featured { padding: 32px; }
  .post-featured h2 { font-size: 28px; }
  .post-featured .excerpt { font-size: 16px; }

  /* Form container */
  .form-container { padding: 32px 24px; }

  /* CTA sections */
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 32px; }
  .cta-section p { font-size: 18px; }

  /* Thank you page */
  .thank-you-hero { padding: 60px 0; }
  .success-icon { width: 80px; height: 80px; font-size: 48px; }
}

@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }

  /* Cards padding */
  .value-item,
  .service-card,
  .benefit-item,
  .category-item,
  .collection-card,
  .method,
  .contact-item,
  .team-member,
  .club-card,
  .post-card,
  .info-item,
  .explore-card,
  .action-card {
    padding: 24px;
  }

  /* Stats grid */
  .stat-item { flex: 1 1 100%; min-width: 100%; }

  /* Mobile menu */
  .mobile-menu { max-width: 100%; }
  .mobile-nav { padding: 80px 24px 24px; }
  .mobile-nav a { font-size: 20px; }

  /* Cookie banner */
  .cookie-btn { flex: 1 1 100%; }

  /* Hero CTA */
  .hero-cta { gap: 16px; }
}

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

.text-center { text-align: center; }
.text-bold { font-weight: 900; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

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

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

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

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 4px solid #8B4513;
  outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 3px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}