* { box-sizing: border-box; }

:root {
  --ink: #070607;
  --ink-2: #0d0b0c;
  --panel: #111012;
  --ivory: #f0e6d9;
  --muted: #b8a99b;
  --gold: #d4ad72;
  --gold-dark: #9c7145;
  --wine: #76131b;
  --wine-dark: #34070b;
  --line: rgba(212,173,114,.28);
  --header-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(100,13,20,.10), transparent 30rem),
    #070607;
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
button, input { font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ivory);
  color: #111;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 70px);
  background: rgba(6,5,6,.90);
  border-bottom: 1px solid rgba(212,173,114,.16);
  backdrop-filter: blur(14px);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 16px;
}

.brand-name {
  font-family: Georgia, serif;
  letter-spacing: .18em;
  font-size: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 34px);
}

.main-nav a {
  text-decoration: none;
  color: #d7cbc0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.main-nav .language-link {
  color: #df777c;
  border-left: 1px solid rgba(255,255,255,.16);
  padding-left: 24px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  background: var(--gold);
  margin: 6px 0;
}

.section {
  position: relative;
  padding: clamp(72px, 8vw, 126px) clamp(22px, 6vw, 110px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #c15b61;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.detail-copy h2,
.newsletter-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.7vw, 4.7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
}

.section-heading > p:last-child {
  color: var(--muted);
}

/* HERO */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,5,6,.96) 0%, rgba(7,6,7,.75) 48%, rgba(16,4,7,.70) 100%),
    url("../assets/landing-desktop.png") center / cover no-repeat;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 34%, rgba(128,15,23,.20), transparent 19rem),
    linear-gradient(to bottom, transparent 65%, #070607 100%);
}

.hero-copy, .hero-book {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 820px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: .05em;
}

.hero-hook {
  margin: 24px 0 22px;
  color: #e1c7a4;
  font-family: Georgia, serif;
  font-size: clamp(1.12rem, 1.55vw, 1.62rem);
  line-height: 1.28;
  max-width: 900px;
}

.hero-hook .hook-line {
  display: block;
}

.hero-hook .hook-line + .hook-line {
  margin-top: 2px;
}

.hero-hook .hook-line.emphasis {
  margin-top: 10px;
}

.hero-summary {
  max-width: 670px;
  color: #c7bbb1;
  font-size: 16px;
}

.trope-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.trope-row span {
  padding: 7px 11px;
  border: 1px solid rgba(212,173,114,.27);
  color: #d5b98f;
  background: rgba(0,0,0,.22);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-width: 172px;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 12px;
  border: 1px solid var(--gold-dark);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button.primary {
  background: linear-gradient(180deg, #75141c, #3e080d);
}
.button.secondary {
  background: rgba(8,8,9,.68);
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  background: #8a1821;
  border-color: var(--gold);
  outline: none;
}

.hero-book {
  display: grid;
  place-items: center;
}

.book-stage {
  position: relative;
  width: min(330px, 78%);
  aspect-ratio: .64;
  transform: perspective(1000px) rotateY(-5deg);
}

.book-glow {
  position: absolute;
  inset: 18% -25% 5%;
  border-radius: 50%;
  background: rgba(124,17,26,.34);
  filter: blur(45px);
}

.cover-fallback {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 34px 22px 28px;
  border: 1px solid rgba(212,173,114,.58);
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
  background:
    radial-gradient(circle at 50% 40%, rgba(125,16,24,.24), transparent 35%),
    linear-gradient(145deg, #121013, #050506 56%, #21070b);
  text-align: center;
  font-family: Georgia, serif;
}

.cover-fallback::before,
.mini-cover::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212,173,114,.20);
  pointer-events: none;
}

.cover-fallback .series {
  color: #ad9b8a;
  font-size: 10px;
  letter-spacing: .18em;
}
.cover-title {
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: .08em;
}
.cover-symbol {
  color: #9c1820;
  font-size: 54px;
}
.cover-author {
  color: #d9c4aa;
  letter-spacing: .18em;
  font-size: 12px;
}

/* BOOKS */
.books-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(109,12,18,.10), transparent 33rem),
    #080708;
}

