
    :root {
      --ink: #0d0d10;
      --paper: #f5f0e8;
      --gold: #c9a84c;
      --gold-dim: #8a6d2f;
      --mist: #1a1a2e;
      --deep: #070710;
      --text-light: #d4cfc6;
      --accent: #3a7a6e;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Josefin Sans', sans-serif;
      background: var(--deep);
      color: var(--text-light);
      overflow-x: hidden;
    }

    /* ─── CONSENT BANNER ─── */
    #consent-banner {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: rgba(7,7,16,0.96);
      border-top: 1px solid rgba(201,168,76,0.3);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      z-index: 9999;
      backdrop-filter: blur(8px);
    }
    #consent-banner p {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 12px;
      letter-spacing: 0.5px;
      color: #aaa;
      margin: 0;
    }
    #consent-banner a { color: var(--gold); text-decoration: none; }
    #consent-banner a:hover { text-decoration: underline; }
    .consent-btn {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 20px;
      border: 1px solid var(--gold);
      background: transparent;
      color: var(--gold);
      cursor: pointer;
      transition: all 0.3s;
    }
    .consent-btn:hover { background: var(--gold); color: var(--deep); }
    .consent-btn.decline { border-color: #555; color: #666; }
    .consent-btn.decline:hover { background: #333; color: #aaa; }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.5s, padding 0.3s;
    }
    nav.scrolled {
      background: rgba(7,7,16,0.95);
      backdrop-filter: blur(10px);
      padding: 14px 60px;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 8px;
      color: var(--gold);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }
    .nav-links a {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
	
	
	
	

    /* Hamburger */
   .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

	
	.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,7,16,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 90px 24px 30px;
  overflow-y: auto;
}
	
	
	
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 13px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--deep);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(58,122,110,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
    }

    /* Animated particles */
    .particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      width: 1px;
      height: 1px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: float-up linear infinite;
    }

    @keyframes float-up {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 0.6; }
      90% { opacity: 0.3; }
      100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 60px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-text { }
    .hero-label {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(72px, 10vw, 120px);
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: 0.1em;
      color: var(--paper);
      margin-bottom: 32px;
      opacity: 0;
      animation: fadeUp 1s 0.5s forwards;
    }
    .hero-title span {
      color: var(--gold);
      font-style: italic;
    }
    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      font-style: italic;
      color: rgba(212,207,198,0.7);
      line-height: 1.5;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }
    .hero-ctas {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 36px;
      background: var(--gold);
      color: var(--deep);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.2);
      transform: translateX(-100%);
      transition: transform 0.3s;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 15px 36px;
      border: 1px solid rgba(212,207,198,0.3);
      color: var(--text-light);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(212,207,198,0.5);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.3s;
      padding: 8px 0;
    }
    .btn-ghost:hover { color: var(--gold); }
    .btn-ghost i { font-size: 13px; }

    .hero-book {
      position: relative;
      opacity: 0;
      animation: fadeIn 1.5s 0.6s forwards;
    }
    .book-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .book-img {
      width: 100%;
      max-width: 420px;
      filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(201,168,76,0.15));
      transition: transform 0.5s, filter 0.5s;
    }
    .book-img:hover {
      transform: translateY(-8px) rotate(1deg);
      filter: drop-shadow(0 60px 100px rgba(0,0,0,0.9)) drop-shadow(0 0 60px rgba(201,168,76,0.25));
    }
    .book-glow {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 60px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
      filter: blur(20px);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ─── DIVIDER ─── */
    .divider {
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    .section-ornament {
      text-align: center;
      padding: 60px 0 20px;
      color: rgba(201,168,76,0.4);
      font-size: 24px;
      letter-spacing: 12px;
    }
	
	    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .section-tag {
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 300;
      color: var(--paper);
      margin-bottom: 48px;
      line-height: 1.1;
    }
	
    .section-title em { font-style: italic; color: var(--gold); }

	
	
	
	

/* ─── SYNOPSIS ─── */
#synopsis {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--deep) 0%, var(--mist) 100%);
  position: relative;
}

#synopsis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.synopsis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.synopsis-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(212,207,198,0.85);
  margin-bottom: 24px;
}

.synopsis-side {
  position: sticky;
  top: 120px;
  align-self: start;
}

