:root {
  --ink: #111914;
  --paper: #fff8ea;
  --leaf: #162f26;
  --moss: #315e47;
  --trail: #bd7446;
  --sun: #e0a85d;
  --line: rgba(255, 248, 234, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--leaf);
  color: var(--paper);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  letter-spacing: 0;
}

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

.trail-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px;
}

.trail-image,
.trail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trail-image {
  object-fit: cover;
}

.trail-shade {
  background:
    linear-gradient(120deg, rgba(17, 25, 20, 0.9), rgba(22, 47, 38, 0.72) 44%, rgba(17, 25, 20, 0.2)),
    radial-gradient(circle at 78% 26%, rgba(224, 168, 93, 0.3), transparent 22rem);
}

.card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 25, 20, 0.56);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 500;
  line-height: 0.92;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 248, 234, 0.86);
  font-size: clamp(19px, 2.4vw, 29px);
  line-height: 1.42;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.facts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 248, 234, 0.24);
  border-radius: 999px;
  color: rgba(255, 248, 234, 0.78);
  background: rgba(255, 248, 234, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--trail);
  color: var(--paper);
  font-weight: 900;
}

.button:hover {
  background: #cb8050;
}

.note {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 248, 234, 0.62);
  font-size: 14px;
  line-height: 1.48;
}

@media (max-width: 560px) {
  .trail-card {
    padding: 14px;
  }

  .card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 86px);
  }
}
