:root {
  --paper: #f6efe0;
  --card: #fffcf4;
  --line: #e3d8c2;
  --ink: #2e2418;
  --ink-soft: #7a6a54;
  --brick: #c6402e;
  --brick-deep: #96291b;
  --teal: #2a7f6f;
  --mustard: #e3a52f;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, -apple-system, "SF Pro Rounded", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

.wrap {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
}

header.site img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid var(--ink);
}

header.site .name {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--brick);
}

.hero {
  text-align: center;
  padding: 46px 0 34px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 17ch;
  margin: 0 auto;
}

.hero p.sub {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: 18px;
  color: var(--ink-soft);
}

.badge-soon {
  display: inline-block;
  margin-top: 26px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 4px 0 #000;
}

.badge-soon small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.7;
}

.stamp-rule {
  border: none;
  border-top: 2px dashed var(--line);
  margin: 40px 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.feature .emoji {
  font-size: 26px;
}

.feature h3 {
  margin: 8px 0 4px;
  font-size: 18px;
}

.feature p {
  font-size: 14px;
  color: var(--ink-soft);
}

section h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

section p.lead {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.tours {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.tour {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.tour img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.tour .meta {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tour .meta b {
  font-size: 15px;
}

.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill.free {
  background: var(--teal);
  color: #fff;
}

.pill.price {
  background: var(--line);
  color: var(--ink);
}

.pill.soon {
  background: transparent;
  border: 1px dashed var(--ink-soft);
  color: var(--ink-soft);
}

.passport-band {
  background: linear-gradient(180deg, #1a2332, #10161f);
  color: #f2ead8;
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
}

.passport-band h2 {
  color: var(--mustard);
}

.passport-band p {
  max-width: 60ch;
  margin: 10px auto 0;
  color: #b9c3d4;
}

.passport-band .mrz {
  margin-top: 22px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #8fa1b8;
  overflow-wrap: anywhere;
}

footer.site {
  padding: 42px 0 56px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}

footer.site a {
  color: var(--brick);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 0 60px;
}

.prose h1 {
  font-size: 38px;
  margin-bottom: 8px;
}

.prose h2 {
  font-size: 22px;
  margin: 26px 0 8px;
}

.prose p,
.prose li {
  color: #4d4234;
  font-size: 16px;
}

.prose ul {
  padding-left: 22px;
}

.prose .date {
  color: var(--ink-soft);
  font-size: 14px;
}