.book-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}

.book-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(212,173,114,.18);
  background: linear-gradient(145deg, rgba(18,16,18,.95), rgba(8,7,8,.95));
  transition: transform .25s ease, border-color .25s ease;
}

.book-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,173,114,.42);
}

.mini-cover {
  position: relative;
  aspect-ratio: .66;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(212,173,114,.46);
  box-shadow: 0 18px 30px rgba(0,0,0,.38);
  font-family: Georgia, serif;
  text-align: center;
}

.sed-mini {
  background:
    radial-gradient(circle at center, rgba(126,20,28,.23), transparent 42%),
    linear-gradient(145deg,#120d0e,#050506);
}
.heiress-mini {
  background:
    radial-gradient(circle at center, rgba(83,48,112,.34), transparent 38%),
    linear-gradient(145deg,#160f19,#050506);
}

.mini-cover span {
  position: relative;
  z-index: 1;
  font-size: 26px;
  letter-spacing: .06em;
  line-height: 1.1;
}

.series-label {
  color: #c15b61;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.book-card h3 {
  margin: 5px 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.book-card-copy > p:not(.series-label) {
  color: #bbae9f;
  font-size: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.card-actions a,
.text-link {
  color: #ddb77d;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-actions a:hover,
.text-link:hover {
  color: #fff0d8;
}

/* QUOTE */
.quote-band {
  padding: 34px 20px;
  text-align: center;
  border-top: 1px solid rgba(212,173,114,.17);
  border-bottom: 1px solid rgba(212,173,114,.17);
  background:
    linear-gradient(90deg, #130609, #3b080d 45%, #160609);
}

.quote-band p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  letter-spacing: .06em;
}
.quote-band em {
  color: #e4bd83;
  font-weight: 400;
}

/* NEWS */
.news-section { background: #0a0809; }

.news-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}

.news-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(212,173,114,.18);
  background:
    linear-gradient(145deg, rgba(26,16,18,.94), rgba(9,8,9,.96));
}

.news-card::after {
  content:"";
  position:absolute;
  right:-50px;
  bottom:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(118,19,27,.13);
  filter:blur(10px);
}

.news-type {
  color: #c15b61;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 12px;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
}

.news-card p {
  color: #bbae9f;
  font-size: 14px;
}

.news-meta {
  display: inline-block;
  margin-top: 12px;
  color: #d8b476;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* DETAIL SECTIONS */
.detail-panel {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  background:
    radial-gradient(circle at 77% 47%, rgba(103,12,19,.18), transparent 26rem),
    #080708;
}

.detail-panel.alternate {
  grid-template-columns: minmax(320px,.9fr) minmax(0,1.1fr);
  background:
    radial-gradient(circle at 23% 47%, rgba(68,42,97,.20), transparent 26rem),
    #0b090c;
}

.detail-copy {
  max-width: 730px;
}

.lead {
  color: #decfbe;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.detail-copy > p:not(.eyebrow):not(.lead),
.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.detail-art {
  min-height: 360px;
  display: grid;
  place-items: center;
  position: relative;
}

.moon, .violet-orb {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(151,19,28,.32);
}
.moon {
  background:
    radial-gradient(circle at 35% 30%, #bd5157 0 4%, #7c1820 20%, #2f090e 70%);
}
.violet-orb {
  background:
    radial-gradient(circle at 35% 30%, #9c79b7 0 3%, #4a2f63 22%, #170f1e 72%);
  box-shadow: 0 0 80px rgba(93,54,119,.28);
}
.detail-art .crown {
  position: absolute;
  color: rgba(233,203,160,.84);
  font-size: 90px;
  text-shadow: 0 10px 30px #000;
}

/* ABOUT */
.about-section {
  display: grid;
  grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  background: #080708;
}

.about-portrait {
  display: grid;
  place-items: center;
}

.portrait-frame {
  width: min(380px, 90%);
  aspect-ratio: .82;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 1px solid rgba(212,173,114,.38);
  background:
    radial-gradient(circle at 50% 40%, rgba(117,18,26,.18), transparent 35%),
    linear-gradient(150deg,#171214,#090809);
  box-shadow: 0 30px 55px rgba(0,0,0,.38);
}

.portrait-frame::before {
  content:"";
  position:absolute;
}

.portrait-monogram {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 46px;
}

.portrait-frame span {
  width: 75%;
  text-align: center;
  color: #b59b7b;
  font-size: 10px;
  letter-spacing: .16em;
}

/* NEWSLETTER */
.newsletter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at 16% 50%, rgba(132,18,27,.30), transparent 27rem),
    linear-gradient(100deg,#20070a,#090708 68%);
  border-top: 1px solid rgba(212,173,114,.15);
}

.newsletter-copy {
  max-width: 650px;
}

.newsletter-copy > p:last-child {
  color: #b9aa9c;
}

.newsletter-form label {
  display: block;
  margin-bottom: 9px;
  color: #cfbca9;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-row input,
.newsletter-row button {
  min-height: 52px;
  border: 1px solid rgba(212,173,114,.38);
}

.newsletter-row input {
  min-width: 0;
  padding: 0 16px;
  color: #eee6de;
  background: rgba(5,5,6,.76);
  outline: none;
}

.newsletter-row input:focus {
  border-color: var(--gold);
}

.newsletter-row button {
  padding: 0 24px;
  color: #f3e8da;
  background: #671018;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}

.newsletter-row button:hover {
  background: #861924;
}

.form-note {
  color: #907f73;
  font-size: 11px;
}

/* FOOTER */
.site-footer {
  padding: 34px clamp(22px, 6vw, 110px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(212,173,114,.15);
  background: #050405;
  color: #978b81;
  font-size: 11px;
}

.footer-brand { color: #d9c9b5; }
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-footer > p {
  margin: 0;
  text-align: right;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 950px) {
  .menu-toggle { display: block; cursor: pointer; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    background: rgba(7,6,7,.98);
    border-bottom: 1px solid rgba(212,173,114,.18);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .main-nav .language-link {
    border-left: 0;
    padding-left: 0;
  }

  .hero,
  .detail-panel,
  .detail-panel.alternate,
  .about-section,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 90px;
    min-height: auto;
    background:
      linear-gradient(to bottom, rgba(6,5,6,.72), rgba(6,5,6,.96)),
      url("../assets/landing-mobile.png") center top / cover no-repeat;
  }

  .hero-copy { text-align: center; margin: 0 auto; }
  .hero-summary { margin-left: auto; margin-right: auto; }
  .trope-row, .cta-row { justify-content: center; }
  .hero-book { margin-top: 10px; }

  .book-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .detail-panel.alternate .detail-art { order: 2; }
  .detail-panel.alternate .detail-copy { order: 1; }

  .about-portrait { order: 2; }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand, .footer-links { justify-content: center; }
  .site-footer > p { text-align: center; }
}

@media (max-width: 650px) {
  :root { --header-height: 62px; }

  .site-header { padding: 0 16px; }
  .brand-name { display: none; }

  .section {
    padding: 68px 20px;
  }

  .hero h1 { font-size: clamp(4.8rem, 25vw, 7rem); }
  .hero-hook {
    font-size: clamp(1.02rem, 5vw, 1.28rem);
    line-height: 1.24;
  }
  .hero-hook .hook-line.emphasis {
    margin-top: 8px;
  }

  .book-card {
    grid-template-columns: 110px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .mini-cover span { font-size: 18px; }
  .book-card-copy > p:not(.series-label) { font-size: 13px; }

  .newsletter-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .newsletter-row button { min-height: 48px; }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .book-card {
    grid-template-columns: 1fr;
  }
  .mini-cover {
    width: 150px;
    margin: 0 auto;
  }
  .book-card-copy {
    text-align: center;
  }
  .card-actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================================
   V5.2 — REAL ARTWORK
   ========================================================= */

.real-cover {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(212,173,114,.58);
  box-shadow:
    0 30px 60px rgba(0,0,0,.58),
    0 0 0 7px rgba(10,8,9,.42);
}

.hero-real-cover {
  object-position: center;
}

.real-mini-cover {
  padding: 0;
  overflow: hidden;
  background: #060506;
}

.real-mini-cover::before {
  display: none;
}

.real-mini-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame.real-about {
  width: min(440px, 94%);
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border-color: rgba(212,173,114,.42);
  background: #080708;
}

.portrait-frame.real-about img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

.portrait-frame.real-about:hover img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

@media (max-width: 650px) {
  .portrait-frame.real-about {
    width: min(88vw, 420px);
  }
}


/* =========================================================
   V5.3 — SERIES CAROUSELS
   ========================================================= */

.series-panel {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 47%, rgba(109,15,22,.18), transparent 26rem),
    #080708;
}

.series-panel.alternate {
  grid-template-columns: minmax(300px,.92fr) minmax(0,1.08fr);
  background:
    radial-gradient(circle at 22% 48%, rgba(72,47,99,.20), transparent 26rem),
    #0b090c;
}

.series-copy {
  max-width: 760px;
}

.series-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
}

.series-intro {
  max-width: 680px;
  color: #aa9c91;
  margin-bottom: 34px;
}

.series-book-info {
  padding-top: 28px;
  border-top: 1px solid rgba(212,173,114,.18);
}

.series-book-info h3 {
  margin: 6px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.series-book-info > p:not(.series-label):not(.lead) {
  color: var(--muted);
}

.series-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 24px;
}

.series-cover-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.series-cover-wrap::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: rgba(118,19,27,.20);
  filter: blur(52px);
}

.series-panel.alternate .series-cover-wrap::before {
  background: rgba(79,51,104,.22);
}

.series-cover {
  position: relative;
  z-index: 1;
  width: min(390px, 82%);
  max-height: 590px;
  object-fit: contain;
  border: 1px solid rgba(212,173,114,.40);
  box-shadow:
    0 34px 62px rgba(0,0,0,.54),
    0 0 0 7px rgba(9,8,9,.36);
  transition: opacity .22s ease, transform .22s ease;
}

.series-cover:hover {
  transform: translateY(-4px) scale(1.008);
}

.series-nav {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.series-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(212,173,114,.40);
  color: var(--gold);
  background: rgba(8,8,9,.70);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.series-arrow:hover,
.series-arrow:focus-visible {
  background: #681019;
  border-color: var(--gold);
  transform: translateY(-2px);
  outline: none;
}

.series-count {
  min-width: 42px;
  color: #9f8c7b;
  font-size: 11px;
  letter-spacing: .10em;
  text-align: center;
}

.series-arrow[hidden],
.series-count[hidden] {
  display: none;
}

.disabled-link {
  opacity: .55;
}

@media (max-width: 950px) {
  .series-panel,
  .series-panel.alternate {
    grid-template-columns: 1fr;
  }

  .series-panel.alternate .series-cover-wrap {
    order: 2;
  }

  .series-panel.alternate .series-copy {
    order: 1;
  }

  .series-copy {
    text-align: center;
    margin: 0 auto;
  }

  .series-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .series-actions,
  .series-nav {
    justify-content: center;
  }

  .series-cover {
    width: min(330px, 76vw);
  }
}


/* =========================================================
   V5.4 — NAVIGATION / FOOTER / CLEAN CTA TWEAKS
   ========================================================= */

#home,
#latest-releases,
#books,
#news,
#about,
#newsletter,
#contact {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-social a {
  color: #d8b476;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 10px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #f3d8ad;
  outline: none;
}

@media (max-width: 950px) {
  .footer-center {
    width: 100%;
  }
}


/* =========================================================
   V5.5 — MAILERLITE LIVE EMBED
   ========================================================= */

.mailerlite-wrapper {
  position: relative;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(212,173,114,.20);
  background:
    linear-gradient(145deg, rgba(14,10,11,.82), rgba(6,5,6,.88));
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}

.mailerlite-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #bba991;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f1922;
  box-shadow: 0 0 10px rgba(143,25,34,.65);
}

.mailerlite-wrapper .ml-embedded {
  width: 100%;
  min-height: 90px;
}

/*
  MailerLite injects its own form markup at runtime.
  These broad selectors are intentionally conservative:
  they improve integration where allowed without depending
  on MailerLite's internal class names.
*/
.mailerlite-wrapper input[type="email"],
.mailerlite-wrapper input[type="text"] {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: #eee6de !important;
  background: rgba(5,5,6,.82) !important;
  border: 1px solid rgba(212,173,114,.38) !important;
  border-radius: 0 !important;
}

.mailerlite-wrapper button,
.mailerlite-wrapper input[type="submit"] {
  min-height: 48px;
  padding: 0 22px !important;
  color: #f3e8da !important;
  background: #671018 !important;
  border: 1px solid rgba(212,173,114,.50) !important;
  border-radius: 0 !important;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px !important;
}

.mailerlite-wrapper button:hover,
.mailerlite-wrapper input[type="submit"]:hover {
  background: #861924 !important;
}

.mailerlite-wrapper a {
  color: #d8b476;
}

.mailerlite-wrapper .form-note {
  margin: 14px 0 0;
  color: #907f73;
  font-size: 11px;
}

@media (max-width: 650px) {
  .mailerlite-wrapper {
    padding: 16px;
  }
}


/* =========================================================
   V5.6 — MAILERLITE FULL HTML, DIANA LAUREN THEME
   ========================================================= */

.mailerlite-wrapper {
  position: relative;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(212,173,114,.22);
  background:
    linear-gradient(145deg, rgba(14,10,11,.90), rgba(6,5,6,.94));
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.mailerlite-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #bba991;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f1922;
  box-shadow: 0 0 10px rgba(143,25,34,.65);
}

#mlb2-44854470.ml-form-embedContainer,
#mlb2-44854470 .ml-form-align-center,
#mlb2-44854470 .ml-form-embedWrapper,
#mlb2-44854470 .ml-form-embedBody,
#mlb2-44854470 .ml-form-successBody {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#mlb2-44854470 .ml-form-fieldRow {
  margin: 0 0 12px !important;
}

#mlb2-44854470 input[type="email"] {
  display: block;
  width: 100% !important;
  min-height: 52px;
  padding: 0 16px !important;
  margin: 0 !important;
  color: #f0e7dc !important;
  caret-color: #d8b476;
  background: rgba(4,4,5,.82) !important;
  border: 1px solid rgba(212,173,114,.42) !important;
  border-radius: 0 !important;
  outline: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

#mlb2-44854470 input[type="email"]::placeholder {
  color: #8f8176 !important;
}

#mlb2-44854470 input[type="email"]:focus {
  border-color: #d8b476 !important;
  box-shadow: 0 0 0 1px rgba(212,173,114,.16) !important;
}

#mlb2-44854470 .ml-form-embedPermissions {
  width: 100%;
  margin: 0 0 14px;
}

#mlb2-44854470 .ml-form-embedPermissionsContent,
#mlb2-44854470 .ml-form-embedPermissionsContent p {
  margin: 0 !important;
  color: #97887c !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

#mlb2-44854470 .ml-form-recaptcha {
  float: none !important;
  margin: 0 0 14px !important;
  transform-origin: left top;
}

#mlb2-44854470 .ml-form-embedSubmit {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

#mlb2-44854470 .ml-form-embedSubmit button.primary {
  width: 100% !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 0 22px !important;
  color: #f4e8d8 !important;
  background:
    linear-gradient(180deg, #74151d, #480a10) !important;
  border: 1px solid rgba(212,173,114,.56) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease !important;
}

#mlb2-44854470 .ml-form-embedSubmit button.primary:hover,
#mlb2-44854470 .ml-form-embedSubmit button.primary:focus-visible {
  background:
    linear-gradient(180deg, #8c1b25, #5b0c13) !important;
  border-color: #d8b476 !important;
  transform: translateY(-1px);
  outline: none;
}

#mlb2-44854470 .ml-form-successContent {
  padding: 22px !important;
  border: 1px solid rgba(212,173,114,.24);
  background: rgba(70,10,15,.24);
  text-align: left;
}

#mlb2-44854470 .ml-form-successContent h4 {
  margin: 0 0 7px !important;
  color: #ead3ae !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
}

#mlb2-44854470 .ml-form-successContent p {
  margin: 0 !important;
  color: #c3b3a5 !important;
  font-size: 13px !important;
}

.mailerlite-wrapper .form-note {
  margin: 14px 0 0;
  color: #8f8176;
  font-size: 11px;
}

/* reCAPTCHA is intentionally left readable and native.
   Its local-file domain warning disappears only when tested
   on the real diana-lauren.com domain. */
@media (max-width: 480px) {
  #mlb2-44854470 .ml-form-recaptcha {
    width: 220px;
    transform: scale(.78);
    margin-bottom: -2px !important;
  }
}


/* =========================================================
   V5.7 — CONTACT / FORMSPREE
   ========================================================= */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
  background:
    radial-gradient(circle at 17% 42%, rgba(106,15,22,.19), transparent 27rem),
    linear-gradient(120deg, #0c090a, #070607 64%);
  border-top: 1px solid rgba(212,173,114,.13);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
}

.contact-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.contact-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #b9a896;
  font-size: 12px;
  letter-spacing: .04em;
}