.synopsis-quote {
  position: relative;
  padding-left: 44px;
  margin-bottom: 44px;
}

.synopsis-quote::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.8;
}

.synopsis-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(212,207,198,0.9);
  margin-bottom: 24px;
}

.synopsis-quote cite {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── SYNOPSIS RESPONSIVE ─── */
@media (max-width: 900px) {
  .synopsis-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .synopsis-side {
    position: static;
    top: auto;
    align-self: auto;
  }
}




    /* ─── THEMES ─── */
    #themes {
      padding: 120px 0;
      background: var(--mist);
      position: relative;
      overflow: hidden;
    }
    #themes::before {
      content: '';
      position: absolute;

      inset: 0;
      background: 
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(58,122,110,0.06) 0%, transparent 70%);
    }

    .themes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .theme-card {
      padding: 48px 36px;
      background: rgba(5,5,14,0.6);
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .theme-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s;
      transform-origin: left;
    }
    .theme-card:hover { background: rgba(201,168,76,0.04); }
    .theme-card:hover::after { transform: scaleX(1); }

    .theme-icon {
      font-size: 32px;
      color: var(--gold);
      margin-bottom: 24px;
      opacity: 0.7;
    }
    .theme-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--paper);
      margin-bottom: 16px;
    }
    .theme-desc {
      font-size: 13px;
      letter-spacing: 0.5px;
      line-height: 1.8;
      color: rgba(212,207,198,0.55);
    }

    /* ─── COVERS / EDITIONS ─── */
	
  #editions {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: none;
}

#editions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("../images/img_v2.jpg") center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

#editions::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,7,16,0.72);
  z-index: 1;
}

#editions .container {
  position: relative;
  z-index: 2;
}
	
	
	
	

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

    .edition-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .edition-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .edition-img-wrap img {
      width: 100%;
      display: block;
      transition: transform 0.6s;
      filter: saturate(0.8);
    }
    .edition-card:hover .edition-img-wrap img {
      transform: scale(1.04);
      filter: saturate(1);
    }
    .edition-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,7,16,0.9) 0%, transparent 50%);
    }
    .edition-info {
      padding: 24px 0;
    }
    .edition-lang {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .edition-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 300;
      color: var(--paper);
    }


/* ─── STORIES / RELATOS ─── */
#stories {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, var(--deep) 0%, var(--mist) 100%);
  position: relative;
  overflow: hidden;
}

#stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

#stories .container {
  position: relative;
  z-index: 2;
}

.stories-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(212,207,198,0.72);
  margin-bottom: 50px;
}

.stories-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.stories-viewport {
  overflow: hidden;
  width: 100%;
  padding: 18px 8px 22px;
}

.stories-track {
  display: flex;
  gap: 30px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.story-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: calc((100% - 60px) / 3);
  background: rgba(5,5,14,0.42);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 0 1px rgba(201,168,76,0.03) inset;
  transition:
    transform 0.4s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
}

.story-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(201,168,76,0.34);
  background: rgba(201,168,76,0.05);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.38),
    0 0 28px rgba(201,168,76,0.10);
}

.story-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.story-image-wrap {
  aspect-ratio: 333 / 500;
  overflow: hidden;
  background: #0a0a12;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: saturate(0.95);
}

.story-card:hover .story-image-wrap img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.story-meta {
  padding: 18px 22px 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.story-title {
  padding: 0 22px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--paper);
}

.stories-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(201,168,76,0.30);
  background: rgba(7,7,16,0.82);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.stories-arrow:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.stories-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.stories-arrow:disabled:hover {
  background: rgba(7,7,16,0.82);
  color: var(--gold);
  border-color: rgba(201,168,76,0.30);
  transform: none;
}

.stories-footer {
  margin-top: 50px;
  text-align: center;
}

.stories-viewport {
  overflow: hidden;
  width: 100%;
  padding: 18px 8px 22px;
}

.stories-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}





@media (max-width: 1100px) {
  .story-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }

  .stories-track {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  #stories {
    padding: 80px 0 100px;
  }

  .stories-slider-wrap {
    gap: 14px;
  }

  .stories-viewport {
    padding: 14px 4px 18px;
  }

  .story-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }

  .stories-track {
    gap: 20px;
  }

  .stories-arrow {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}

