/* ============ MYBOOK — DESIGN LUXE/CHIC ============ */
:root {
  --bg: #0d0b08;
  --bg-2: #14110c;
  --paper: #f6f1e7;
  --paper-2: #ede5d3;
  --gold: #c9a961;
  --gold-light: #e5c684;
  --gold-dark: #8a7238;
  --text: #1a1712;
  --text-light: #6b6357;
  --border: #d9cfb8;
  --accent: #7a2e1c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Playfair Display', serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(13, 11, 8, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: 'Georgia', serif;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}
.logo-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
}
.logo-text { font-weight: 300; }
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
  font-family: 'Helvetica Neue', sans-serif;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--paper);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(13,11,8,0.85) 0%, rgba(13,11,8,0.6) 50%, rgba(13,11,8,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Helvetica Neue', sans-serif;
}
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(246, 241, 231, 0.85);
  font-family: 'Georgia', serif;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 97, 0.3);
  overflow: hidden;
}
.scroll-indicator span {
  display: block;
  width: 100%;
  height: 30px;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}
.btn-outline:hover {
  background: var(--paper);
  color: var(--bg);
}
.btn-dark {
  background: var(--bg);
  color: var(--paper);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ============ SECTIONS ============ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
section {
  padding: 120px 0;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
}
.section-label.centered { text-align: center; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-header h2, section h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 .italic {
  font-style: italic;
  color: var(--gold-dark);
}
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============ INTRO ============ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text p { margin-bottom: 20px; color: var(--text-light); }
.link-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  font-family: 'Helvetica Neue', sans-serif;
  transition: all 0.3s;
}
.link-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
  letter-spacing: 4px;
}
.intro-image {
  position: relative;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s;
}
.intro-image:hover img { transform: scale(1.05); }

/* ============ CATEGORIES ============ */
.section-categories { background: var(--bg); color: var(--paper); }
.section-categories .section-label { color: var(--gold); }
.section-categories p { color: rgba(246, 241, 231, 0.7); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.category-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  background: var(--bg-2);
  border: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.4s;
  overflow: hidden;
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.category-img {
  overflow: hidden;
  height: 100%;
  min-height: 220px;
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.category-card:hover .category-img img { transform: scale(1.08); }
.category-body {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-body h3 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.category-body p {
  font-size: 14px;
  color: rgba(246, 241, 231, 0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}
.category-count {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Helvetica Neue', sans-serif;
}

/* ============ FEATURE ============ */
.section-feature { background: var(--paper-2); }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-image {
  position: relative;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}
.feature-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--gold);
  color: var(--bg);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
}
.feature-list {
  list-style: none;
  margin: 30px 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.feature-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.value-item {
  text-align: center;
  padding: 40px 20px;
}
.value-icon {
  color: var(--gold-dark);
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.value-item h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
}
.value-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============ CTA ============ */
.section-cta {
  position: relative;
  color: var(--paper);
  padding: 140px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,11,8,0.9), rgba(13,11,8,0.75));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 { margin-bottom: 20px; }
.cta-content p {
  font-size: 18px;
  color: rgba(246, 241, 231, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  color: var(--paper);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.logo-footer { margin-bottom: 20px; }
.footer-brand p {
  color: rgba(246, 241, 231, 0.65);
  font-size: 14px;
  line-height: 1.8;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
  font-family: 'Helvetica Neue', sans-serif;
}
.footer-col a, .footer-col p {
  display: block;
  color: rgba(246, 241, 231, 0.65);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.3s;
  line-height: 1.7;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding-top: 30px;
  text-align: center;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.5);
  letter-spacing: 1px;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg);
  color: var(--paper);
  padding: 20px 24px;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--gold);
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 13px; flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-family: 'Helvetica Neue', sans-serif;
}
.btn-cookie.outline { background: transparent; color: var(--paper); border: 1px solid var(--paper); }

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  background: var(--bg);
  color: var(--paper);
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,8,0.7), rgba(13,11,8,0.9));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-header h1 .italic { font-style: italic; color: var(--gold-light); }
.page-header p {
  font-size: 17px;
  color: rgba(246, 241, 231, 0.75);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', sans-serif;
}

/* ============ LIVRES / COLLECTION ============ */
.livres-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Helvetica Neue', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--bg);
  color: var(--paper);
  border-color: var(--bg);
}
.livres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.livre-card {
  background: #fff;
  transition: all 0.4s;
  overflow: hidden;
  border: 1px solid var(--border);
}
.livre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.livre-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.livre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.livre-card:hover .livre-img img { transform: scale(1.06); }
.livre-body { padding: 24px; }
.livre-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', sans-serif;
}
.livre-body h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.livre-author {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
}
.livre-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
}
.livre-meta .year { font-family: 'Helvetica Neue', sans-serif; letter-spacing: 1px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 24px;
}
.contact-info-list {
  list-style: none;
  margin-bottom: 40px;
}
.contact-info-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-list .icon {
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-info-list .info-content {
  font-size: 14px;
  line-height: 1.6;
}
.contact-info-list .label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
}
.contact-form {
  background: #fff;
  padding: 50px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', sans-serif;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-dark);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 16px;
  margin-bottom: 20px;
  border-left: 3px solid #2e7d32;
  font-size: 14px;
  display: none;
}
.form-success.visible { display: block; }
.map-embed {
  margin-top: 40px;
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.1); }

/* ============ ABOUT ============ */
.about-story {
  max-width: 900px;
  margin: 0 auto;
}
.about-story p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 24px;
}
.about-story .first-letter::first-letter {
  font-size: 72px;
  font-weight: 400;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--gold-dark);
  font-family: 'Georgia', serif;
}
.about-image-full {
  margin: 60px 0;
  overflow: hidden;
  height: 500px;
}
.about-image-full img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 60px 0;
}
.stat {
  text-align: center;
}
.stat .num {
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}
.stat .label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Helvetica Neue', sans-serif;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  filter: grayscale(0.3);
}
.team-card h3 { font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.team-card .role {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: 'Helvetica Neue', sans-serif;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation: revealFallback 0.8s ease 0.3s forwards;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-container { padding: 0 24px; }
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .intro-grid, .feature-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .categories-grid { grid-template-columns: 1fr; }
  .livres-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .intro-image img, .feature-image img { height: 400px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .navbar { background: rgba(13,11,8,0.9); backdrop-filter: blur(10px); }
  .navbar.transparent { background: rgba(13,11,8,0.7); }
  .hero h1 { font-size: 42px; }
  .hero-subtitle { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; text-align: center; }
  .category-card { grid-template-columns: 1fr; }
  .category-img { min-height: 200px; }
  .category-body { padding: 24px; }
  .livres-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form { padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-brand p { max-width: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 40px 0; }
  .stat .num { font-size: 40px; }
  section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .cta-bg { background-attachment: scroll; }
  .about-image-full { height: 300px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .section-label { font-size: 10px; letter-spacing: 3px; }
  .btn { padding: 14px 28px; font-size: 11px; letter-spacing: 2px; }
  .livres-filters .filter-btn { padding: 8px 16px; font-size: 10px; }
}
