/* Design Token System */
:root {
  /* Color Palette - Brand Colors */
  --rosewood: #6F0B13;
  --citron: #D3C84A;
  --citron-text: #D3C84A;
  --black-bean: #380F02;
  --pakistan-green: #003D00;
  --dark-moss-green: #3B590D;
  
  /* Color Palette - Tints */
  --light-rosewood: rgba(111, 11, 19, 0.1);
  --light-citron: rgba(211, 200, 74, 0.2);
  --light-pakistan-green: rgba(0, 61, 0, 0.1);
  --light-moss-green: rgba(59, 89, 13, 0.15);
  
  /* Color Palette - Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F5;
  --medium-gray: #CCCCCC;
  --dark-gray: #666666;
  --text-dark: var(--black-bean);
  --text-light: var(--off-white);
  --text-muted: var(--dark-gray);
  
  /* Color Palette - Semantic Colors */
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #dc3545;
  --color-info: #17a2b8;
  
  /* Shadow System */
  --shadow-light: rgba(56, 15, 2, 0.1);
  --shadow-medium: rgba(56, 15, 2, 0.2);
  --shadow-heavy: rgba(56, 15, 2, 0.3);
  
  /* Fluid Typography Scale - Original Sizes */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.125rem, 1.0375rem + 0.4375vw, 1.375rem);
  --step-2: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  --step-3: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --step-4: clamp(1.875rem, 1.4875rem + 1.9375vw, 3rem);
  --step-5: clamp(2.25rem, 1.725rem + 2.625vw, 4rem);
  --step-6: clamp(2.75rem, 1.975rem + 3.875vw, 5.25rem);
  
  /* Spacing Scale - Original 8px Base Unit System */
  --space-3xs: 0.25rem; /* 4px */
  --space-2xs: 0.5rem;  /* 8px */
  --space-xs: 0.75rem;  /* 12px */
  --space-s: 1rem;      /* 16px */
  --space-m: 1.5rem;    /* 24px */
  --space-l: 2rem;      /* 32px */
  --space-xl: 3rem;     /* 48px */
  --space-2xl: 4rem;    /* 64px */
  --space-3xl: 6rem;    /* 96px */
  
  /* Animation Tokens */
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.6s;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout Tokens - 20% Wider Text Area Only */
  --container-max-width: 1440px; /* 1200px * 1.2 for better line length */
  --container-padding: var(--space-s); /* Keep original padding */
  --border-radius-s: 0.5rem;
  --border-radius-m: 1rem;
  --border-radius-l: 1.5rem;
  --border-radius-xl: 2rem;
  
  /* Section Layout System - Original */
  --section-padding-y: var(--space-3xl);
  --section-padding-y-mobile: var(--space-2xl);
  --section-separator-height: 3px;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: var(--step-0);
  font-display: swap;
}


/* Layout Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

/* Full-Width Section System */
.section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  padding: var(--section-padding-y) 0;
}

.section__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

/* Section Variants */
.section--hero {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  border-bottom: var(--section-separator-height) solid var(--rosewood);
  overflow: hidden;
}

.section--books {
  background: var(--pakistan-green);
  border-bottom: var(--section-separator-height) solid var(--citron);
  color: var(--text-light);
}

.section--books .section__container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
}

.section--books .book-showcase__layout {
  max-width: none;
  margin: 0;
  padding: var(--space-xl);
  gap: var(--space-2xl);
}

.section--books .book-showcase__cover--large {
  flex: 0 0 350px;
  max-width: 350px;
}

.section--books .book-showcase__content {
  flex: 1 1 50%;
}

.section--books .book-showcase {
  display: flex !important;
  grid-template-columns: none;
}

.section--about {
  background: linear-gradient(135deg, var(--light-citron) 0%, var(--off-white) 100%);
  border-bottom: 2px solid var(--rosewood);
}

.section--workshop {
  background: linear-gradient(135deg, var(--rosewood), var(--dark-moss-green));
  border-bottom: var(--section-separator-height) solid var(--citron);
  color: var(--text-light);
  overflow: hidden;
}

.section--contact {
  background: linear-gradient(135deg, var(--light-pakistan-green) 0%, var(--light-moss-green) 100%);
  border-bottom: 2px solid var(--pakistan-green);
}

