/* ========================================
   WHIMSY GLEN - MINIMALIST DESIGN SYSTEM
   ======================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

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

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

a {
  color: #7D3F7B;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5A2D58;
}

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

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

/* HEADER */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #7D3F7B;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background-color: #7D3F7B;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(125, 63, 123, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #7D3F7B;
}

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

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

.mobile-nav a:hover {
  color: #7D3F7B;
}

/* BUTTONS */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-button,
.cta-primary {
  background-color: #7D3F7B;
  color: #ffffff;
  border-color: #7D3F7B;
}

.cta-button:hover,
.cta-primary:hover {
  background-color: #5A2D58;
  border-color: #5A2D58;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 63, 123, 0.2);
}

.cta-secondary {
  background-color: transparent;
  color: #7D3F7B;
  border-color: #7D3F7B;
}

.cta-secondary:hover {
  background-color: #7D3F7B;
  color: #ffffff;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  padding: 80px 0;
  background-color: #fafafa;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero .note {
  font-size: 14px;
  color: #7D3F7B;
  margin-top: 16px;
}

.hero .last-updated,
.hero .effective-date {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

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

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

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4a4a4a;
}

/* VALUES SECTION */
.values {
  background-color: #ffffff;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background-color: #fafafa;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-item h3,
.value-item h4 {
  color: #7D3F7B;
  margin-bottom: 16px;
}

/* SERVICES PREVIEW */
.services-preview {
  background-color: #fafafa;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #7D3F7B;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #7D3F7B;
  margin-top: auto;
}

/* SERVICE DETAILED */
.service-detailed {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.service-detailed.premium {
  border: 2px solid #F4D58D;
  background-color: #fffef9;
}

.service-detailed .tagline {
  font-size: 18px;
  color: #7D3F7B;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 700;
  color: #7D3F7B;
  margin: 24px 0;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #ffffff;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #fafafa;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #7D3F7B;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #7D3F7B;
  font-style: normal;
  margin-top: auto;
}

/* CTA SECTION */
.cta-section {
  background-color: #7D3F7B;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.cta-section .cta-primary {
  background-color: #ffffff;
  color: #7D3F7B;
  border-color: #ffffff;
}

.cta-section .cta-primary:hover {
  background-color: #F4D58D;
  color: #1a1a1a;
  border-color: #F4D58D;
}

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

/* LOCATION */
.location {
  background-color: #fafafa;
  text-align: center;
}

.location p {
  margin-bottom: 12px;
}

/* STORY SECTION */
.story {
  background-color: #ffffff;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
}

/* MISSION SECTION */
.mission {
  background-color: #fafafa;
}

.mission > .container > p {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.mission h3 {
  text-align: center;
  margin: 48px 0 32px;
}

/* ACHIEVEMENTS */
.achievements {
  background-color: #7D3F7B;
  color: #ffffff;
}

.achievements h2 {
  color: #ffffff;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4D58D;
  margin-bottom: 8px;
}

.stat-item p:last-child {
  font-size: 16px;
  color: #ffffff;
}

/* EVENTS */
.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.event-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

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

.event-category {
  display: inline-block;
  background-color: #7D3F7B;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.event-date {
  font-size: 14px;
  color: #7D3F7B;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #7D3F7B;
  margin: 16px 0;
}

/* RECURRING EVENTS */
.recurring-events {
  background-color: #fafafa;
}

.recurring-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.recurring-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #7D3F7B;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recurring-item h3 {
  margin-bottom: 8px;
}

/* LIBRARY */
.library-intro {
  background-color: #ffffff;
  text-align: center;
}

.collections {
  background-color: #fafafa;
}

.collections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.collection-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #7D3F7B;
}

.collection-card h3 {
  color: #7D3F7B;
}

/* CATEGORIES */
.categories {
  background-color: #ffffff;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-item {
  background-color: #fafafa;
  padding: 16px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  background-color: #7D3F7B;
  color: #ffffff;
  transform: translateY(-2px);
}

/* HOW TO BORROW */
.how-to-borrow {
  background-color: #fafafa;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-item {
  flex: 1 1 calc(20% - 20px);
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #7D3F7B;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

/* MEMBERSHIP CTA */
.membership-cta {
  background-color: #7D3F7B;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.membership-cta h2 {
  color: #ffffff;
}

.membership-cta p {
  color: #ffffff;
  font-size: 18px;
}

.membership-cta .price {
  font-size: 48px;
  font-weight: 700;
  color: #F4D58D;
  margin: 24px 0;
}

/* BLOG */
.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.post-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #7D3F7B;
}

.post-category {
  display: inline-block;
  background-color: #F4D58D;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.post-meta {
  font-size: 14px;
  color: #666666;
  margin-top: auto;
}

/* POPULAR POSTS */
.popular-posts {
  background-color: #fafafa;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.popular-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #F4D58D;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.popular-item h4 {
  margin-bottom: 8px;
}

/* CONTACT */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #fafafa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.contact-card h3 {
  color: #7D3F7B;
  margin-bottom: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: #ffffff;
}

