:root {
  --ink: #07150f;
  --forest: #0d2818;
  --moss: #1b4332;
  --leaf: #2d6a4f;
  --mist: #d8e6dc;
  --fog: #eef5f0;
  --gold: #e9c46a;
  --cream: #f4faf6;
  --muted: rgba(244, 250, 246, 0.68);
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Figtree", "Avenir Next", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f3d98a;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(45, 106, 79, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(233, 196, 106, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(13, 40, 24, 0.9), transparent 60%),
    linear-gradient(165deg, #0a1c12 0%, #07150f 45%, #0d2818 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.wrap {
  width: min(920px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand-mark span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cream);
}

.hero {
  min-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 0 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 6.4rem);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 1.25rem;
  max-width: 18ch;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--muted);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: #f3d98a;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 250, 246, 0.28);
}

.btn-ghost:hover {
  border-color: rgba(244, 250, 246, 0.55);
  color: var(--cream);
}

.section {
  padding: 3.5rem 0 4.5rem;
  border-top: 1px solid rgba(216, 230, 220, 0.12);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}

.route-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.55rem 1.5rem;
}

.route-list {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.feature-list {
  grid-template-columns: 1fr;
}

.route-list li,
.feature-list li {
  color: var(--cream);
  font-size: 1rem;
  padding-left: 1rem;
  position: relative;
}

.route-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.page {
  padding: 2.5rem 0 5rem;
}

.page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.page .lede {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0 0 2rem;
}

.prose {
  max-width: 40rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose strong {
  color: var(--cream);
  font-weight: 600;
}

.footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(216, 230, 220, 0.12);
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--cream);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .hero {
    min-height: 78vh;
    padding-top: 3rem;
  }
}