/* Section Background Decorations */
.section--hero::before,
.section--workshop::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.section--workshop::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: twinkle 3s ease-in-out infinite;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px var(--shadow-light);
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
  margin-bottom: var(--space-l);
  position: sticky;
  top: 0;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation - BEM Structure */
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-m) 0;
}

.navigation__brand {
  flex-shrink: 0;
}

.navigation__logo {
  font-size: var(--step-4);
  font-weight: bold;
  background: linear-gradient(135deg, var(--rosewood), var(--citron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out);
  display: inline-block;
}

.navigation__logo:hover {
  transform: scale(1.05);
}

.navigation__list {
  display: flex;
  list-style: none;
  gap: var(--space-l);
  margin: 0;
  padding: 0;
}

.navigation__item {
  flex-shrink: 0;
}

.navigation__link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: var(--step-1);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  padding: var(--space-2xs) var(--space-s);
  border-radius: var(--border-radius-l);
  display: block;
}

.navigation__link:hover {
  background: var(--light-rosewood);
  color: var(--rosewood);
  transform: translateY(-2px);
}

.navigation__link[aria-current="page"] {
  background: linear-gradient(135deg, var(--rosewood), var(--citron));
  color: white;
  box-shadow: 0 4px 15px var(--shadow-heavy);
}

/* Navigation Toggle - BEM Structure */
.navigation__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--space-2xs);
  z-index: 1001;
  background: none;
  border: none;
  gap: var(--space-3xs);
}

.navigation__toggle-line {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all var(--duration-normal) var(--ease-out);
  border-radius: 2px;
}

.navigation__toggle[aria-expanded="true"] .navigation__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.navigation__toggle[aria-expanded="true"] .navigation__toggle-line:nth-child(2) {
  opacity: 0;
}

.navigation__toggle[aria-expanded="true"] .navigation__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - BEM Structure */
.hero-section {
  text-align: center;
}

.hero-section__content {
  position: relative;
  z-index: 2;
}


@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-section__layout {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.hero-section__image {
  flex: 0 0 500px;
}

.hero-section__image--large {
  flex: 0 0 650px;
}

.hero-section__image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-l);
  box-shadow: 0 15px 40px var(--shadow-medium);
  transition: transform var(--duration-normal) var(--ease-out);
}

.hero-section__image img:hover {
  transform: translateY(-5px);
}

.hero-section__text {
  flex: 1;
  text-align: left;
}

.hero-section__text-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px var(--shadow-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-section__title {
  font-size: var(--step-6);
  margin-bottom: var(--space-m);
  /* background: linear-gradient(135deg, var(--text-dark), var(--rosewood)); */
  background: linear-gradient(135deg, var(--text-dark), var(--rosewood));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.hero-section__subtitle {
  font-size: var(--step-3);
  color: var(--text-dark);
  margin-bottom: var(--space-l);
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Button System - BEM Structure */
.hero-section__actions {
  display: flex;
  gap: var(--space-m);
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.button {
  display: inline-block;
  padding: var(--space-s) var(--space-l);
  text-decoration: none;
  border-radius: var(--border-radius-xl);
  font-weight: bold;
  font-size: var(--step-1);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button--primary {
  background: linear-gradient(135deg, var(--rosewood), var(--citron));
  color: white;
  box-shadow: 0 8px 25px var(--shadow-heavy);
}

.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--shadow-heavy);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--rosewood);
  border: 2px solid var(--rosewood);
  box-shadow: 0 8px 25px var(--shadow-light);
}

.button--secondary:hover {
  background: var(--rosewood);
  color: white;
  transform: translateY(-3px);
}

/* Books Section - BEM Structure */
.books-section__content {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: var(--step-5);
  margin-bottom: var(--space-xl);
  color: inherit;
  position: relative;
}

.section-title::after {
  content: '✨';
  font-size: 2rem;
  margin-left: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

/* Book Showcase - BEM Structure with Fallbacks */
.book-showcase {
  /* Flexbox fallback for older browsers */
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: start;
  margin-top: var(--space-xl);
}

/* CSS Grid enhancement for modern browsers */
@supports (display: grid) {
  .book-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.book-showcase__layout {
  display: flex;
  gap: var(--space-l);
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-l);
  padding: var(--space-xl);
  box-shadow: 0 15px 45px var(--shadow-light);
  color: var(--text-dark);
}

.book-showcase__cover {
  flex: 0 0 200px;
}

.book-showcase__cover--large {
  flex: 0 0 350px;
}

.book-showcase__cover img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-m);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.book-showcase__content {
  flex: 1;
}

.book-showcase__title {
  font-size: var(--step-4);
  color: var(--text-dark);
  margin-bottom: var(--space-s);
  font-weight: bold;
}

.book-showcase__description {
  color: var(--text-dark);
  margin-bottom: var(--space-l);
  line-height: 1.6;
  font-size: var(--step-1);
}

.book-showcase__actions {
  display: flex;
  gap: var(--space-m);
  flex-wrap: wrap;
}

/* .book-showcase__aside {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-l);
  padding: var(--space-l);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.book-showcase__aside p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: var(--step-0);
  margin-bottom: var(--space-s);
}

.book-showcase__aside p:last-child {
  margin-bottom: 0;
} */

/* About Section - BEM Structure */
.about-section__content {
  position: relative;
  z-index: 2;
}

.about-section__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-section__photo-gallery {
  grid-column: 2;
  grid-row: 1;
}

.photo-gallery__main img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-l);
  box-shadow: 0 15px 40px var(--shadow-medium);
  transition: transform var(--duration-normal) var(--ease-out);
}