.form-notice {
  background-color: #fff9e6;
  border-left: 4px solid #F4D58D;
  padding: 24px;
  border-radius: 4px;
  margin-top: 32px;
}

.form-notice p {
  margin: 0;
  color: #2c2c2c;
}

/* FAQ */
.faq-quick {
  background-color: #fafafa;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.faq-item h4 {
  color: #7D3F7B;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #ffffff;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #7D3F7B;
}

.legal-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.legal-content a {
  text-decoration: underline;
}

/* CONFIRMATION & THANK YOU */
.confirmation {
  background-color: #fafafa;
  text-align: center;
}

.next-steps {
  background-color: #ffffff;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.suggestion-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background-color: #fafafa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.back-home {
  background-color: #ffffff;
  text-align: center;
}

/* FOOTER */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #F4D58D;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #e0e0e0;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  font-size: 14px;
  color: #2c2c2c;
  margin: 0;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background-color: #7D3F7B;
  color: #ffffff;
  border-color: #7D3F7B;
}

#accept-all-cookies:hover {
  background-color: #5A2D58;
  border-color: #5A2D58;
}

#reject-all-cookies {
  background-color: #f0f0f0;
  color: #2c2c2c;
  border-color: #e0e0e0;
}

#reject-all-cookies:hover {
  background-color: #e0e0e0;
}

#cookie-settings {
  background-color: transparent;
  color: #7D3F7B;
  border-color: #7D3F7B;
}

#cookie-settings:hover {
  background-color: #7D3F7B;
  color: #ffffff;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c2c2c;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #7D3F7B;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #fafafa;
  border-radius: 4px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  color: #7D3F7B;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

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

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

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

.modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-preferences {
  background-color: #7D3F7B;
  color: #ffffff;
  border-color: #7D3F7B;
}

#save-preferences:hover {
  background-color: #5A2D58;
  border-color: #5A2D58;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  header .container {
    justify-content: space-between;
  }
  
  .main-nav {
    display: none;
  }
  
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group a {
    width: 100%;
  }
  
  /* Sections */
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  section h2 {
    margin-bottom: 32px;
  }
  
  /* Grids */
  .values-grid,
  .services-grid,
  .testimonials-grid,
  .events-grid,
  .collections-grid,
  .posts-grid,
  .contact-cards,
  .suggestions-grid {
    gap: 16px;
  }
  
  .value-item,
  .service-card,
  .testimonial-card,
  .event-card,
  .collection-card,
  .post-card,
  .contact-card,
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  /* Footer */
  .footer-content {
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 calc(50% - 16px);
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Buttons */
  .cta-button,
  .cta-primary,
  .cta-secondary {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  /* Cards */
  .service-card,
  .event-card,
  .post-card {
    padding: 24px;
  }
  
  /* Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat-item {
    flex: 1 1 100%;
  }
}

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

.hero,
.value-item,
.service-card,
.testimonial-card,
.event-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal,
  .cta-button,
  .cta-primary,
  .cta-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}