/* ── Retro — variables ────────────────────────────────────── */
:root {
  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --fg:     #2c1e0f;
  --fg-2:   #6b5344;
  --fg-3:   #b0926a;
  --bg:     #f5f0e8;
  --bg-2:   #ede5d8;
  --border: #d6c9b3;
  --accent: #c2410c;
  --max:    1080px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; }
body { margin: 0; font-family: var(--serif); background: var(--bg); color: var(--fg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ── Header ───────────────────────────────────────────────── */
.rt-header { background: var(--bg); }
.rt-header__top {
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.rt-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.rt-header__logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-align: center;
  white-space: nowrap;
}
.rt-header__logo img { height: 36px; margin: 0 auto; }
.rt-header__nav .nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; }
.rt-header__nav--left .nav { justify-content: flex-start; }
.rt-header__nav--right .nav { justify-content: flex-end; }
.rt-header__nav .nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 6px 10px;
  transition: color .15s;
}
.rt-header__nav .nav a:hover { color: var(--accent); }

/* Ornamental rule below header */
.rt-header__rule {
  text-align: center;
  padding: 6px 0;
  border-bottom: 2px solid var(--fg);
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: .3em;
}

/* ── Shared atoms ─────────────────────────────────────────── */
.rt-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.rt-ornament { color: var(--fg-3); font-size: 10px; }

/* ── Section heading with ornamental lines ─────────────────── */
.rt-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 36px 0 24px;
}
.rt-section-head__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rt-section-head__label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
}

/* ── Main ─────────────────────────────────────────────────── */
.rt-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 80px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.rt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--border);
  transition: opacity .15s;
}
.rt-hero:hover { opacity: .85; }
@media (max-width: 680px) { .rt-hero { grid-template-columns: 1fr; } }

.rt-hero__body { display: flex; flex-direction: column; gap: 12px; }
.rt-hero__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0;
}
.rt-hero__excerpt {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rt-hero__meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rt-hero__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.rt-hero__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.rt-hero:hover .rt-hero__img img { transform: scale(1.03); }

/* ── Grid ─────────────────────────────────────────────────── */
.rt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}
@media (max-width: 580px) { .rt-grid { grid-template-columns: 1fr; } }

.rt-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity .15s;
}
.rt-card:hover { opacity: .8; }
.rt-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-2);
}
.rt-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.rt-card:hover .rt-card__img img { transform: scale(1.04); }
.rt-card__body { display: flex; flex-direction: column; gap: 6px; }
.rt-card__meta {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rt-card__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  margin: 0;
}
.rt-card__excerpt {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pagination ───────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 12px; padding: 48px 0 0; }
.pagination .btn {
  font-family: var(--sans);
  padding: 8px 20px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-2);
  background: var(--bg);
}
.pagination .btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.rt-footer {
  border-top: 2px solid var(--fg);
  background: var(--bg-2);
}
.rt-footer__ornament {
  text-align: center;
  padding: 12px 0 0;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--fg-3);
}
.rt-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 32px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg-3);
}
.rt-footer__inner a { color: var(--fg-3); }
.rt-footer__inner a:hover { color: var(--accent); }