.photo-gallery__main img:hover {
  transform: translateY(-5px);
}

.photo-gallery__additional {
  margin-top: var(--space-l);
}

.photo-gallery__placeholder {
  background: var(--light-rosewood);
  border: 2px dashed var(--rosewood);
  border-radius: var(--border-radius-l);
  padding: var(--space-xl);
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-gallery__placeholder-text {
  color: var(--rosewood);
  font-size: var(--step-1);
  font-weight: 500;
  opacity: 0.8;
}

.about-section__text {
  grid-column: 1;
  grid-row: 1;
  padding: var(--space-l);
}

.about-section__subtitle {
  font-size: var(--step-4);
  margin-bottom: var(--space-m);
  color: var(--text-dark);
}

.about-section__text p {
  margin-bottom: var(--space-m);
  font-size: var(--step-1);
  color: var(--text-dark);
  line-height: 1.7;
}

/* Events Section - BEM Structure */
.events-section {
  background: var(--light-rosewood);
  border: 2px solid var(--rosewood);
  border-radius: var(--border-radius-m);
  padding: var(--space-m);
  margin-top: var(--space-l);
}

.events-section__title {
  font-size: var(--step-2);
  color: var(--rosewood);
  margin-bottom: var(--space-s);
  font-weight: bold;
}

.events-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-section__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2xs) 0;
  border-bottom: 1px solid rgba(111, 11, 19, 0.2);
}

.events-section__item:last-child {
  border-bottom: none;
}

.events-section__date {
  font-weight: bold;
  color: var(--rosewood);
  font-size: var(--step-0);
  flex-shrink: 0;
}

.events-section__event {
  color: var(--text-dark);
  font-size: var(--step-0);
  text-align: right;
  margin-left: var(--space-s);
}

.events-section__note {
  margin-top: var(--space-s);
  padding: var(--space-s);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-s);
  font-style: italic;
  color: var(--text-dark);
  font-size: var(--step-0);
}

/* Contact Section - BEM Structure */
.contact-section__content {
  position: relative;
  z-index: 2;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-l);
}

.contact-form__group {
  margin-bottom: var(--space-l);
}

.contact-form__label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--text-dark);
  font-size: var(--step-1);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: var(--space-s);
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius-m);
  font-size: var(--step-0);
  font-family: inherit;
  transition: all var(--duration-normal) var(--ease-out);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--rosewood);
  box-shadow: 0 0 20px var(--light-rosewood);
  transform: translateY(-2px);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  width: 100%;
  margin-top: var(--space-s);
}

/* Workshop Section - BEM Structure */
.workshop-section {
  text-align: center;
}

.workshop-section__content {
  position: relative;
  z-index: 2;
}

