:root {
  --bg: #e8e0d1;
  --paper: #f9f4ea;
  --ink: #28231d;
  --muted: #6f6558;
  --line: rgba(40, 35, 29, 0.12);
  --accent: #8a4d2b;
  --accent-soft: rgba(138, 77, 43, 0.1);
  --shadow: 0 18px 40px rgba(80, 59, 36, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(138, 77, 43, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(138, 77, 43, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #e8e0d1 0%, #dfd5c5 100%);
  background-size: 32px 32px, 32px 32px, auto;
  font-family: "Source Sans 3", system-ui, sans-serif;
}

img {
  display: block;
  width: 100%;
}

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

h1,
h2,
p {
  margin: 0;
}

.page {
  width: min(1020px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  padding: 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.eyebrow,
.stamp-label,
.entry-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.eyebrow,
.stamp-label,
.entry-label {
  margin-bottom: 12px;
}

h1,
h2,
.hero-side strong,
.stamp strong {
  font-family: "Prata", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.92;
  max-width: 9ch;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.lede,
.route-note,
.hero-side,
.stamp,
.entry-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.lede {
  max-width: 40rem;
  margin-top: 16px;
}

.hero-side {
  padding: 22px;
  border-radius: 24px;
  border: 2px dashed rgba(138, 77, 43, 0.24);
  background: linear-gradient(180deg, rgba(138, 77, 43, 0.06), rgba(255, 255, 255, 0.38));
  display: grid;
  align-content: start;
  gap: 8px;
}

.hero-side strong {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--ink);
}

.route {
  padding: 24px;
}

.route-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stamp {
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px dashed rgba(138, 77, 43, 0.28);
  background: var(--accent-soft);
}

.stamp span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(138, 77, 43, 0.16);
  color: var(--accent);
  font-weight: 700;
}

.stamp strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
}

.entry {
  overflow: hidden;
}

.entry img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.entry-copy {
  padding: 22px;
}

@media (max-width: 900px) {
  .hero,
  .route-head {
    grid-template-columns: 1fr;
  }

  .route-head {
    display: grid;
  }

  .stamp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 16px, 1020px);
    padding: 18px 0 30px;
  }

  .panel,
  .hero-side,
  .stamp {
    border-radius: 22px;
  }

  .hero,
  .route,
  .entry-copy {
    padding: 22px;
  }

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