@media (max-width: 600px) {
  .stories-slider-wrap {
    display: block;
  }

  .stories-viewport {
    padding: 10px 0 16px;
  }

  .stories-arrow {
    position: absolute;
    top: 36%;
    z-index: 3;
  }

  .stories-arrow-prev {
    left: 8px;
  }

  .stories-arrow-next {
    right: 8px;
  }

  .story-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .stories-track {
    gap: 0;
  }

  .story-title {
    font-size: 24px;
  }
}


#download {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("../images/download-bg.webp") center/cover no-repeat,
    linear-gradient(135deg, var(--mist) 0%, var(--deep) 100%);
  opacity: 0.15;
}

#download::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,7,16,0.72);
}

.download-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}

.download-heading {
  margin-bottom: 28px;
}

.download-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(212,207,198,0.72);
  margin-bottom: 46px;
}

.download-ctas {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 620px;
  margin: 18px auto 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  #download {
    padding: 100px 0;
  }

  .download-intro {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 34px;
  }
}

@media (max-width: 600px) {
  .download-intro {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 28px;
  }

  .download-ctas {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 320px;
  }

  .download-ctas a {
    justify-self: center;
  }
}









    /*  Escenas  */
#scenes {
  padding: 120px 0 140px;
background: linear-gradient(180deg, var(--deep) 0%, var(--mist) 100%);
  position: relative;
  overflow: hidden;
}

#scenes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.scenes-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.scenes-viewport {
  overflow: hidden;
  width: 100%;
  padding: 18px 8px 22px;
}

.scenes-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.scene-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: calc((100% - 60px) / 3);
  background: rgba(5,5,14,0.42);
  border: 1px solid rgba(201,168,76,0.14);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.28),
    0 0 0 1px rgba(201,168,76,0.03) inset;
  transition:
    transform 0.4s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
}

.scene-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(201,168,76,0.34);
  background: rgba(201,168,76,0.05);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.38),
    0 0 28px rgba(201,168,76,0.10);
}

.scene-media {
  aspect-ratio: 4 / 6.7;
  overflow: hidden;
  background: #0a0a12;
  position: relative;
}

.scene-media img,
.scene-video-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: saturate(0.95);
  cursor: zoom-in;
}

.scene-card:hover .scene-media img,
.scene-card:hover .scene-video-btn img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.scene-meta {
  padding: 18px 22px 10px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.scene-title {
  padding: 0 22px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--paper);
}

.scene-video-btn {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.scene-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(3px);
}

.scenes-arrow {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(201,168,76,0.30);
  background: rgba(7,7,16,0.82);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.scenes-arrow:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ─── ZOOM OVERLAY ESCENAS ─── */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,7,16,0.92);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.zoom-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.zoom-dialog {
  width: min(1180px, 100%);
  max-height: 90vh;
  background: linear-gradient(180deg, rgba(18,18,30,0.98) 0%, rgba(7,7,16,0.98) 100%);
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.04) inset;
  position: relative;
  overflow: hidden;
}

.zoom-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(7,7,16,0.82);
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
}

.zoom-close:hover {
  background: var(--gold);
  color: var(--deep);
}

.zoom-content {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
  max-height: 90vh;
}

.zoom-image {
  margin: 0;
  background: #05050e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.zoom-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #05050e;
}

.zoom-image figcaption {
  padding: 18px 24px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--paper);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.zoom-text {
  min-width: 0;
  background: rgba(255,255,255,0.01);
  border-left: 1px solid rgba(201,168,76,0.12);
}

.zoom-text-inner {
  padding: 70px 34px 34px;
  max-height: 90vh;
  overflow-y: auto;
}

.zoom-text-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(212,207,198,0.82);
  margin: 0 0 20px;
}

.zoom-text-inner p:last-child {
  margin-bottom: 0;
}

.zoom-text-inner::-webkit-scrollbar {
  width: 10px;
}

.zoom-text-inner::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.03);
}

.zoom-text-inner::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.25);
}

.zoom-text-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(201,168,76,0.4);
}