.workshop-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.workshop-section__title {
  font-size: var(--step-4);
  margin-bottom: var(--space-m);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.workshop-section p {
  font-size: var(--step-1);
  margin-bottom: var(--space-l);
  opacity: 0.9;
}

.workshop-section__cta {
  margin-top: var(--space-s);
}

/* Workshop Layout - BEM Structure */
.workshop-section__layout {
  /* Flexbox fallback for older browsers */
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

/* CSS Grid enhancement for modern browsers */
@supports (display: grid) {
  .workshop-section__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
  }
}

.workshop-section__image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-l);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.workshop-section__text {
  text-align: left;
}

.workshop-section__text h2 {
  margin-bottom: var(--space-m);
}

.workshop-section__text p {
  margin-bottom: var(--space-m);
}

/* Page utility */
.page {
  display: block;
  margin-bottom: 4rem;
  scroll-margin-top: 120px;
}

/* Footer - BEM Structure */
.footer {
  background: var(--black-bean);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-s);
  margin-top: var(--space-2xl);
}


.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-l);
  margin-bottom: var(--space-l);
}


.footer__title {
  color: var(--citron);
  font-size: var(--step-1);
  margin-bottom: var(--space-s);
  font-weight: bold;
}

.footer__text {
  font-size: var(--step-0);
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer__link {
  color: var(--citron);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.footer__link:hover {
  color: var(--text-light);
}

.footer__bottom {
  border-top: 1px solid rgba(211, 200, 74, 0.3);
  padding-top: var(--space-m);
  text-align: center;
}

.footer__copyright {
  font-size: var(--step-0);
  opacity: 0.8;
  margin: 0;
}

/* Responsive Design - Mobile First (320px-480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-2xs);
  }
  
  .section {
    padding: var(--section-padding-y-mobile) 0;
  }

  .navigation__toggle {
    display: flex;
  }

  .navigation__list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-l);
    z-index: 1000;
  }

  .navigation__list[aria-expanded="true"] {
    display: flex;
  }

  .about-section__layout {
    display: flex !important;
    flex-direction: column;
    gap: var(--space-l);
  }

  .about-section__photo-gallery {
    order: 2;
  }

  .about-section__text {
    order: 1;
    padding: 0;
  }

  .hero-section__layout {
    flex-direction: column;
    gap: var(--space-l);
    text-align: center;
  }

  .hero-section__image,
  .hero-section__image--large {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-section__title {
    font-size: var(--step-4);
  }

  .book-showcase,
  .about-section__layout {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

  .book-showcase__layout {
    flex-direction: column;
    text-align: center;
    padding: var(--space-l);
  }

  .book-showcase__cover--large {
    flex: none;
    max-width: 280px;
    margin: 0 auto;
  }

  .workshop-section__layout {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

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

  .hero-section__actions {
    justify-content: center;
  }
}

/* Tablet Portrait (481px-768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .navigation__toggle {
    display: flex;
  }

  .navigation__list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-l);
    z-index: 1000;
  }

  .about-section__layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
  }

  .about-section__photo-gallery {
    order: 2;
  }

  .about-section__text {
    order: 1;
  }

  .navigation__list[aria-expanded="true"] {
    display: flex;
  }

  .hero-section__layout {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
  }

  .book-showcase,
  .about-section__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .workshop-section__layout {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

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

  .hero-section__actions {
    justify-content: center;
  }
}

/* Large Tablet/Small Desktop (769px-1099px) */
@media (min-width: 769px) and (max-width: 1099px) {
  .navigation__toggle {
    display: flex;
  }

  .navigation__list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-l);
    z-index: 1000;
  }

  .navigation__list[aria-expanded="true"] {
    display: flex;
  }

  .section--books .book-showcase__layout {
    flex-direction: column;
    text-align: center;
  }

  .section--books .book-showcase__cover--large,
  .section--books .book-showcase__content {
    flex: none;
    width: 100%;
  }

  .section--books .book-showcase__cover--large {
    max-width: 350px;
    margin: 0 auto;
    flex: 0 0 350px;
  }
}

/* Desktop (1100px+) */
@media (min-width: 1100px) {
  .navigation__toggle {
    display: none;
  }

  .navigation__list {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-l);
    z-index: auto;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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