@font-face {
  font-family: "Inter";
  src: url("assets/inter-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --maroon: #701511;
  --charcoal: #242424;
  --cream: #f5efe8;
  --taupe: #9c7c71;
  --rose: #d1a79b;
  --terracotta: #c4612a;
  --mustard: #d4a93a;
}

* { box-sizing: border-box; }

html { background: var(--cream); }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

a { color: inherit; }

a:focus-visible {
  outline: 3px solid var(--maroon);
  outline-offset: 4px;
}

.page-shell {
  width: min(100% - 3rem, 72rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: 2rem 0 1.5rem;
}

.site-header { padding-bottom: clamp(3rem, 8vw, 6rem); }

.brand { display: inline-block; }

.brand img {
  display: block;
  width: clamp(4.5rem, 10vw, 6.25rem);
  height: auto;
}

.hero {
  position: relative;
  max-width: 51rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--maroon);
  color: var(--cream);
}

.steam {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 6vw, 4rem);
  display: flex;
  gap: 0.65rem;
  height: 4rem;
  pointer-events: none;
}

.steam span {
  display: block;
  width: 0.18rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--mustard);
  opacity: 0;
  animation: rise 4s ease-in-out infinite;
}

.steam span:nth-child(2) { animation-delay: 1.1s; }

.steam span:nth-child(3) { animation-delay: 2.2s; }

.hero > :not(.steam) { animation: reveal 500ms ease-out both; }

.hero > :not(.steam):nth-child(3) { animation-delay: 80ms; }

.hero > :not(.steam):nth-child(4) { animation-delay: 140ms; }

.hero > :not(.steam):nth-child(5) { animation-delay: 200ms; }

.hero > :not(.steam):nth-child(6) { animation-delay: 260ms; }

@keyframes rise {
  0%, 100% { transform: translateY(0); opacity: 0; }
  25%, 75% { opacity: 0.38; }
  50% { transform: translateY(-1.25rem); opacity: 0.52; }
}

@keyframes reveal {
  from { transform: translateY(0.5rem); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(4rem, 15vw, 8rem);
  height: clamp(4rem, 15vw, 8rem);
  content: "";
  background: var(--terracotta);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mustard);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.lede { max-width: 40rem; margin-bottom: 1rem; font-size: clamp(1rem, 2vw, 1.25rem); }

.mission { margin-bottom: 2rem; color: var(--rose); font-weight: 600; }

.primary-action {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.9rem 1.25rem;
  color: var(--charcoal);
  background: var(--mustard);
  font-weight: 800;
  text-decoration: none;
}

.primary-action:hover { background: var(--cream); }

.primary-action:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--maroon);
}

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 51rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--cream);
}

.link-group { border-top: 3px solid var(--terracotta); padding-top: 0.85rem; }

h2 { margin-bottom: 0.75rem; color: var(--maroon); font-size: 1rem; font-weight: 800; }

ul { display: grid; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }

.link-group a { font-weight: 600; text-decoration-thickness: 0.12em; text-underline-offset: 0.18em; }

.link-group a:hover { color: var(--maroon); text-decoration-thickness: 0.18em; }

footer { padding-top: 2.5rem; color: var(--charcoal); font-size: 0.875rem; }

footer p { margin-bottom: 0; }

@media (max-width: 640px) {
  .page-shell { width: min(100% - 2rem, 72rem); padding-top: 1rem; }
  .site-header { padding-bottom: 2rem; }
  .hero, .destinations { padding: 1.5rem; }
  .destinations { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
  }
}
