/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* ── Site-wide width ── change this ONE value to resize everything ── */
  --site-max-width: 1200px;

  --bg-cream: #faf6f1;
  --bg-warm: #f5efe8;
  --text-dark: #514040;
  --text-body: #4a3f37;
  --text-muted: #8a7e74;
  --text-light: #b0a79e;
  --accent-brown: #6b4c3b;
  --accent-warm: #a0856e;
  --btn-dark: #6a5a4e;
  --btn-primary: #6a5a4e;
  --border-light: #e0d6cc;
  --footer-bg: #f0ebe4;
}

/* Override Bootstrap's responsive container max-widths with our single variable */
.container {
  max-width: var(--site-max-width);
  padding-left: 60px;
  padding-right: 60px;
}

.header .container {
  max-width: var(--site-max-width);
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  color: var(--text-dark);
}

.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--btn-primary);
  color: #fff;
  border-radius: 2px;
}

.btn-primary:hover {
  background-color: #5a4a3e;
  opacity: 1;
}

.btn-dark {
  background-color: var(--btn-dark);
  color: #fff;
  border-radius: 2px;
}

.btn-dark:hover {
  background-color: #2d3a42;
  opacity: 1;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #e4e2dd;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
  padding: 12px 0;
}

.header.scrolled {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: 0.5px;
  position: relative;
  padding: 0;
}

.nav-link.active {
  color: var(--accent-brown);
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-brown);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-brown);
}

.nav-btn-buy {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--btn-primary);
  padding: 10px 24px;
  border-radius: 2px;
  margin-left: 8px;
  transition: background-color 0.3s;
}

.nav-btn-buy:hover {
  background-color: #5a4a3e;
  opacity: 1;
}

/* ===== Hero ===== */
.hero {
  padding-top: 70px;
  background-color: #faf7f2;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px 88px 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding-right: 20px;
}

.hero-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(48px, 5.5vw, 60px);
  font-weight: 500;
  font-style: italic;
  color: #514040;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-title .accent-dot {
  color: #5b6abf;
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  width: 100%;
  /* height: auto; */
}

.hero-quote-card {
  position: absolute;
  bottom: 60px;
  left: -50px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 28px;
  border-radius: 8px;
  max-width: 230px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.hero-quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

.hero-quote-card span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== Book Section ===== */
.book-section {
  padding: 100px 0 120px;
  background-color: var(--bg-warm);
}

.book-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.book-header {
  margin-bottom: 64px;
}

.book-header .label {
  display: block;
  margin-bottom: 16px;
}

.book-header .section-title {
  font-size: clamp(42px, 4vw, 60px);
  font-style: italic;
  margin-bottom: 20px;
}

.section-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
}

.book-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.book-left {
  display: flex;
  flex-direction: column;
}

.book-image-area {
  position: relative;
  padding-bottom: 60px;
}

.book-image-wrapper {
  display: flex;
  padding: 48px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 2px;
  border: 1px solid rgba(177, 179, 169, 0.1);
  background: #f5eee8;
}

.book-cover-img {
  flex: 1 0 0;
  width: 100%;
  border-radius: 2px;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

.book-purchase {
  position: absolute;
  bottom: 0;
  left: 40%;
  background: #fff;
  border-radius: 6px;
  padding: 24px 28px;
  width: 68%;
  max-width: 340px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.purchase-title {
  font-family: "Noto Serif", serif;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.purchase-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.purchase-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Book Right - Poems & Songs */
.book-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 8px;
}

.poems-section,
.songs-section {
  display: flex;
  flex-direction: column;
}

.subsection-title {
  font-family: "Noto Serif", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.subsection-icon {
  color: var(--accent-warm);
  flex-shrink: 0;
}

.poem-block {
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid #d6cfc6;
}

.poem-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.poem-source {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.link-underline {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-block;
  margin-top: 8px;
  position: relative;
  padding-bottom: 6px;
}

.link-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--text-dark);
  transition: background-color 0.3s;
}

.link-underline:hover {
  opacity: 1;
  color: var(--accent-brown);
}

.link-underline:hover::after {
  background-color: var(--accent-brown);
}

/* Songs */
.songs-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.song-album img {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: cover;
}

.song-companion-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.song-companion-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.song-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.song-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e8e2da;
}

.song-item:first-child {
  border-top: 1px solid #e8e2da;
}

.song-name {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-body);
  text-transform: uppercase;
}

