/* Oral Memoir Podcast — quiet, editorial, travel-warm.
   Palette: bone paper, deep ink, ocean teal, sun ochre. */
:root {
  --paper: #f4efe6;
  --paper-2: #ece5d8;
  --ink: #20211d;
  --ink-soft: #4d4e47;
  --muted: #8a8678;
  --teal: #2f6b6a;
  --ochre: #b6783c;
  --line: #ddd4c4;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 720px; }

.kicker, .eyebrow {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ochre); font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  /* ░░ replace the gradient with your photo: url('assets/hero.jpg') center/cover ░░ */
  background: linear-gradient(135deg, #1b3a3a 0%, #2f6b6a 45%, #b6783c 120%);
  color: #f7f2e9;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,22,18,0.92), rgba(20,22,18,0.55) 60%, rgba(20,22,18,0.65)); }
.hero-content { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 28px 9vh; width: 100%; }
.hero .eyebrow { color: #e9c79a; }
.hero h1 { font-size: clamp(48px, 9vw, 104px); margin: 14px 0 22px; }
.hero-sub { font-size: clamp(19px, 2.4vw, 24px); max-width: 620px; color: #f1ebe0; font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }
.hero-meta { margin-top: 22px; font-size: 14px; letter-spacing: 0.04em; color: #d8cfbf; }
.scroll-cue {
  display: inline-block; margin-top: 36px; padding: 11px 22px; border: 1px solid rgba(247,242,233,0.5);
  border-radius: 999px; font-size: 14px; text-decoration: none; letter-spacing: 0.05em;
  transition: background .2s, border-color .2s;
}
.scroll-cue:hover { background: rgba(247,242,233,0.12); border-color: #f7f2e9; }

/* ---------- SECTIONS ---------- */
.section { padding: 92px 0; border-top: 1px solid var(--line); }
.section h2 { font-size: clamp(30px, 4vw, 46px); margin: 10px 0 18px; }
.lede { font-size: 20px; color: var(--ink-soft); font-family: "Fraunces", serif; font-style: italic; }

.prose p { margin-bottom: 20px; color: var(--ink-soft); }
.prose em { color: var(--muted); }
.prose.small p { font-size: 16px; }

/* ---------- LISTEN ---------- */
.listen { background: var(--paper-2); }
.player {
  margin: 28px 0 14px; padding: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: 0 14px 40px -28px rgba(32,33,29,0.5);
}
.player audio { width: 100%; }
.runtime { font-size: 14px; color: var(--muted); }

/* ---------- JOURNEY ---------- */
.route { list-style: none; display: grid; gap: 0; margin: 26px 0 44px; }
.route li {
  display: flex; align-items: baseline; gap: 16px; padding: 18px 4px;
  border-bottom: 1px solid var(--line); font-family: "Fraunces", serif; font-size: 26px;
}
.route li span { color: var(--ochre); font-size: 15px; font-family: "Inter", sans-serif; letter-spacing: 0.1em; min-width: 30px; }
.route li small { margin-left: auto; font-family: "Inter", sans-serif; font-size: 14px; color: var(--muted); font-style: italic; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.gallery figure { margin: 0; }
.gallery .ph {
  aspect-ratio: 4/3; background: repeating-linear-gradient(45deg, #e6ddcd, #e6ddcd 12px, #ded4c2 12px, #ded4c2 24px);
  border: 1px solid var(--line); border-radius: 10px; display: grid; place-items: center;
  color: var(--muted); font-size: 14px; letter-spacing: 0.05em;
}
.gallery figcaption { margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ---------- BARRETO ---------- */
.barreto { background: var(--paper-2); }
.wordcount { margin-top: 14px; font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- FOOTER ---------- */
.footer { padding: 48px 28px; text-align: center; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); }
.footer .muted { color: var(--muted); margin-top: 4px; }

@media (max-width: 640px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .route li { font-size: 21px; flex-wrap: wrap; }
  .route li small { margin-left: 0; width: 100%; }
}