@media (max-width: 900px) {
  .zoom-overlay {
    padding: 20px 12px;
  }

  .zoom-dialog {
    max-height: 94vh;
  }

  .zoom-content {
    grid-template-columns: 1fr;
  }

  .zoom-image img {
    max-height: 46vh;
  }

  .zoom-image figcaption {
    font-size: 24px;
    padding: 16px 18px;
  }

  .zoom-text {
    border-left: 0;
    border-top: 1px solid rgba(201,168,76,0.12);
  }

  .zoom-text-inner {
    padding: 22px 18px 24px;
    max-height: 38vh;
  }

  .zoom-text-inner p {
    font-size: 19px;
    line-height: 1.75;
  }
}





@media (max-width: 1100px) {
  .scene-card {
    flex: 0 0 calc((100% - 28px) / 2);
    min-width: calc((100% - 28px) / 2);
  }

  .scenes-track {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  #scenes {
    padding: 80px 0 100px;
  }

  .scenes-slider-wrap {
    gap: 14px;
  }

  .scenes-viewport {
    padding: 14px 4px 18px;
  }

  .scene-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
  }

  .scenes-track {
    gap: 20px;
  }

  .scenes-arrow {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}

@media (max-width: 600px) {
  .scenes-slider-wrap {
    display: block;
  }

  .scenes-viewport {
    padding: 10px 0 16px;
  }

  .scenes-arrow {
    position: absolute;
    top: 36%;
    z-index: 3;
  }

  .scenes-arrow-prev {
    left: 8px;
  }

  .scenes-arrow-next {
    right: 8px;
  }

  .scene-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .scenes-track {
    gap: 0;
  }

  .scene-title {
    font-size: 24px;
  }
}



/* ─────────────────────────
   REviews
───────────────────────── */

    /* ─── REVIEWS placeholder (styles injected by JS) ─── */
	
	
	
    #reviews {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--mist) 0%, var(--deep) 100%);
  position: relative;
}
    #reviews::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    }
    .reviews-rating {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 48px;
    }
.reviews-stars {
  display: inline-flex;
  gap: 6px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}
	
	.rv-cat-stars i {
  font-size: 14px;
  transform: translateY(-1px);
}
	
	.rv-cat-stars {
  display: inline-flex;
  gap: 4px;
  white-space: nowrap;
  letter-spacing: 0;
}


	
    .reviews-count { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,207,198,0.45); }
    .review-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    .review-link:hover { opacity: 1; }





/* ─────────────────────────
   MENCIONES
───────────────────────── */

#mentions {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--deep) 0%, var(--mist) 100%);
  position: relative;
}

#mentions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* Título e intro */
#mentions .section-title {
  margin-bottom: 34px;
}

#mentions .stories-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(212,207,198,0.72);
  margin-bottom: 34px;
  line-height: 1.45;
}

/* GRID GENERAL */
.mentions-grid.mentions-grid-featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  align-items: stretch;
}

/* BLOQUE GRANDE DEL FILTRO */
.mentions-filter-card {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(5,5,14,0.35);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 0 1px rgba(201,168,76,0.02) inset;
}

/* Fondo del filtro */
.mentions-filter-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7,7,16,0.84), rgba(7,7,16,0.84)),
    url("../images/fondofiltro.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Interior del filtro */
.mentions-filter-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Grupos del filtro */
.mentions-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mentions-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.group-type-main {
  margin-top: 8px;
}

/* Botones */
.mentions-filter {
  appearance: none;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(5,5,14,0.12);
  color: rgba(212,207,198,0.62);
  padding: 8px 14px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: none;
}

.mentions-filter:hover {
  border-color: rgba(201,168,76,0.32);
  background: rgba(201,168,76,0.06);
  color: rgba(245,240,232,0.9);
  transform: translateY(-1px);
}

.mentions-filter.is-active {
  background: rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.65);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.18);
}

.group-book-main .mentions-filter,
.group-type-main .mentions-filter {
  font-size: 11px;
  letter-spacing: 2px;
}

/* Mostrando */
.mentions-status {
  margin-top: auto;
  align-self: flex-start;
  font-size: 15px;
  color: rgba(212,207,198,0.75);
}

.mentions-status strong {
  color: var(--gold);
  font-weight: 400;
}

/* TARJETAS */
.mentions-grid.mentions-grid-featured .mention-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  padding: 18px 16px;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: rgba(5,5,14,0.35);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 0 1px rgba(201,168,76,0.02) inset;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.2s ease;
}