.song-duration {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== Editorial Quote ===== */
.editorial-quote {
  display: flex;
  padding: 128px 192px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background-color: var(--bg-cream);
  text-align: center;
}

.editorial-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
}

.quote-mark {
  margin-bottom: 30px;
  opacity: 0.6;
}

.big-quote {
  font-family: "Noto Serif", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.big-quote em {
  font-style: italic;
}

.quote-attribution {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== About Section ===== */
.about-section {
  padding: 0;
  background-color: var(--bg-cream);
  display: flex;
  justify-content: center;
}

.about-inner {
  display: flex;
  width: 1200px;
  max-width: 100%;
  padding: 0px 32px 0 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 96px;
}

.about-title {
  color: #31332c;
  font-family: "Noto Serif", serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  line-height: 72px;
  margin-bottom: 0;
}

.about-intro {
  display: flex;
  align-items: center;
  gap: 48px;
  align-self: stretch;
  margin-bottom: 0;
}

.about-author-img {
  flex-shrink: 0;
  width: 261.33px;
  height: 348.44px;
  border-radius: 12px;
  overflow: hidden;
  background: #ece7e0;
}

.about-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote-text {
  color: #5e6058;
  font-family: "Noto Serif", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 39px;
  margin-bottom: 0;
}

/* Story Vision */
.story-vision {
  align-self: stretch;
}

.story-vision-title {
  font-family: "Noto Serif", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-vision-divider {
  width: 60px;
  height: 2px;
  background-color: #31332c;
  margin-bottom: 28px;
}

.story-vision p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Atmospheric Image */
.atmospheric-section {
  width: 100%;
}

.atmospheric-img {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  background-color: lightgray;
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
}

/* Author Bio */
.author-bio {
  align-self: stretch;
}

.author-bio-title {
  font-family: "Noto Serif", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.author-bio-divider {
  display: none;
}

.author-bio p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Closing Quote */
.author-closing-quote {
  text-align: center;
  align-self: stretch;
  padding: 40px 0 80px;
}

.closing-quote-icon {
  display: none;
}

.closing-quote {
  font-family: "Noto Serif", serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #31332c;
  line-height: 1.6;
  margin-bottom: 20px;
}

.closing-quote em {
  font-style: italic;
}

.closing-quote-attr {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== Merchandise Section ===== */
/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--bg-cream);
}

.contact-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

@media (max-width: 767px) {
  .contact-layout {
    flex-direction: column;
    gap: 48px;
  }
}

.contact-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(48px, 6vw, 72px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 8px 0 0;
}

.contact-divider {
  width: 48px;
  height: 2px;
  background-color: var(--accent-warm);
  margin: 20px 0 24px;
}

.contact-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 10px;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.connect-links .label {
  margin-bottom: 4px;
}

.connect-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.connect-link .arrow {
  font-size: 14px;
  margin-left: 4px;
}

/* Form */
.contact-right {
  width: 100%;
}

.contact-form {
  display: block;
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 32px;
}

.form-label {
  display: block;
  color: #5e6058;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-warm);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.btn-send {
  padding: 16px 40px;
  background-color: var(--btn-dark);
  color: #fff;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 2px;
}

.btn-send:hover {
  background-color: #2d3a42;
  opacity: 1;
  color: #fff;
}

.form-note {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

/* ===== Footer ===== */
.footer {
  background-color: #6a5a4e;
}

.footer-top {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: 180px;
  /* filter: brightness(0) invert(1); */
  /* opacity: 0.9; */
  width: 290px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  max-width: 260px;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  display: block;
  margin-bottom: 20px;
}

.footer-nav a,
.footer-social a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #fff;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgb(255, 255, 255);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgb(255, 255, 255);
  font-size: 11px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.newsletter-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.newsletter-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(255, 255, 255);
  margin-bottom: 0;
}

.newsletter-input input {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgb(255, 255, 255);
  background: transparent;
  border: none;
  padding: 12px 0;
  outline: none;
}

.newsletter-input input::placeholder {
  color: rgb(255, 255, 255);
}

.newsletter-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.newsletter-btn:hover {
  color: #fff;
}

.newsletter-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .header-inner {
    padding: 16px 40px;
  }

  .hero-inner {
    padding: 40px 48px 80px 48px;
    gap: 20px;
  }

  .book-section-inner,
  .about-inner,
  .contact-inner,
  .footer-inner,
  .editorial-quote-inner {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 24px;
  }

  .nav {
    gap: 20px;
  }

  .nav-link {
    font-size: 12px;
  }

  .nav-btn-buy {
    font-size: 10px;
    padding: 8px 16px;
    margin-left: 8px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px 24px 60px;
    text-align: center;
  }

  .hero-content {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-right: 0;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-wrapper {
    max-width: 360px;
  }

  .hero-image-wrapper img {
    width: 100%;
    height: auto;
  }

  .hero-quote-card {
    left: -10px;
    bottom: -10px;
    max-width: 180px;
    padding: 14px 16px;
  }

  .book-section-inner,
  .about-inner,
  .editorial-quote-inner {
    padding: 0 24px;
  }

  .book-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-inner {
    flex-direction: column;
    padding: 120px 24px 80px;
    gap: 48px;
  }

  .contact-title {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }

  .contact-form {
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    gap: 32px;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .about-title {
    font-size: 48px;
    line-height: 48px;
  }

  .about-inner {
    gap: 48px;
  }

  .about-author-img {
    width: 200px;
    height: 266px;
  }

  .about-quote-text {
    font-size: 20px;
    line-height: 32px;
  }

  .atmospheric-img {
    height: 260px;
  }

  .songs-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav {
    gap: 10px;
  }

  .nav-btn-buy {
    font-size: 9px;
    padding: 6px 12px;
    margin-left: 4px;
  }

  .logo img {
    height: 22px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 38px;
  }

  .book-section,
  .editorial-quote,
  .about-section,
  .contact-section {
    padding: 80px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .atmospheric-img {
    height: 200px;
  }
}

/* Section containers — override Bootstrap py-5 with more generous spacing */
.trilogy-section > .container,
.author-hp-section > .container,
.contact-section > .container {
  padding-top: 160px;
  padding-bottom: 80px;
}

/* Books section sits between Band 2 and Band 3 — tighter top padding (−1cm) */
.books-section > .container {
  padding-top: 122px;
  padding-bottom: 80px;
}

.poetic-section > .container {
  padding-top: 40px;
  padding-bottom: 92px;
}

.footer > .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ===================================================
   NEW HOMEPAGE COMPONENTS
   =================================================== */

/* ----- Band sections (hero-style layout reused for Band 2 & 3) ----- */
.band-section {
  padding-top: 0;
  background-color: var(--bg-cream);
}

.band-section .hero-img,
.band-section .hero-img--2 {
  object-position: center top;
}

.band-section--alt {
  background-color: #ffffff;
}

/* ----- Hero: alternating text & image ----- */
.hero-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hero-row .hero-content {
  flex: 0 0 35%;
  padding: 60px 20px 60px 0;
}

.hero-row .song-badge-col {
  flex: 0 0 25%;
  padding: 40px 0;
}

.hero-row .hero-image {
  flex: 0 0 40%;
}

.hero-text-wrapper {
  position: relative;
  min-height: 300px;
  margin-bottom: 36px;
}

.hero-text {
  transition: opacity 0.6s ease;
}

.hero-text--1 {
  opacity: 1;
}

.hero-text--2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero--alt .hero-text--1 {
  opacity: 0;
  pointer-events: none;
}

.hero--alt .hero-text--2 {
  opacity: 1;
  pointer-events: auto;
}

/* Hero image wrapper */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: opacity 0.6s ease;
}

.hero-img--2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero--alt .hero-img--1 {
  opacity: 0;
}

.hero--alt .hero-img--2 {
  opacity: 1;
}

/* ----- Song Badge (SVG-based) ----- */
.song-badge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1 1 auto;
}

.song-badge-link {
  display: block;
  transition: transform 0.35s ease;
  opacity: 1 !important;
  text-decoration: none;
}

.song-badge-link:hover {
  transform: scale(1.06) rotate(2deg);
  opacity: 1 !important;
}

.song-badge-img {
  width: 190px;
  height: 190px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(150, 100, 10, 0.4));
}

.song-badge-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  max-width: 200px;
}

/* ----- Trilogy Section ----- */
.trilogy-section {
  background-color: var(--bg-cream);
  background-color: #ffffff;
}

.trilogy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.trilogy-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.trilogy-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(40px, 5vw, 60px);
  font-style: italic;
  font-weight: 550;
  color: var(--text-dark);
  line-height: 1.05;
}

