@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&family=Lora:wght@400;500;600&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  color-scheme: dark;
  --ink: #0f0f10;
  --charcoal: #0f0f10;
  --slate: #17181c;
  --panel: #17181c;
  --paper: #faf7f2;
  --paper-soft: #f5f1ea;
  --teal: #1d4e5f;
  --teal-soft: #2c6675;
  --gold: #b89b72;
  --gold-deep: #8f724e;
  --gold-soft: #d4bf9f;
  --bronze: #b89b72;
  --accent: #b89b72;
  --cream: #f5f1ea;
  --muted: #d8d0c3;
  --paper-text: #202126;
  --paper-muted: #5e5a53;
  --line: rgba(245, 241, 234, 0.16);
  --paper-line: rgba(15, 15, 16, 0.12);
  --shadow: 0 24px 80px rgba(15, 15, 16, 0.36);
  --radius: 8px;
  font-family: "Lora", Georgia, serif;
  background: var(--ink);
  color: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.3), transparent 36%),
    linear-gradient(0deg, rgba(122, 78, 58, 0.11), transparent 54%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--slate) 42%, var(--charcoal) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(245, 241, 234, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
.button,
.nav-menu,
.eyebrow,
.book-meta,
.cover-genre,
.cover-author,
.brand-domain,
label,
.text-link {
  font-family: "Inter", Arial, sans-serif;
}

main {
  overflow: hidden;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 520ms ease-out,
    transform 520ms ease-out;
  will-change: opacity, transform;
}

.reveal-from-left {
  transform: translate3d(-24px, 0, 0);
}

.reveal-from-right {
  transform: translate3d(24px, 0, 0);
}

.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 15, 16, 0.9);
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-email,
.contact-email,
.social-inline,
.site-footer a,
.text-link,
.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand-lockup {
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 155, 114, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
  background: rgba(184, 155, 114, 0.12);
}

.brand-name,
.brand-domain {
  display: block;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-domain {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.nav-menu > a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  padding: 10px 12px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.nav-menu > a:hover,
.nav-menu > a.active {
  color: var(--cream);
  background: rgba(184, 155, 114, 0.16);
}

.social-inline {
  margin-left: 8px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.social-inline a,
.social-disabled,
.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(184, 155, 114, 0.12);
}

.social-icon {
  width: 19px;
  height: 19px;
}

.social-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.menu-toggle {
  display: none;
}

.icon-button {
  cursor: pointer;
}

.menu-toggle span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 80px) clamp(38px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(15, 15, 16, 0.92), rgba(23, 24, 28, 0.86)),
    radial-gradient(circle at 78% 36%, rgba(29, 78, 95, 0.45), transparent 34%),
    radial-gradient(circle at 22% 82%, rgba(122, 78, 58, 0.18), transparent 28%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: 6.7rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-tagline {
  margin: 20px 0 30px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
}

.hero-actions,
.purchase-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.book-card:hover,
.post-card:hover {
  transform: translateY(-3px);
}

.primary {
  color: #10100e;
  background: linear-gradient(135deg, #d4bf9f, var(--gold));
}

.secondary {
  color: var(--cream);
  border-color: rgba(245, 241, 234, 0.28);
  background: rgba(184, 155, 114, 0.1);
}

.secondary:hover {
  border-color: rgba(184, 155, 114, 0.7);
  background: rgba(184, 155, 114, 0.2);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(29, 78, 95, 0.25), transparent),
    repeating-linear-gradient(0deg, rgba(245, 241, 234, 0.035) 0 1px, transparent 1px 22px);
}

.floating-note {
  position: absolute;
  right: clamp(4px, 2vw, 28px);
  bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 260px;
  border: 1px solid rgba(184, 155, 114, 0.45);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--cream);
  background: rgba(15, 15, 16, 0.82);
  box-shadow: var(--shadow);
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 230px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 7px;
  padding: 20px;
  color: var(--cream);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.5);
  isolation: isolate;
}

figure.book-cover,
.promo-image,
.gallery-item {
  margin: 0;
}

.book-cover::before,
.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.book-cover::after {
  opacity: 0.42;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(245, 241, 234, 0.08) 14px 15px),
    linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.42));
}

.book-cover strong {
  max-width: 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.65rem;
  line-height: 0.95;
  overflow-wrap: normal;
  text-wrap: balance;
}

.book-cover.image-cover {
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(15, 15, 16, 0.88);
}

.book-cover.image-cover::before,
.book-cover.image-cover::after {
  display: none;
}

.book-cover.image-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.book-card .book-cover.image-cover {
  background: rgba(15, 15, 16, 0.08);
}

.promo-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 155, 114, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.18), rgba(15, 15, 16, 0.7)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-promo {
  width: min(100%, 600px);
  aspect-ratio: 6 / 5;
}

