* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #08090b;
  --black-2: #101216;
  --white: #fff;
  --paper: #f6f6f6;
  --muted: #9b9b9b;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(8,9,11,.14);
  --accent: #f6f6f6;
  --max: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 80px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(8,9,11,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.desktop-nav a {
  opacity: .78;
  transition: .2s;
}

.desktop-nav a:hover {
  opacity: 1;
}

.desktop-nav .nav-buy {
  opacity: 1;
  border: 1px solid rgba(244,242,237,.55);
  padding: 11px 17px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* HERO */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(104,82,55,.35), transparent 25%),
    linear-gradient(115deg, #07090b 15%, #151719 55%, #28211b 100%);
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.28) 65%, rgba(0,0,0,.5)),
    linear-gradient(0deg, rgba(0,0,0,.65), transparent 55%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  max-width: 860px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #0396a6;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: #0396a6;
}

.hero h1,
h2 {
  font-family: "Montserrat", Arial, serif;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(64px, 10vw, 150px);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero h1 span {
  margin-left: .7em;
}

.hero-tagline {
  font-family: "Montserrat", Arial, serif;
  font-size: clamp(22px, 3vw, 34px);
  margin-top: 35px;
  max-width: 860px;
}

.hero-intro {
  color: #c0c0c0;
  max-width: 860px;
  margin-top: 16px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: .25s;
}

.button-light {
  background: #0396a6;
  color: var(--white);
}

.button-light:hover {
  background: #0396a6;
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid rgba(255,255,255,.45);
}

.button-outline:hover {
  background: rgba(255,255,255,.1);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .18em;
  opacity: .65;
}

.scroll-indicator span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

/* SECTIONS */

.section {
  padding: 60px 0;
}

.section-light {
  background: #e5e7eb;
  color: var(--black);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.visual-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
}


.author-visual, .synopsis-visual {
  overflow: hidden;
  position: relative;
}

.author-visual img, .synopsis-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.visual-label {
  position: absolute;
  left: 25px;
  bottom: 22px;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 700;
}

.content {
  max-width: 580px;
}

h2 {
  font-size: clamp(50px, 6vw, 56px);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 32px;
}

.content p {
  color: #000;
  margin-bottom: 20px;
}

.section-dark .content p {
  color: #b4b4b4;
}

.content .lead {
  font-size: 20px;
  line-height: 1.5;
  color: #24231f;
}

.section-dark .content .lead {
  color: #e0e0e0;
}

blockquote {
  border-left: 2px solid #0396a6;
  padding: 8px 0 8px 22px;
  margin: 34px 0;
  font-family: "Montserrat", Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
  color: #26241f;
}

.section-dark blockquote {
  color: #e5e5e5;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.text-link span {
  transition: transform .2s;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* CHARACTERS */

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-description {
  max-width: 420px;
  color: #6b6964;
  margin-bottom: 7px;
}

.section-dark .section-description {
  color: #9d9d9d;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.character-card {
  background: #efefef;
  overflow: hidden;
}

.character-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.character-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.character-image::after,
.track-art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.character-image span {
  position: relative;
  z-index: 2;
  font-size: 10px;
  letter-spacing: .15em;
  opacity: .75;
}

.character-info {
  padding: 22px;
}

.character-info h3 {
  font-family: "Montserrat", Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.character-info .role {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin: 7px 0 12px;
}

.character-info p:last-child {
  color: #000;
  font-size: 14px;
}

/* MUSIC */

.music-section {
  background: #0d0f11;
}

.track-list {
  border-top: 1px solid var(--line);
}

.track {
  display: grid;
  grid-template-columns: 50px 80px 1fr 50px;
  gap: 20px;
  align-items: center;
  min-height: 105px;
  border-bottom: 1px solid var(--line);
  transition: .25s;
}

.track:hover {
  padding-left: 10px;
  background: rgba(255,255,255,.025);
}

.track-number {
  color: #6f6f6f;
  font-size: 11px;
  letter-spacing: .1em;
}

.track-art {
  width: 80px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}


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

.art-01 { background: linear-gradient(135deg, #343b3d, #9a8061); }
.art-02 { background: linear-gradient(135deg, #151a22, #576d81); }
.art-03 { background: linear-gradient(135deg, #30221e, #8a5d45); }
.art-04 { background: linear-gradient(135deg, #25262a, #726e62); }
.art-05 { background: linear-gradient(135deg, #121314, #504e4a); }

.track-meta h3 {
  font-family: "Montserrat", Georgia, serif;
  font-size: 21px;
}

.track-meta p {
  color: #7d7d7d;
  font-size: 12px;
}

.play-button {
  width: 42px;
  height: 42px;
  border: 1px solid #555;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: .2s;
}

.play-button:hover {
  background: white;
  color: black;
}

/* BUY */

.buy-section {
  background: #e5e7eb;
  color: var(--black);
  padding: 60px 0;
}

.buy-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 60px;
}

.book-mockup {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.book-cover {
  width: min(360px, 80%);
  aspect-ratio: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotateY(-8deg) rotateZ(-1deg);
}

.book-cover small,
.book-cover em {
  font-size: 9px;
  letter-spacing: .2em;
  font-style: normal;
}

.book-cover strong {
  font-family: "Montserrat", Georgia, serif;
  font-size: 48px;
  line-height: .85;
}

.buy-content {
  max-width: 560px;
}

.buy-content h2 {
  margin-bottom: 25px;
}

.buy-content p {
  color: #5e5a53;
  margin-bottom: 20px;
}

.button-dark {
  margin-top: 15px;
  background: var(--black);
  color: white;
}

.button-dark:hover {
  transform: translateY(-2px);
  background: #252629;
}

/* SOCIAL */
.social-section { background:#0a0c0e; padding:95px 0; border-top:1px solid var(--line); }
.social-inner { text-align:center; }
.social-heading h2 { margin-bottom:45px; }
.social-links { display:flex; justify-content:center; align-items:center; flex-wrap:nowrap; gap:clamp(18px,3vw,45px); }
.social-link { display:inline-flex; flex-direction:column; align-items:center; gap:10px; min-width:72px; color:#a7a7a7; transition:color .25s,transform .25s; }
.social-link:hover { color:#fff; transform:translateY(-4px); }
.social-link svg { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.social-link svg .fill { fill:currentColor; stroke:none; }
.social-link span { font-size:9px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; }


/* FOOTER */

.site-footer {
  background: #060708;
  color: white;
  padding: 45px 0 25px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: #666;
  font-size: 10px;
  letter-spacing: .05em;
}

/* TABLET */

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 17px;
  }

  .site-header {
    padding: 0 25px;
  }

  .container {
    width: min(calc(100% - 50px), var(--max));
  }

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

  .visual-card {
    min-height: 480px;
  }
}

/* MOBILE */

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    height: 70px;
    padding: 0 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: .2s;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: 70px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 18px 25px;
    background: rgba(8,9,11,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
  }

  .mobile-menu .mobile-buy {
    margin-top: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.4);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(55px, 19vw, 60px);
  }

  .hero h1 span {
    margin-left: .25em;
  }

  .hero-tagline {
    margin-top: 28px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
  }

  .button {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }

  .section,
  .buy-section {
    padding: 85px 0;
  }

  .split,
  .buy-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .split .visual-card {
    order: -1;
  }

  .visual-card {
    min-height: 420px;
  }

  h2 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .content .lead {
    font-size: 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 35px;
  }

  .section-description {
    margin-top: 20px;
  }

  .character-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .character-info {
    padding: 15px;
  }

  .character-info h3 {
    font-size: 20px;
  }

  .character-info p:last-child {
    font-size: 12px;
  }

  .track {
    grid-template-columns: 32px 58px 1fr 42px;
    gap: 12px;
    min-height: 85px;
  }

  .track-art {
    width: 58px;
  }

  .track-meta h3 {
    font-size: 18px;
  }

  .track-meta p {
    font-size: 10px;
  }

  .play-button {
    width: 36px;
    height: 36px;
  }

  .book-cover {
    width: 260px;
  }

  .book-cover strong {
    font-size: 38px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