.trilogy-desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  /* max-width: 320px; */
}

.trilogy-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dragonfly-img {
  width: 200px;
  height: auto;
  opacity: 1;
}

.trilogy-right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.trilogy-books-img {
  max-width: 550px;
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Merchandising Section ===== */
.merch-section {
  background-color: #e2d6c8;
  padding: 100px 0;
}

.merch-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.merch-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.08;
  margin: 8px 0 0;
}

.merch-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}

/* Filter Tabs */
.merch-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.merch-filter-btn {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border: 1px solid rgba(100, 80, 60, 0.2);
  border-radius: 30px;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.merch-filter-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.merch-filter-btn.active {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

/* Product Grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.merch-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    opacity 0.4s ease,
    transform 0.4s ease;
}

.merch-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.merch-card.hidden {
  display: none;
}

.merch-card-img {
  position: relative;
  background-color: var(--bg-cream);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.merch-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-card-img img {
  transform: scale(1.05);
}

.merch-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(100, 80, 60, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
}

.merch-card-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.merch-card-title {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.merch-card-type {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .merch-filters {
    gap: 6px;
  }

  .merch-filter-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .merch-section {
    padding: 60px 0;
  }
}

/* ----- Poetic Quote Section ----- */
.poetic-section {
  background-color: #ffffff;
}

.poetic-inner {
  max-width: 760px;
  margin: 0 auto;
}

.poetic-quote {
  font-family: "Noto Serif", serif;
  font-size: clamp(28px, 3.8vw, 33px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.poetic-attr {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}

/* ----- Die goldenen Bücher ----- */
.books-section {
  background-color: var(--bg-warm);
}

.books-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.books-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(44px, 5.5vw, 60px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 40px;
  text-align: left;
  margin-left: 32px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.books-section .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  transition: none;
  width: 100%;
  max-width: 290px;
}

.book-card:hover {
  box-shadow: none;
}

.book-card-img {
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.book-card-img img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.book-card:hover .book-card-img img {
  transform: scale(1.02);
}

.book-card-info {
  background: #fff;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.book-card-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-dark);
  text-transform: none;
  line-height: 1.3;
}

.book-card-title {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

.book-card-desc {
  display: none;
}

.book-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 0;
  border-top: none;
}

.book-card-price {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.book-card-btn {
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 2px;
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-muted);
  border-radius: 2px;
  font-weight: 600;
}

.book-card-btn:hover {
  background-color: var(--btn-dark);
  color: #fff;
  border-color: var(--btn-dark);
}

/* ----- Author Section (Homepage) ----- */
.author-hp-section {
  background-color: #ffffff;
}

.author-hp-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}

/* Decorative image frame */
.author-hp-img-wrap {
  position: relative;
  flex-shrink: 0;
}

.author-hp-img-wrap::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  /* background-color: var(--accent-warm); */
  opacity: 0.25;
  z-index: 0;
}

.author-hp-img {
  position: relative;
  z-index: 1;
  width: 290px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: #ece7e0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.author-hp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.author-hp-content {
  flex: 1;
}

.author-hp-name {
  font-family: "Noto Serif", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0;
}

.author-hp-divider {
  width: 48px;
  height: 2px;
  background-color: var(--accent-warm);
  margin: 20px 0 28px;
}

.author-hp-quote {
  font-family: "Noto Serif", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-brown);
  line-height: 1.7;
  border-left: 3px solid var(--accent-warm);
  padding-left: 20px;
  margin-bottom: 24px;
}

.author-hp-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.author-hp-text:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .author-hp-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .author-hp-quote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--accent-warm);
    padding-top: 16px;
  }

  .author-hp-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .author-hp-img-wrap::before {
    display: none;
  }
}