.feature-promo {
  width: min(100%, 620px);
  aspect-ratio: 3 / 2;
}

.cover-genre,
.cover-author {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured-cover {
  width: min(100%, 340px);
}

.cover-ai::before {
  background:
    linear-gradient(160deg, #0f0f10 8%, #1d4e5f 48%, #17181c 100%),
    linear-gradient(90deg, transparent, rgba(29, 78, 95, 0.46));
}

.cover-ai strong {
  text-shadow: 0 0 28px rgba(29, 78, 95, 0.85);
}

.cover-pain::before {
  background: linear-gradient(160deg, #17181c 0%, #7a4e3a 52%, #0f0f10 100%);
}

.cover-junebug::before {
  background:
    linear-gradient(165deg, #f5f1ea 0%, #b89b72 45%, #7a4e3a 100%);
}

.cover-life::before {
  background:
    linear-gradient(160deg, #faf7f2 8%, #b89b72 52%, #1d4e5f 100%);
}

.cover-life strong {
  width: 100%;
  font-size: clamp(1.38rem, 10cqw, 1.52rem);
  line-height: 1.04;
}

.cover-junebug,
.cover-life {
  container-type: inline-size;
  color: var(--paper-text);
}

.cover-junebug::after,
.cover-life::after {
  opacity: 0.22;
}

.welcome-band,
.content-section,
.newsletter-section,
.about-preview,
.post-list,
.contact-layout,
.policy-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 80px);
}

.prose-panel {
  max-width: 900px;
}

.prose-panel h2 {
  margin-bottom: 22px;
}

.welcome-band {
  background:
    linear-gradient(90deg, rgba(122, 78, 58, 0.08), transparent),
    var(--paper);
}

.content-section,
.bio-layout,
.policy-section,
.post-list {
  background:
    linear-gradient(135deg, rgba(184, 155, 114, 0.07), transparent 46%),
    var(--paper-soft);
}

.welcome-band h2,
.welcome-band p,
.content-section h2,
.content-section h3,
.content-section p,
.about-preview h2,
.about-preview p,
.post-list h2,
.post-list p,
.policy-section h2,
.policy-section p,
.contact-layout label {
  color: var(--paper-text);
}

.welcome-band p,
.content-section p,
.about-preview p,
.bio-layout p,
.post-list p {
  color: var(--paper-muted);
}

.policy-section h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 2rem;
}

.policy-section a {
  color: var(--gold-deep);
  font-weight: 800;
}

.content-section .eyebrow,
.book-card:not(.thriller) .eyebrow,
.post-list .eyebrow {
  color: var(--gold-deep);
}

.feature-release {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.32), rgba(15, 15, 16, 0.94)),
    var(--slate);
}

.feature-cover-wrap {
  display: grid;
  place-items: center;
}

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

.book-meta {
  color: var(--gold-deep);
  font-weight: 700;
}

.feature-copy .book-meta,
.feature-copy p {
  color: var(--muted);
}

.section-intro {
  max-width: 780px;
  margin-bottom: 30px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-card,
.post-card {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: rgba(250, 247, 242, 0.86);
  box-shadow: 0 18px 44px rgba(15, 15, 16, 0.12);
  transition: transform 180ms ease, border-color 180ms ease;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.book-card:hover {
  border-color: rgba(184, 155, 114, 0.6);
}

.book-card.thriller {
  border-color: rgba(245, 241, 234, 0.16);
  background:
    linear-gradient(140deg, rgba(23, 24, 28, 0.96), rgba(29, 78, 95, 0.72)),
    var(--slate);
  box-shadow: var(--shadow);
}

.book-card.thriller h3,
.book-card.thriller p {
  color: var(--cream);
}

.book-card.thriller .book-meta {
  color: var(--muted);
}

.book-card .book-cover {
  width: 100%;
}

.book-card-body {
  min-width: 0;
}

.book-card-body p {
  margin: 10px 0;
}

.text-link {
  color: var(--gold-deep);
  font-weight: 800;
}

.book-card.thriller .text-link,
.detail-copy .text-link {
  color: var(--gold);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background:
    linear-gradient(100deg, rgba(245, 241, 234, 0.96), rgba(250, 247, 242, 0.88)),
    var(--paper-soft);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.18), transparent 48%),
    var(--slate);
}

.newsletter-section h2 {
  margin-bottom: 16px;
}

.full-newsletter {
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  padding-top: 36px;
}

.small-note,
.form-success,
.form-error {
  font-size: 0.9rem;
}

.newsletter-card,
.newsletter-form,
.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
  border: 1px solid rgba(184, 155, 114, 0.22);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 20px 48px rgba(15, 15, 16, 0.18);
}