.contact-note-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.contact-form-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(212,173,114,.23);
  background:
    linear-gradient(145deg, rgba(16,12,13,.95), rgba(7,6,7,.97));
  box-shadow: 0 28px 60px rgba(0,0,0,.30);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  color: #c9b7a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: #eee5dc;
  background: rgba(4,4,5,.80);
  border: 1px solid rgba(212,173,114,.34);
  border-radius: 0;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #756a62;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  background: rgba(8,7,8,.92);
  box-shadow: 0 0 0 1px rgba(212,173,114,.13);
}

.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: #b83b43;
}

.field-error,
.formspree-error {
  min-height: 0;
  color: #dc7177;
  font-size: 11px;
}

.formspree-success:not(:empty) {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(212,173,114,.27);
  background: rgba(90,14,21,.26);
  color: #e2c8a5;
  font-family: Georgia, serif;
  font-size: 17px;
}

.formspree-error:not(:empty) {
  margin-bottom: 14px;
}

.contact-submit {
  min-height: 50px;
  padding: 0 24px;
  color: #f3e6d5;
  background:
    linear-gradient(180deg, #74151d, #47090f);
  border: 1px solid rgba(212,173,114,.55);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background:
    linear-gradient(180deg, #8c1b25, #5b0c13);
  border-color: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.contact-submit:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.contact-privacy {
  margin: -4px 0 0;
  color: #81746b;
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 950px) {
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    text-align: center;
    margin: 0 auto;
  }

  .contact-note {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .contact-form-card {
    padding: 18px;
  }
}


/* =========================================================
   V5.9 — PRIVACY POLICY
   ========================================================= */
.legal-page {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 42px);
  background:
    radial-gradient(circle at 18% 8%, rgba(100,14,22,.18), transparent 28rem),
    linear-gradient(180deg, #0b0809, #050405 55%);
}

.legal-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 82px;
}

.legal-shell .eyebrow {
  margin-bottom: 10px;
}

.legal-shell h1 {
  margin: 0 0 14px;
  color: #ead5b4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.legal-updated {
  margin: 0 0 34px;
  color: #8f8176;
  font-size: 12px;
  letter-spacing: .04em;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(212,173,114,.20);
  background: rgba(9,7,8,.86);
  box-shadow: 0 26px 60px rgba(0,0,0,.25);
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: #d9bd93;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #c3b7ad;
  font-size: 14px;
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: #dfc094;
  text-underline-offset: 3px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.legal-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(212,173,114,.38);
  color: #e7d1ae;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-actions a:hover,
.legal-actions a:focus-visible {
  border-color: #d8b476;
  background: rgba(104,15,22,.28);
  outline: none;
}

@media (max-width: 650px) {
  .legal-shell {
    width: min(100% - 28px, 920px);
    padding-top: 26px;
  }
  .legal-card {
    padding: 20px;
  }
}

#mlb2-44854170 .ml-form-embedPermissionsContent a,
#mlb2-44854470 .ml-form-embedPermissionsContent a,
.contact-privacy a {
  color: #c7a875 !important;
  text-underline-offset: 2px;
}