.mentions-grid.mentions-grid-featured .mention-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.28),
    0 0 18px rgba(201,168,76,0.05);
}

.mention-card.is-hidden {
  display: none !important;
}

.mention-kicker {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mentions-grid.mentions-grid-featured .mention-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mention-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(212,207,198,0.5);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mention-meta i {
  font-size: 19px;
  color: rgba(201,168,76,0.7);
  transition: color 0.3s ease;
  flex: 0 0 auto;
}

.mention-card:hover .mention-meta i {
  color: var(--gold);
}

.mention-card:hover .mention-meta {
  color: rgba(212,207,198,0.75);
}

.mention-meta span {
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.mentions-grid.mentions-grid-featured .mention-card {
  position: relative;
}

.mentions-grid.mentions-grid-featured .mention-card.featured {
  background:
    linear-gradient(
      180deg,
      rgba(201,168,76,0.11) 0%,
      rgba(201,168,76,0.06) 100%
    ),
    rgba(5,5,14,0.35);
  border-color: rgba(201,168,76,0.42);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 0 1px rgba(201,168,76,0.09) inset,
    0 0 22px rgba(201,168,76,0.09);
}

.mentions-grid.mentions-grid-featured .mention-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,248,225,0.06);
}

.mentions-grid.mentions-grid-featured .mention-card.featured .mention-kicker {
  color: rgba(216,184,91,0.96);
}

.mentions-grid.mentions-grid-featured .mention-card.featured .mention-title {
  color: rgba(248,243,235,0.98);
}

.mentions-grid.mentions-grid-featured .mention-card.featured .mention-meta {
  color: rgba(212,207,198,0.68);
}

.mentions-grid.mentions-grid-featured .mention-card.featured .mention-meta i {
  color: rgba(201,168,76,0.88);
}

.mentions-grid.mentions-grid-featured .mention-card.featured:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.07);

  box-shadow:
    0 14px 30px rgba(0,0,0,0.28),
    0 0 26px rgba(201,168,76,0.14),
    0 0 8px rgba(201,168,76,0.12) inset;
}

.mentions-grid.mentions-grid-featured .mention-card.featured:hover::after {
  opacity: 0.9;
}





/* ─────────────────────────
   RESPONSIVE
───────────────────────── */

@media (max-width: 1100px) {
  .mentions-grid.mentions-grid-featured {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 160px;
  }

  .mentions-filter-card {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mentions-filter-inner {
    padding: 24px;
  }

  .mentions-grid.mentions-grid-featured .mention-title {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  #mentions {
    padding: 64px 0;
  }

  #mentions .container {
    padding: 0 24px;
  }

  #mentions .section-title {
    font-size: 28px;
    margin-bottom: 22px;
  }

  #mentions .stories-intro {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 26px;
  }

  .mentions-grid.mentions-grid-featured {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    grid-auto-rows: 140px;
  }

  .mentions-filter-card {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mentions-filter-inner {
    padding: 18px;
  }

  .mentions-filters {
    gap: 10px;
  }

  .mentions-filter-group {
    gap: 6px;
  }

  .mentions-filter {
    padding: 6px 8px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .group-book-main .mentions-filter,
  .group-type-main .mentions-filter {
    font-size: 8px;
    letter-spacing: 1.2px;
  }

  .mentions-status {
    font-size: 10px;
  }

  .mentions-grid.mentions-grid-featured .mention-card {
    padding: 12px 10px;
  }

  .mention-kicker {
    font-size: 7px;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
  }

  .mentions-grid.mentions-grid-featured .mention-title {
    font-size: 15px;
    line-height: 1.02;
  }

  .mention-meta {
    font-size: 8px;
    gap: 5px;
  }

  .mention-meta i {
    font-size: 9px;
  }
}

@media (max-width: 600px) {
  #mentions {
    padding: 48px 0;
  }

  #mentions .container {
    padding: 0 16px;
  }

  #mentions .section-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  #mentions .stories-intro {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .mentions-grid.mentions-grid-featured {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-auto-rows: 120px;
  }

  .mentions-filter-card {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mentions-filter-inner {
    padding: 14px;
  }

  .mentions-filters {
    gap: 8px;
  }

  .mentions-filter-group {
    gap: 5px;
  }

  .mentions-filter {
    padding: 5px 7px;
    font-size: 7px;
    letter-spacing: 0.9px;
  }

  .group-book-main .mentions-filter,
  .group-type-main .mentions-filter {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .mentions-status {
    font-size: 9px;
  }

  .mentions-grid.mentions-grid-featured .mention-card {
    padding: 9px 8px;
  }

  .mention-kicker {
    font-size: 6px;
    letter-spacing: 1.1px;
    margin-bottom: 5px;
  }

  .mentions-grid.mentions-grid-featured .mention-title {
    font-size: 12.5px;
    line-height: 1.02;
  }

  .mention-meta {
    font-size: 7px;
    gap: 4px;
  }

  .mention-meta i {
    font-size: 8px;
  }
}













/* ─── AUTHOR ─── */
#author {
  padding: 120px 0;
  background: var(--mist);
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}