.newsletter-card p {
  margin: 0;
  color: var(--paper-muted);
}

.newsletter-card .button {
  width: fit-content;
}

.compact-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
}

.field-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--paper-text);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 15, 16, 0.16);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--paper-text);
  background: rgba(250, 247, 242, 0.78);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(184, 155, 114, 0.86);
  box-shadow: 0 0 0 3px rgba(184, 155, 114, 0.18);
}

.form-success,
.form-error {
  grid-column: 1 / -1;
  margin: 0;
  border-radius: 6px;
  padding: 13px 14px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.55;
}

.form-success {
  border: 1px solid rgba(184, 155, 114, 0.34);
  color: #4e3b1f;
  background: rgba(184, 155, 114, 0.18);
}

.form-error {
  border: 1px solid rgba(122, 47, 36, 0.24);
  color: #7a2f24;
  background: rgba(122, 47, 36, 0.08);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.page-hero {
  padding: clamp(68px, 10vw, 126px) clamp(18px, 5vw, 80px) clamp(46px, 7vw, 78px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.31), transparent 52%),
    var(--slate);
}

.page-hero p {
  max-width: 760px;
}

.warm-page {
  background:
    linear-gradient(135deg, rgba(122, 78, 58, 0.14), transparent 52%),
    var(--paper-soft);
  color: var(--paper-text);
}

.warm-page h1,
.warm-page p {
  color: var(--paper-text);
}

.warm-page .eyebrow {
  color: var(--gold-deep);
}

.newsletter-hero {
  background:
    linear-gradient(135deg, rgba(184, 155, 114, 0.15), transparent 48%),
    rgba(29, 78, 95, 0.24);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 560px;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(15, 15, 16, 0.96), rgba(23, 24, 28, 0.84)),
    radial-gradient(circle at 82% 32%, rgba(184, 155, 114, 0.18), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(29, 78, 95, 0.26), transparent 34%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  pointer-events: none;
  border: 1px solid rgba(184, 155, 114, 0.12);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.about-hero-copy h1 {
  margin-bottom: 20px;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--cream);
  font-size: 1.22rem;
}

.literary-visual {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 420px;
  border: 1px solid rgba(184, 155, 114, 0.28);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(250, 247, 242, 0.055), rgba(184, 155, 114, 0.09)),
    #0d0e10;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(245, 241, 234, 0.035);
}

.emblem-halo {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 155, 114, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.literary-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}

.author-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
  width: min(100%, 440px);
  padding: clamp(20px, 4vw, 38px);
  color: var(--gold);
  text-align: center;
  border: 1px solid rgba(184, 155, 114, 0.2);
  background:
    radial-gradient(circle at 50% 36%, rgba(184, 155, 114, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(15, 15, 16, 0.36), rgba(23, 24, 28, 0.72));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(245, 241, 234, 0.035);
  animation: author-placeholder-rise 1100ms ease both;
}

.author-placeholder::before,
.author-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(184, 155, 114, 0.12);
}

.author-placeholder::after {
  inset: 22px;
  border-color: rgba(245, 241, 234, 0.06);
}

.author-placeholder:hover .author-monogram {
  filter:
    drop-shadow(0 0 18px rgba(184, 155, 114, 0.22))
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.author-monogram {
  display: block;
  width: min(100%, 330px);
  height: auto;
  color: var(--gold);
  filter:
    drop-shadow(0 0 10px rgba(184, 155, 114, 0.12))
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
  transition: filter 900ms ease, transform 900ms ease;
}

.author-monogram-ring,
.author-monogram-flourish,
.author-monogram-star {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.author-monogram-ring.outer {
  stroke-width: 1.35;
  opacity: 0.78;
}

.author-monogram-ring.inner {
  stroke-width: 0.75;
  opacity: 0.34;
}

.author-monogram-flourish {
  stroke-width: 1.2;
  opacity: 0.66;
}

.author-monogram-flourish.fine {
  stroke-width: 0.75;
  opacity: 0.34;
}

.author-monogram-star {
  fill: currentColor;
  stroke-width: 0;
  opacity: 0.9;
}

.author-monogram-letter {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 144px;
  font-weight: 700;
  letter-spacing: 0;
  fill: currentColor;
}

.author-monogram-m {
  opacity: 0.9;
}

.author-monogram-l {
  opacity: 0.76;
}

.author-placeholder-copy {
  max-width: 310px;
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.45;
}

@keyframes author-placeholder-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-narrative {
  position: relative;
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 80px) clamp(96px, 12vw, 154px);
  background:
    linear-gradient(180deg, var(--paper-soft), var(--paper) 48%, var(--paper-soft)),
    var(--paper);
}

.about-narrative::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(184, 155, 114, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 155, 114, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.about-chapter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}

.chapter-kicker {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 8px;
}

.chapter-kicker::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--gold);
}

