/* The Heartstringers — vintage country record-sleeve styling.
   Warm amber / rust / cream palette, aged paper, hand-set serif type. */

:root {
  --paper:      #f1e4c9;
  --paper-2:    #ead9b8;
  --ink:        #2f2013;
  --ink-soft:   #4d3a26;
  --rust:       #9c3d23;
  --rust-deep:  #7c2f1a;
  --amber:      #c8893f;
  --sage:       #6b7355;
  --rule:       #b89b6a;
  --shadow:     rgba(47, 32, 19, 0.28);
  --serif-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif-body: 'Lora', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif-body);
  color: var(--ink);
  background: #d9c39a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Aged paper field with subtle grain + vignette */
.paper {
  max-width: 1180px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,247,224,0.55), rgba(0,0,0,0) 60%),
    radial-gradient(ellipse at 50% 120%, rgba(124,47,26,0.10), rgba(0,0,0,0) 55%),
    var(--paper);
  background-blend-mode: normal;
  box-shadow: 0 0 60px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

/* faint paper-fiber texture */
.paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, rgba(124,47,26,0.018) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(90deg, rgba(47,32,19,0.015) 0 3px, transparent 3px 6px);
}

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 4rem 3rem;
}

.hero-sleeve {
  line-height: 0;
  transform: rotate(-1.5deg);
}
.hero-sleeve img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 14px 40px var(--shadow), 0 2px 6px rgba(0,0,0,0.2);
}

.hero-words { padding-right: 1rem; }

.eyebrow {
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rust);
  margin-bottom: 0.6rem;
}

.hero-words h1 {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--rust-deep);
  letter-spacing: -0.01em;
}

.tagline {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--ink);
  margin: 0.5rem 0 1.4rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.6rem;
}

.release-flag {
  display: inline-block;
  font-family: var(--serif-body);
  font-style: italic;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--paper);
  background: var(--rust);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  box-shadow: 0 3px 10px var(--shadow);
}

/* ---- Intro ---- */
.intro {
  max-width: 62ch;
  margin: 1rem auto 2rem;
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}
.rule-mark {
  color: var(--amber);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.intro p {
  font-size: 1.16rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.intro em { color: var(--rust-deep); font-style: italic; }

/* ---- Teasers ---- */
.teasers {
  padding: 2.5rem 4rem 3.5rem;
  border-top: 1px solid var(--rule);
}
.section-title {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--rust-deep);
  text-align: center;
}
.section-sub {
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0.5rem auto 2.5rem;
  max-width: 46ch;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.teaser {
  background: linear-gradient(180deg, rgba(255,250,238,0.7), rgba(234,217,184,0.5));
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 4px 14px rgba(47,32,19,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(47,32,19,0.18);
}
.teaser h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--rust-deep);
  line-height: 1.1;
}
.teaser-kicker {
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  margin: 0.2rem 0 0.8rem;
}
.teaser p:last-child {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ---- Release ---- */
.release {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 4rem 4rem;
  border-top: 1px solid var(--rule);
}
.release-art { line-height: 0; transform: rotate(1.2deg); }
.release-art img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 12px 34px var(--shadow);
}
.release-words h2 {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--rust-deep);
  margin-bottom: 1rem;
}
.release-words p { font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; }
.signoff {
  font-style: italic;
  color: var(--rust-deep);
}
.byline {
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 1.6rem;
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 3rem 2rem 3.5rem;
  background: var(--ink);
  color: var(--paper);
}
.footer-name {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--paper);
}
.footer-tag {
  font-style: italic;
  color: var(--amber);
  margin: 0.2rem 0 1.4rem;
}
.footer-fine {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(241,228,201,0.6);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
  }
  .hero-sleeve { transform: none; max-width: 420px; margin: 0 auto; order: -1; }
  .hero-words { padding-right: 0; }
  .lede { margin-left: auto; margin-right: auto; }
  .teasers, .release { padding-left: 1.5rem; padding-right: 1.5rem; }
  .teaser-grid { grid-template-columns: 1fr; }
  .release {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .release-art { transform: none; max-width: 380px; margin: 0 auto; }
}