.author-side {
  position: sticky;
  top: 120px;
  align-self: start;
}

.author-monogram {
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.author-monogram + .author-monogram {
  margin-top: 24px;
}

.author-monogram-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: -4px;
}

.author-photo {
  padding: 10px;
  overflow: hidden;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.author-photo img:hover {
  filter: grayscale(0%);
}

.author-handle {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  display: block;
}

.author-bio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(212,207,198,0.75);
  margin-bottom: 40px;
}

#author {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--mist) 0%,
    var(--deep) 100%
  );
  position: relative;
}










.signed-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.signed-btn:hover {
  background: var(--gold);
  color: var(--deep);
}

.author-social {
  margin-top: 28px;
}

.author-social-label {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212,207,198,0.45);
}

.author-social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.author-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.01);
}

.author-social-links a:hover {
  color: var(--deep);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 36px;
    text-align: center;
  }

  .author-side {
    position: static;
    top: auto;
    align-self: auto;
    margin-bottom: 8px;
  }

  .author-monogram {
    margin: 0 auto;
  }
}




    /* ─── FOOTER ─── */
    footer {
      padding: 60px 0;
      background: var(--deep);
      border-top: 1px solid rgba(201,168,76,0.1);
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      letter-spacing: 10px;
      color: rgba(201,168,76,0.4);
      margin-bottom: 32px;
    }
    .footer-links {
      display: flex;
      gap: 40px;
      justify-content: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(212,207,198,0.35);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 11px;
      letter-spacing: 1px;
      color: rgba(212,207,198,0.2);
    }
    .footer-copy a { color: rgba(201,168,76,0.4); text-decoration: none; }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s, transform 0.8s;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }

    /* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 60px;
  }

  .hero-book { order: -1; }
  .book-img { max-width: 260px; }
  .hero-title { font-size: clamp(80px, 14vw, 100px); }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }

  .synopsis-grid { grid-template-columns: 1fr; gap: 48px; }
  .themes-grid { grid-template-columns: 1fr; gap: 2px; }
  .editions-grid { grid-template-columns: 1fr; gap: 32px; }
  .author-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .author-monogram { margin: 0 auto; }

  .author-side {
    position: static;
    top: auto;
    align-self: auto;
    margin-bottom: 8px;
  }

  .container { padding: 0 24px; }
  #synopsis, #themes, #editions, #author { padding: 80px 0; }
  #download { padding: 100px 0; }
}



    @media (max-width: 600px) {
      .hero-title { font-size: 56px; }
      .editions-grid { grid-template-columns: 1fr; }
      .download-ctas { flex-direction: column; align-items: center; }
    }

    .hero-tagline--main {
      font-size: clamp(26px, 3.5vw, 38px);
      color: rgba(212,207,198,0.92);
      font-weight: 400;
      margin-bottom: 20px;
    }
    .hero-tagline--sub {
      font-size: 18px;
      color: rgba(212,207,198,0.45);
      font-weight: 300;
      margin-bottom: 48px;
      letter-spacing: 0.2px;
    }


    /* ─── FINE LINE DECORATION ─── */
	
	
	
	
    .line-deco {
      width: 60px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
      margin: 0 0 32px;
    }

    /* ─── AMBIENT GLOW LINES ─── */
    .glow-line {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.2) 50%, transparent 100%);
    }