/* ----- Responsive: new sections ----- */
@media (max-width: 991.98px) {
  .hero-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-row .hero-content {
    flex: none;
    width: 100%;
    padding: 40px 0 0;
    text-align: center;
    align-items: center;
  }

  .hero-row .hero-image {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-row .hero-image-wrapper {
    max-width: 380px;
    width: 100%;
    height: auto;
  }

  .hero-row .hero-img {
    height: auto;
  }

  .hero-row .hero-img--2 {
    height: 100%;
  }

  .hero-row .song-badge-col {
    flex: none;
    width: 100%;
    order: 3;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 0 0 20px;
  }

  .hero-row .hero-quote-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  .hero-row .hero-text-wrapper {
    min-height: auto;
  }

  .hero-row .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .hero-row .hero-content {
    padding: 24px 0 0;
  }

  .hero-row .hero-image-wrapper {
    max-width: 300px;
  }

  .hero-row .hero-quote-card {
    display: none;
  }
}

@media (max-width: 900px) {
  .trilogy-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .trilogy-left {
    max-width: 100%;
    align-items: center;
  }

  .trilogy-right {
    justify-content: center;
  }

  .trilogy-books-img {
    max-width: 320px;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-hp-inner {
    flex-direction: column;
    text-align: center;
  }

  .author-hp-img {
    width: 200px;
    height: 266px;
  }

  .hero-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .hero-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-text-wrapper {
    min-height: 240px;
  }

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

  .song-badge-col {
    order: 3;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .song-badge-text {
    max-width: 200px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .books-grid {
    grid-template-columns: 1fr;
  }

  .trilogy-section,
  .poetic-section,
  .books-section,
  .author-hp-section {
    padding: 90px 0;
  }

  .poetic-section {
    padding: 90px 24px;
  }

  .trilogy-inner,
  .books-inner,
  .author-hp-inner {
    padding: 0 24px;
  }

  .hero-inner {
    padding: 30px 24px 60px;
  }
}

/* ===================================================
   NAVBAR — RESPONSIVE (hamburger)
   =================================================== */

/* Custom toggler color to match brand */
.navbar-toggler {
  border: none;
  padding: 4px 0;
  box-shadow: none !important;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74,63,55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    border-top: 1px solid var(--border-light);
    padding: 16px 0 12px;
    margin-top: 12px;
  }

  /* Stack links vertically */
  .navbar-collapse .nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100%;
  }

  .navbar-collapse .nav-link {
    padding: 13px 0 !important;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .navbar-collapse .nav-btn-buy {
    margin-top: 16px;
    margin-left: 0 !important;
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 20px;
  }
}

/* ===================================================
   HERO — RESPONSIVE
   =================================================== */

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    background-color: #faf7f2;
  }

  .hero .container {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: 380px;
  }

  .hero-quote-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 16px;
    max-width: 100%;
  }

  .hero-text-wrapper {
    min-height: 220px;
  }

  .song-badge-img {
    width: 150px;
    height: 150px;
  }

  .song-badge-col {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px;
  }

  .song-badge-text {
    max-width: 200px;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .hero .container {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero-quote-card {
    display: none;
  }

  .song-badge-img {
    width: 120px;
    height: 120px;
  }
}

/* ===================================================
   VOLUME SECTIONS — Episodes with hover reading samples
   =================================================== */
.volume-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
  overflow: hidden;
}

.volume-section--alt {
  background-color: #ffffff;
}

.volume-inner {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Left: text content */
.volume-left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.volume-title {
  font-family: "Noto Serif", serif;
  font-size: clamp(48px, 5.5vw, 80px);
  font-style: italic;
  font-weight: 400;
  color: #555250;
  line-height: 1.08;
  letter-spacing: -2px;
}

.volume-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 40px;
}

.volume-song-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.volume-song-badge img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(150, 100, 10, 0.35));
}

