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

:root {
  --bg:     #0c0c0c;
  --text:   #ddd8cc;
  --muted:  #6a6660;
  --blue:   #7aacca;
  --amber:  #c8924a;
  --border: #1e1e1e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── Nav ── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ── Hero ── */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100svh - 3rem);
  min-height: 480px;
}

.hero-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  color: white;
  text-align: center;
  white-space: nowrap;
  line-height: 0.95;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.mobile-only { display: none; }
.callout-short { display: none; }

.hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
  pointer-events: none;
}

.hero-half {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.5rem;
}

.hero-half > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-left  > img { object-position: 42% top; }
.hero-right > img { object-position: 60% 30%; }

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-left .hero-overlay {
  background: linear-gradient(to top,
    rgba(0, 5, 16, 0.94) 0%,
    rgba(0, 5, 16, 0.42) 48%,
    rgba(0, 5, 16, 0.08) 100%
  );
}

.hero-right .hero-overlay {
  background: linear-gradient(to top,
    rgba(16, 7, 0, 0.94) 0%,
    rgba(16, 7, 0, 0.42) 48%,
    rgba(16, 7, 0, 0.08) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-line {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero-left  .hero-line { color: #7aaba8; }
.hero-right .hero-line { color: #e0b878; }

/* ── Buttons ── */

.button {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1px solid currentColor;
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.hero-left  .button { color: #a8c8de; }
.hero-right .button { color: #e0b878; }

.hero-left  .button:hover { background: #a8c8de; color: #050c14; }
.hero-right .button:hover { background: #e0b878; color: #100800; }

.button.primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #0c0c0c;
}
.button.primary:hover {
  background: transparent;
  color: var(--amber);
}

.button.gray {
  color: #999;
  border-color: #444;
}
.button.gray:hover {
  background: #444;
  color: var(--text);
}

.button.bevel {
  background: #d4d0c8;
  color: #000;
  border: 2px outset #e0dcd4;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: none;
}
.button.bevel:hover { background: #dedad2; }
.button.bevel:active { border-style: inset; }

/* ── Eyebrow ── */

.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ── Dispatches ── */

.dispatches {
  background: #060e0c;
  border-top: 1px solid #0e1f1c;
  border-bottom: 1px solid #0e1f1c;
  padding: 5rem 0;
}

.dispatches-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.dispatches-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid #1a1a28;
}

.dispatches-copy h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #7aaba8;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dispatches-copy p {
  color: #9a9890;
  margin-bottom: 2rem;
  max-width: 480px;
}

.dispatches-copy .genre-tag {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.dispatch-list {
  list-style: none;
}

.dispatches-list-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 1000px) {
  .dispatches-list-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.dispatch-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.dispatch-list a:hover span { text-decoration: underline; }

.dispatch-list img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #1a1a28;
}

.dispatch-list span {
  font-size: 1.1rem;
  color: #9a9890;
  line-height: 1.4;
}

.dispatch-list strong {
  color: var(--text);
  font-style: italic;
}

.embed-wrap {
  border: 1px solid #1a1a28;
}

.substack-embed {
  width: 100%;
  height: 150px;
  border: none;
  background: transparent;
  display: block;
}

/* ── Content Pages ── */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.band {
  background: #06080e;
  border-bottom: 1px solid #0e1220;
  padding-top: 3rem;
}

.band.alt {
  background: #080806;
  border-top: 1px solid #20180e;
}

.offer {
  background: #100806;
  border-bottom: 1px solid #2a160f;
  padding-top: 3rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 4rem;
  align-items: center;
}

.section h1,
.section h2,
.prose h1,
.prose h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section h1,
.prose h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--amber);
}

.section h2,
.prose h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #7aaba8;
}

.section p,
.prose p,
.prose li {
  color: #c0bcb4;
  margin-bottom: 1rem;
}

.lede {
  color: #e0b878;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-style: italic;
  line-height: 1.35;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button.secondary {
  color: #9a9890;
  border-color: #3a332a;
}

.button.secondary:hover {
  background: #3a332a;
  color: var(--text);
}

.book-cover {
  width: min(100%, 360px);
  margin-left: auto;
  border: 1px solid #6a4e30;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  border: 1px solid #1e1e1e;
  background: #0a0a0a;
  padding: 1.25rem;
}

.card h3 {
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.card p {
  color: #9a9890;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.recommendation-section {
  border-top: 1px solid #0e1220;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
}

.tag-grid span {
  border: 1px solid #263831;
  color: #8fbebb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.5rem 0.75rem;
}

.comparison-grid {
  margin-top: 2rem;
}

.related-links {
  margin-top: 2rem;
}

.related-links a,
.prose a,
.section a:not(.button):not(.store-link) {
  color: #7aaba8;
}

.store-list {
  display: grid;
  gap: 1rem;
}

.store-link {
  border: 1px solid #2a1e10;
  color: var(--text);
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
}

.store-link:hover {
  border-color: var(--amber);
}

.store-link strong,
.store-link span {
  display: block;
}

.store-link span {
  color: #9a9890;
  font-size: 0.95rem;
}

.prose {
  max-width: 760px;
}

.prose ul {
  margin: 1rem 0 2rem 1.25rem;
}

/* ── Book ── */

.book-section {
  background: #06080e;
  border-top: 1px solid #0e1220;
  padding: 5rem 0;
}

.book-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.book-banner-wrap {
  display: none;
  aspect-ratio: 2 / 1;
  margin-bottom: 1.5rem;
  background-image: url('/assets/images/monsoon-street.webp');
  background-size: 150% auto;
  background-position: 0% 60%;
}

.book-hook {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--amber);
  margin-bottom: 3rem;
  line-height: 1.3;
}

.book-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.book-text p {
  color: #c0bcb4;
  margin-bottom: 1rem;
}

.book-text .book-hook {
  color: var(--amber);
}

.book-text .genre-tag {
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.book-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 0;
  padding-top: 1rem;
}

.book-cover-small {
  width: 160px;
  flex-shrink: 0;
  border: 1px solid #6a4e30;
}

.book-buy-column.book-buy-row {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0;
}

.book-buy-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.deal-callout {
  margin-top: 1rem;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  border: 1px solid var(--amber);
  display: block;
  padding: 0.35rem 0.9rem;
}

.dispatch-callout {
  margin-bottom: 1rem;
}

.book-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.book-images img {
  width: 100%;
  border: 1px solid #2a1e10;
}

.section-articles {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

.section-articles .eyebrow {
  margin-bottom: 0.5rem;
}

.section-articles .dispatches-list-row {
  margin-top: 0;
  padding: 0;
}

.section-footer-actions {
  margin-top: 2rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 480px;
}

.section-footer-actions .embed-wrap {
  align-self: stretch;
}

/* ── Blink ── */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.blink { animation: blink 1s step-end infinite; }

/* ── About ── */

.about-section {
  background: #060e0c;
  border-top: 1px solid #0e1f1c;
  padding: 5rem 0;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 42% top;
  transform: scaleX(-1);
  border: 1px solid #1a1a28;
}

@media (max-width: 700px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-img {
    aspect-ratio: 2 / 1;
    object-position: 58% 20%;
  }
}

.about-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #7aaba8;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-inner p {
  color: #9a9890;
  margin-bottom: 1rem;
}

.about-text .dispatch-callout {
  margin-top: 1.65rem;
}

.about-inner strong {
  color: var(--muted);
  font-weight: normal;
}

.about-inner a {
  color: #7aaba8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0;
  max-width: 560px;
}

.social-links a {
  border: 1px solid #1c3a36;
  color: #7aaba8;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

.social-links a:hover {
  background: #7aaba8;
  color: #06100e;
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.social-icon path,
.social-icon rect,
.social-icon circle {
  vector-effect: non-scaling-stroke;
}

/* ── Footer ── */

.footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: Impact, 'Arial Black', sans-serif;
  letter-spacing: 0.09em;
}

body {
  padding-bottom: 3rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.footer-links a + a::before {
  content: '|';
  color: #333;
  padding-right: 0.7rem;
}

/* ── Mobile ── */

@media (max-width: 700px) {
  .site-header { padding: 0.85rem 1.25rem; }

  .nav-links { gap: 1.25rem; }

  .nav-links .deal { display: none; }

  .mobile-only { display: block; }
  .callout-short { display: inline; }
  .callout-full { display: none; }

  .hero-name { white-space: normal; font-size: clamp(4rem, 22vw, 6rem); }

  .hero-half { padding: 1.5rem 1rem; }

  .hero-line { font-size: 1.3rem; margin-bottom: 1rem; }

  .dispatches-inner,
  .book-split,
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

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

  .book-cover {
    margin: 0;
  }

  .dispatches-img { aspect-ratio: 2 / 1; }

  .portrait { display: none; }

  .book-banner-wrap { display: block; }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-tagline { display: none; }

  .social-links {
    gap: 0.55rem;
    max-width: 330px;
  }

  .social-links a {
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .social-links a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .social-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
