:root {
  --green-dark: #1B4332; --green-mid: #2D6A4F; --green-light: #40916C;
  --green-pale: #74C69D; --gold: #C9A87C; --gold-dark: #A07850;
  --parchment: #F4ECD8; --parchment-dark: #E8D9C0; --ink: #2C2C2C;
  --ink-light: #4A4A4A; --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(27,67,50,0.12);
  --shadow-lg: 0 12px 48px rgba(27,67,50,0.18);
  --radius: 12px; --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--parchment); color: var(--ink); overflow-x: hidden; line-height: 1.7; }

/* Preloader */
.preloader { position: fixed; inset: 0; background: var(--green-dark); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.book-loader { display: flex; gap: 6px; justify-content: center; margin-bottom: 20px; }
.book-page { width: 12px; height: 40px; background: var(--gold); border-radius: 2px; animation: bookBounce 0.8s ease-in-out infinite; }
.book-page:nth-child(2) { animation-delay: 0.15s; }
.book-page:nth-child(3) { animation-delay: 0.3s; }
@keyframes bookBounce { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.4); } }
.preloader-text { color: var(--parchment); font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: 0.05em; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(27,67,50,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,124,0.2); transition: var(--transition); }
.site-header.scrolled { background: rgba(27,67,50,0.98); box-shadow: var(--shadow); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-block { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--parchment); line-height: 1.2; }
.logo-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link { color: rgba(244,236,216,0.8); text-decoration: none; font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.85rem; border-radius: 8px; transition: var(--transition); letter-spacing: 0.02em; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,168,124,0.12); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--parchment); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--green-dark); }
.hero-shelf { position: absolute; bottom: 0; left: 0; right: 0; display: flex; flex-direction: column; }
.shelf-row { display: flex; align-items: flex-end; padding: 0 2rem; gap: 4px; height: 120px; }
.shelf-row--2 { height: 100px; opacity: 0.6; }
.book { flex-shrink: 0; border-radius: 3px 3px 0 0; animation: bookSway 4s ease-in-out infinite; }
.b1  { width: 28px; height: 90px;  background: #8B4513; animation-delay: 0s; }
.b2  { width: 22px; height: 75px;  background: #2D6A4F; animation-delay: 0.3s; }
.b3  { width: 32px; height: 100px; background: #C9A87C; animation-delay: 0.6s; }
.b4  { width: 18px; height: 65px;  background: #3D405B; animation-delay: 0.9s; }
.b5  { width: 26px; height: 85px;  background: #74C69D; animation-delay: 1.2s; }
.b6  { width: 30px; height: 95px;  background: #A07850; animation-delay: 1.5s; }
.b7  { width: 20px; height: 70px;  background: #1B4332; animation-delay: 1.8s; }
.b8  { width: 34px; height: 105px; background: #6B4226; animation-delay: 2.1s; }
.b9  { width: 24px; height: 80px;  background: #40916C; animation-delay: 2.4s; }
.b10 { width: 28px; height: 88px;  background: #81B29A; animation-delay: 2.7s; }
.b11 { width: 16px; height: 60px;  background: #C9A87C; animation-delay: 3s; }
.b12 { width: 30px; height: 92px;  background: #2D6A4F; animation-delay: 3.3s; }
@keyframes bookSway { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.6) 50%, rgba(27,67,50,0.95) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 2rem; padding-top: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,124,0.15); border: 1px solid rgba(201,168,124,0.3); color: var(--gold); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.5rem; }
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; color: var(--parchment); margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.1em; }
.title-accent { color: var(--gold); font-style: italic; }
.hero-desc { color: rgba(244,236,216,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; background: rgba(244,236,216,0.08); border: 1px solid rgba(201,168,124,0.2); border-radius: var(--radius-lg); padding: 1.5rem 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 1.5rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-plus { font-size: 1.2rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(244,236,216,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(201,168,124,0.3); }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(244,236,216,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: scrollBounce 1.5s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: var(--transition); letter-spacing: 0.02em; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-primary { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,124,0.4); }
.btn-outline { background: transparent; color: var(--parchment); border-color: rgba(244,236,216,0.4); }
.btn-outline:hover { background: rgba(244,236,216,0.1); border-color: var(--parchment); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--green-dark); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #e0c090; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Marquee */
.marquee-strip { background: var(--gold); overflow: hidden; padding: 0.75rem 0; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 0.85rem; font-weight: 600; color: var(--green-dark); letter-spacing: 0.04em; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 6rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); background: rgba(27,67,50,0.08); padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 1rem; }
.section-desc { color: var(--ink-light); font-size: 1rem; line-height: 1.8; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-frame img { width: 100%; height: 380px; object-fit: cover; display: block; }
.img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--green-dark); color: var(--gold); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; border: 1px solid rgba(201,168,124,0.3); }
.about-quote-card { background: var(--green-dark); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; border-left: 4px solid var(--gold); }
.about-quote-card blockquote { font-family: 'Playfair Display', serif; font-style: italic; color: var(--parchment); font-size: 1rem; line-height: 1.7; margin-bottom: 0.75rem; }
.about-quote-card cite { color: var(--gold); font-size: 0.8rem; font-weight: 600; }
.about-content p { color: var(--ink-light); margin-bottom: 1.25rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; background: var(--parchment); border-radius: var(--radius); padding: 1rem; border: 1px solid var(--parchment-dark); }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-item strong { display: block; font-weight: 700; color: var(--ink); font-size: 0.9rem; margin-bottom: 0.2rem; }
.feature-item span { font-size: 0.8rem; color: var(--ink-light); }

/* Collection */
.collection { background: var(--parchment); }
.collection-filter { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.6rem 1.5rem; border-radius: 50px; border: 2px solid var(--parchment-dark); background: var(--white); color: var(--ink-light); font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: var(--transition); font-family: 'Plus Jakarta Sans', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--green-dark); color: var(--gold); border-color: var(--green-dark); }
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.book-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; border: 1px solid var(--parchment-dark); }
.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.book-card.hidden { display: none; }
.book-card-spine { width: 8px; background: var(--spine-color, #1B4332); flex-shrink: 0; }
.book-card-body { padding: 1.5rem; flex: 1; }
.book-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.book-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.book-card-body p { font-size: 0.875rem; color: var(--ink-light); line-height: 1.7; margin-bottom: 1rem; }
.book-card-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.book-card-meta span { font-size: 0.7rem; font-weight: 600; background: rgba(27,67,50,0.08); color: var(--green-mid); padding: 0.25rem 0.75rem; border-radius: 50px; }

/* Services */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--parchment); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--parchment-dark); position: relative; overflow: hidden; transition: var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--green-dark); }
.service-card:hover h3, .service-card:hover p { color: var(--parchment); }
.service-card:hover .service-num { color: rgba(201,168,124,0.3); }
.service-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: rgba(27,67,50,0.08); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; transition: var(--transition); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; transition: var(--transition); }
.service-card p { font-size: 0.875rem; color: var(--ink-light); line-height: 1.7; transition: var(--transition); }

/* Hours */
.hours-section { background: var(--green-dark); padding: 5rem 0; }
.hours-card { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hours-left p { margin-bottom: 2rem; }
.hours-table { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(201,168,124,0.2); }
.hours-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; background: rgba(244,236,216,0.05); border-bottom: 1px solid rgba(201,168,124,0.1); }
.hours-row:last-child { border-bottom: none; }
.day { flex: 1; color: var(--parchment); font-weight: 500; font-size: 0.9rem; }
.time { color: rgba(244,236,216,0.7); font-size: 0.875rem; min-width: 140px; }
.status { padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.status.open { background: rgba(116,198,157,0.2); color: #74C69D; }
.status.closed { background: rgba(255,100,100,0.15); color: #ff8080; }
.hours-note { margin-top: 1rem; color: rgba(244,236,216,0.6); font-size: 0.8rem; }

/* Rules */
.rules { background: var(--parchment); }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rules-col { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--parchment-dark); }
.rules-col-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--parchment-dark); }
.rules-do-title { color: var(--green-dark); border-color: rgba(27,67,50,0.2); }
.rules-dont-title { color: #8B1A1A; border-color: rgba(139,26,26,0.2); }
.rules-info-title { color: var(--gold-dark); border-color: rgba(160,120,80,0.2); }
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.rules-list li { font-size: 0.875rem; color: var(--ink-light); line-height: 1.6; padding-left: 1.25rem; position: relative; }
.rules-do li::before { content: "✓"; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }
.rules-dont li::before { content: "✗"; position: absolute; left: 0; color: #c0392b; font-weight: 700; }
.rules-info li::before { content: "•"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.rules-list strong { color: var(--ink); }

/* Gallery */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item--large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; min-height: 200px; }
.gallery-item--large img { min-height: 400px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(27,67,50,0.7); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--parchment); font-weight: 600; font-size: 0.9rem; }

/* Contact */
.contact { background: var(--parchment); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: 1.25rem; border: 1px solid var(--parchment-dark); transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card h4 { font-weight: 700; color: var(--ink); font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-card p { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }
.contact-card a { color: var(--green-mid); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--green-dark); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--parchment-dark); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--parchment-dark); border-radius: var(--radius); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--ink); background: var(--parchment); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green-mid); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-success { display: none; margin-top: 1rem; padding: 0.85rem 1rem; background: rgba(27,67,50,0.08); border-radius: var(--radius); color: var(--green-dark); font-weight: 600; font-size: 0.875rem; text-align: center; }
.form-success.show { display: block; }

/* Footer */
.site-footer { background: #0D2B1E; }
.footer-top { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-tagline { color: rgba(244,236,216,0.6); font-size: 0.875rem; line-height: 1.7; margin: 1.25rem 0; }
.footer-affil { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-affil span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201,168,124,0.15); color: var(--gold); padding: 0.3rem 0.75rem; border-radius: 50px; border: 1px solid rgba(201,168,124,0.2); }
.footer-links h4, .footer-contact h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--parchment); margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(244,236,216,0.6); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(244,236,216,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(201,168,124,0.1); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: rgba(244,236,216,0.4); font-size: 0.78rem; line-height: 1.8; }

/* Back to top */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--green-dark); color: var(--gold); border: 2px solid rgba(201,168,124,0.3); border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }

/* Reveal animations */
.reveal, .reveal-left, .reveal-right { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* Responsive */
@media (max-width: 1024px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; background: rgba(27,67,50,0.98); flex-direction: column; padding: 1.5rem; gap: 0.5rem; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition); border-bottom: 1px solid rgba(201,168,124,0.2); }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 0.75rem 1rem; border-radius: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .hours-card { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { padding: 1rem; }
  .stat-item { padding: 0 0.75rem; }
  .stat-divider { height: 30px; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .stat-divider { display: none; }
  .hero-stats { gap: 1rem; flex-wrap: wrap; }
}