.volume-song-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
  max-width: 180px;
}

/* Middle: song badge */
.volume-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Right: image with reading sample overlay */
.volume-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.volume-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-width: 340px;
}

.volume-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.volume-quote-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-radius: 6px;
  max-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.volume-quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 8px;
}

.volume-quote-card span {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Reading sample overlay */
.reading-sample {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 32px 28px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  z-index: 3;
  border-radius: 0 8px 8px 0;
}

.volume-image-wrap:hover .reading-sample {
  opacity: 1;
  transform: translateX(0);
}

.reading-sample-title {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.reading-sample-text {
  font-family: "Noto Serif", serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.85;
}

/* Episode rotation */
.volume-title-wrap {
  position: relative;
  min-height: 260px;
}

.volume-title.volume-ep {
  transition: opacity 0.5s ease;
}

.volume-title.volume-ep:not(.active) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.volume-title.volume-ep.active {
  opacity: 1;
}

/* Reading samples: hidden by default, shown on hover only for active episode */
.reading-sample.volume-ep {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.reading-sample.volume-ep.active {
  pointer-events: auto;
}

.volume-image-wrap:hover .reading-sample.volume-ep.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
  .volume-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .volume-left {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .volume-desc {
    max-width: 100%;
  }

  .volume-right {
    width: 100%;
    justify-content: center;
  }

  .volume-image-wrap {
    max-width: 100%;
  }

  .volume-center {
    flex-direction: row;
    gap: 16px;
  }

  .volume-quote-card {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 12px;
  }

  .volume-title-wrap {
    min-height: 200px;
  }

  .reading-sample {
    width: 100%;
    border-radius: 8px;
  }
}