.chapter-kicker .eyebrow {
  max-width: 20ch;
  color: var(--gold-deep);
  line-height: 1.55;
}

.chapter-copy {
  position: relative;
  border-left: 1px solid rgba(184, 155, 114, 0.42);
  padding-left: clamp(22px, 4vw, 54px);
}

.chapter-copy p {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--paper-text);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.82;
}

.chapter-copy p:first-child {
  color: var(--paper-text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
}

.narrative-divider {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 1000px;
  margin: clamp(44px, 7vw, 76px) auto;
  color: var(--gold-deep);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.narrative-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 114, 0.72), transparent);
}

.personal-message .chapter-copy {
  border-left-color: rgba(184, 155, 114, 0.28);
}

.personal-message {
  padding-bottom: clamp(12px, 2vw, 28px);
}

.book-detail {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: clamp(58px, 9vw, 116px) clamp(18px, 5vw, 80px);
}

.book-detail .book-cover {
  width: min(100%, 390px);
  position: sticky;
  top: 108px;
}

.book-detail .image-cover {
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.22), rgba(15, 15, 16, 0.88)),
    var(--charcoal);
}

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

.detail-copy p {
  color: var(--cream);
}

.detail-copy .book-meta,
.detail-copy .eyebrow {
  color: var(--gold);
}

.back-link {
  margin-bottom: 28px;
}

.coming-soon-panel {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 28px;
  border: 1px solid rgba(184, 155, 114, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(184, 155, 114, 0.1);
}

.coming-soon-panel span {
  color: var(--muted);
}

.media-gallery {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(29, 78, 95, 0.34), rgba(15, 15, 16, 0.94)),
    var(--slate);
}

.media-gallery .section-intro h2 {
  color: var(--cream);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
}

.gallery-item {
  display: grid;
  gap: 10px;
  flex: 1 1 320px;
  align-content: start;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(15, 15, 16, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.gallery-item.wide,
.gallery-item.wrap {
  flex-basis: min(100%, 520px);
}

.gallery-item img {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(15, 15, 16, 0.7);
}

.gallery-item.portrait img {
  aspect-ratio: 2 / 3;
  max-height: 620px;
}

.gallery-item.wide img {
  aspect-ratio: 3 / 2;
}

.gallery-item.wrap img {
  aspect-ratio: 1.4 / 1;
}

.gallery-item figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.post-card span {
  color: var(--gold-deep);
  font-weight: 700;
}

.contact-email {
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.contact-layout {
  max-width: 980px;
  background:
    linear-gradient(135deg, rgba(184, 155, 114, 0.08), transparent 48%),
    var(--paper-soft);
}

.site-footer {
  padding: 46px clamp(18px, 5vw, 80px) 28px;
  border-top: 1px solid var(--line);
  background: #0f0f10;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.5fr) minmax(180px, 0.5fr);
  gap: 30px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.site-footer a {
  width: fit-content;
  margin: 8px 0;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(184, 155, 114, 0.1);
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: rgba(184, 155, 114, 0.55);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.copyright {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.8rem;
  }

  .hero-section,
  .feature-release,
  .book-detail,
  .about-hero,
  .about-chapter,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-art {
    min-height: 480px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .book-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .about-preview,
  .post-card,
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .book-detail .book-cover {
    position: static;
  }

  .chapter-kicker {
    position: static;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 15, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu-open {
    display: flex;
  }

  .nav-menu > a {
    border-radius: 6px;
  }

  .social-inline {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .compact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-domain {
    display: none;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-tagline {
    font-size: 1.45rem;
  }

  .book-cover strong {
    font-size: 2.05rem;
  }

  .cover-life strong {
    font-size: clamp(1.38rem, 10cqw, 1.52rem);
  }

  .hero-section,
  .page-hero {
    padding-top: 48px;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-promo,
  .feature-promo {
    aspect-ratio: 3 / 2;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
  }

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

  .book-card .book-cover {
    max-width: 260px;
  }

  .button {
    width: 100%;
  }

  .purchase-links .button {
    width: auto;
  }

  .about-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .about-hero::before {
    inset: 14px;
  }

  .literary-visual {
    min-height: 300px;
    padding: 18px;
  }

  .literary-visual img {
    width: min(100%, 360px);
  }

  .author-placeholder {
    width: min(100%, 360px);
    padding: 18px;
  }

  .author-monogram {
    width: min(100%, 260px);
  }

  .chapter-copy {
    border-left: 0;
    padding-left: 0;
  }

  .chapter-copy p:first-child {
    font-size: 1.55rem;
  }

  .narrative-divider {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
