@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #0c1320;
  --ink-2: #111a2a;
  --slate: #1a2333;
  --mist: #e6e2d6;
  --muted: #aeb6c4;
  --parchment: #f4efe3;
  --putty: #b9aa8d;
  --putty-light: #d3c6ad;
  --green: #557765;
  --green-dark: #2f4d43;
  --ember: #d98a5c;
  --line: rgba(244, 239, 227, 0.16);
  --shadow: 0 30px 80px -22px rgba(7, 12, 20, 0.56);
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--putty-light), var(--putty) 32rem, #f0eadc 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.concept-bar {
  background: var(--green-dark);
  color: var(--parchment);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.8rem max(1.25rem, calc((100vw - 1200px) / 2));
  background: rgba(244, 239, 227, 0.94);
  border-bottom: 1px solid rgba(12, 19, 32, 0.12);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(242px, 56vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink);
}

.site-nav a {
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
}

.site-nav a:hover {
  background: rgba(12, 19, 32, 0.08);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--parchment);
  margin-left: 0.25rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(12, 19, 32, 0.08);
}

.menu-toggle svg {
  width: 24px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 5rem 1.25rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 19, 32, 0.82), rgba(12, 19, 32, 0.44) 42%, rgba(12, 19, 32, 0.78)),
    linear-gradient(0deg, rgba(12, 19, 32, 0.64), transparent 55%);
}

.hero-shell {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.hero-card {
  width: min(650px, 100%);
  padding: 3rem;
  border-radius: 28px;
  background: rgba(12, 19, 32, 0.9);
  color: var(--parchment);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 239, 227, 0.13);
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ember);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 800;
}

.hero-copy {
  width: min(100%, 58ch);
  margin: 1.25rem auto 0;
  color: var(--mist);
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-actions,
.story-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--parchment);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(244, 239, 227, 0.32);
  color: var(--parchment);
}

.button.secondary.dark {
  border-color: rgba(12, 19, 32, 0.28);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--mist);
  font-size: 0.82rem;
}

.hero-points span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(244, 239, 227, 0.18);
  border-radius: 999px;
  background: rgba(244, 239, 227, 0.06);
}

.route-section,
.seasons {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.75rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.now-panel h2,
.story-copy h2,
.contact-strip h2,
.owner-cta h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 800;
}

.section-heading p:last-child,
.now-panel p,
.story-copy p,
.owner-cta p {
  margin: 1rem 0 0;
  color: rgba(12, 19, 32, 0.72);
  font-size: 1.03rem;
  line-height: 1.65;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.route-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 20px;
  padding: 1.25rem;
  color: var(--parchment);
  background: var(--ink);
  box-shadow: 0 18px 40px -25px rgba(12, 19, 32, 0.7);
}

.route-card.large {
  grid-row: span 2;
  min-height: 596px;
}

.route-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(12, 19, 32, 0.9) 100%);
}

.route-card span,
.route-card strong {
  position: relative;
  z-index: 2;
}

.route-card span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: var(--parchment);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.route-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.route-card:hover img {
  transform: scale(1.04);
}

.now-panel {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  border-radius: 28px;
  padding: 3rem;
  background: var(--ink);
  color: var(--parchment);
  box-shadow: var(--shadow);
}

.now-panel p {
  color: var(--mist);
}

.action-list {
  display: grid;
  gap: 0.75rem;
}

.action-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  background: var(--slate);
  border: 1px solid var(--line);
  font-weight: 800;
}

.action-list svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ember);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-section {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 0 5.75rem;
}

.story-image {
  border-radius: 28px;
  overflow: hidden;
  background: var(--green);
  box-shadow: 0 20px 50px -30px rgba(12, 19, 32, 0.8);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.story-copy {
  border-radius: 28px;
  padding: 3rem;
  background: var(--parchment);
}

.story-links {
  justify-content: flex-start;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.season-grid article {
  overflow: hidden;
  border-radius: 20px;
  background: var(--ink);
  color: var(--parchment);
  box-shadow: 0 18px 40px -25px rgba(12, 19, 32, 0.7);
}

.season-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.season-grid div {
  min-height: 132px;
  padding: 1rem;
}

.season-grid span {
  color: var(--ember);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.season-grid p {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1.15;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.contact-strip {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto 5.75rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  border-radius: 28px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(12, 19, 32, 0.12);
}

.contact-strip address {
  display: grid;
  gap: 0.75rem;
  font-style: normal;
}

.contact-strip address a {
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: var(--parchment);
  font-weight: 800;
}

.owner-cta {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto 5.75rem;
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  background: var(--green-dark);
  color: var(--parchment);
  box-shadow: var(--shadow);
}

.owner-cta p {
  color: var(--mist);
}

.owner-cta .button {
  margin-top: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem max(1.25rem, calc((100vw - 1200px) / 2));
  color: var(--mist);
  background: var(--ink);
}

.site-footer img {
  width: 210px;
  filter: brightness(1.25);
}

.site-footer p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 0.85rem;
  font-weight: 800;
}

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

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 112px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 1rem;
    background: var(--ink);
    color: var(--parchment);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 1rem;
  }

  .site-nav .nav-cta {
    background: var(--parchment);
    color: var(--ink);
    margin-left: 0;
  }

  .hero {
    min-height: 660px;
    padding: 3.5rem 1.25rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section-heading h2,
  .now-panel h2,
  .story-copy h2,
  .contact-strip h2,
  .owner-cta h2 {
    font-size: 2.55rem;
  }

  .route-grid,
  .now-panel,
  .story-section,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .route-card.large {
    min-height: 340px;
  }

  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: min(210px, 58vw);
  }

  .hero-card,
  .now-panel,
  .story-copy,
  .owner-cta {
    padding: 1.35rem;
    border-radius: 22px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .section-heading h2,
  .now-panel h2,
  .story-copy h2,
  .contact-strip h2,
  .owner-cta h2 {
    font-size: 2.1rem;
  }

  .route-section,
  .seasons {
    width: min(100% - 1.25rem, 1200px);
    padding: 3.5rem 0;
  }

  .now-panel,
  .story-section,
  .contact-strip,
  .owner-cta {
    width: min(100% - 1.25rem, 1200px);
    margin-bottom: 3.5rem;
  }

  .route-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .route-card.large {
    min-height: 310px;
  }

  .contact-strip {
    padding: 1rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
