:root {
  --bg: #f6efe1;
  --paper: rgba(255, 250, 240, 0.88);
  --ink: #1f2933;
  --muted: #5c6770;
  --amber: #c77f1f;
  --amber-dark: #8f5711;
  --hop: #355d3a;
  --hop-soft: #d9e5c2;
  --berry: #7f2f2f;
  --line: rgba(53, 93, 58, 0.18);
  --shadow: 0 24px 60px rgba(68, 42, 11, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 127, 31, 0.34), transparent 26%),
    radial-gradient(circle at top right, rgba(53, 93, 58, 0.24), transparent 28%),
    linear-gradient(160deg, #f2e0bc 0%, #f8f4ea 45%, #efe1cf 100%);
  padding: 28px;
}

.flyer {
  max-width: 1180px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr;
  gap: 24px;
  padding: 48px;
  background:
    linear-gradient(125deg, rgba(53, 93, 58, 0.97), rgba(34, 55, 38, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  color: #fdf9f0;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 202, 104, 0.35), transparent 68%);
}

.eyebrow,
.card-label,
.footer-label,
.badge-kicker,
.fact-title,
.option-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.74rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f7d391;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.95;
  max-width: 11ch;
}

.subtitle {
  margin: 18px 0 0;
  max-width: 60ch;
  line-height: 1.65;
  color: rgba(253, 249, 240, 0.88);
  font-size: 1.04rem;
}

.hero-badge {
  align-self: start;
  justify-self: end;
  display: grid;
  gap: 6px;
  padding: 24px;
  min-width: 250px;
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-badge strong {
  font-size: 2rem;
  line-height: 1;
  color: #ffd98f;
}

.hero-badge span:last-child,
.hero-badge span:nth-last-child(2) {
  color: rgba(253, 249, 240, 0.88);
}

.grid {
  display: grid;
  gap: 22px;
  padding: 24px 32px 0;
}

.grid-intro {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-main {
  grid-template-columns: 1.2fr 0.8fr;
  padding-bottom: 26px;
}

.stack {
  display: grid;
  gap: 22px;
}

.card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(86, 73, 37, 0.08);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 14px 30px rgba(114, 88, 42, 0.08);
}

.spotlight {
  background:
    linear-gradient(140deg, rgba(247, 223, 170, 0.82), rgba(255, 249, 235, 0.82)),
    rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.card-label {
  margin: 0;
  color: var(--amber-dark);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fact-grid div,
.detail-list div {
  display: grid;
  gap: 6px;
}

.fact-title {
  color: var(--hop);
}

.fact-copy,
.detail-list dd,
.feature-list,
.timeline-item p,
.return-option p,
.route-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li + li {
  margin-top: 10px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--amber), rgba(199, 127, 31, 0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}

.timeline-time {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7df, #f4e4bb);
  border: 1px solid rgba(199, 127, 31, 0.2);
  color: var(--amber-dark);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(199, 127, 31, 0.15);
}

.timeline-item h3 {
  margin: 4px 0 6px;
  font-size: 1.08rem;
}

.timeline-item p,
.return-option p,
.route-card p {
  margin: 0;
}

.detail-list {
  margin: 0 0 18px;
}

.detail-list dt {
  font-weight: 700;
  color: var(--hop);
}

.detail-list dd {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), #aa6816);
  color: #fffaf2;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(170, 104, 22, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: linear-gradient(180deg, var(--hop), #27482c);
  box-shadow: 0 16px 28px rgba(39, 72, 44, 0.22);
}

.return-options {
  display: grid;
  gap: 14px;
}

.return-option {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(217, 229, 194, 0.26), rgba(255, 255, 255, 0.76));
}

.option-title {
  display: block;
  margin-bottom: 8px;
  color: var(--berry);
}

.return-option a {
  display: inline-block;
  margin-top: 10px;
  color: var(--hop);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.route-card {
  background:
    radial-gradient(circle at top right, rgba(127, 47, 47, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.7);
}

.footer-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 32px 34px;
  background: linear-gradient(180deg, rgba(244, 230, 208, 0.32), rgba(229, 214, 188, 0.56));
  border-top: 1px solid rgba(86, 73, 37, 0.08);
}

.footer-strip div {
  display: grid;
  gap: 8px;
}

.footer-strip strong {
  font-size: 1.02rem;
}

@media (max-width: 960px) {
  body {
    padding: 16px;
  }

  .hero,
  .grid-intro,
  .grid-main,
  .footer-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 30px;
  }

  .hero-badge {
    justify-self: stretch;
  }

  .grid {
    padding: 18px 18px 0;
  }

  .footer-strip {
    padding: 20px 18px 28px;
  }
}

@media (max-width: 640px) {
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .timeline-time {
    justify-self: start;
    min-width: 88px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  body {
    padding: 0;
    background: #fff;
  }

  .flyer {
    max-width: none;
    box-shadow: none;
    border: 0;
  }

  .button {
    color: #fff !important;
  }
}
