:root {
  color-scheme: light;
  --ink: #18231e;
  --muted: #68756f;
  --soft: #f6f1e8;
  --paper: #fffdf8;
  --reed: #516f45;
  --water: #245f64;
  --clay: #ad7b4e;
  --sand: #dfd2b8;
  --line: rgba(24, 35, 30, 0.14);
  --white: #fff;
  --shadow: 0 22px 70px rgba(24, 35, 30, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a {
  padding: 7px 0;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: min(850px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero picture,
.hero picture::after {
  position: absolute;
  inset: 0;
}

.hero picture {
  z-index: -2;
}

.hero picture::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 20, 16, 0.78), rgba(12, 20, 16, 0.36) 54%, rgba(12, 20, 16, 0.08)),
    linear-gradient(0deg, rgba(12, 20, 16, 0.76), transparent 58%);
}

.hero img {
  height: 100%;
  object-fit: cover;
}

.hero-panel {
  width: min(880px, calc(100% - 36px));
  margin: 0 0 clamp(92px, 11vw, 150px) clamp(18px, 6vw, 82px);
}

.page-hero {
  min-height: 560px;
}

.page-hero .hero-panel {
  margin-bottom: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.8vw, 4.5rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.26rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.lead {
  max-width: 750px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.hub-card:hover,
.story-card:hover,
.route-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--soft);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 28px;
  display: flex;
  max-width: min(900px, calc(100% - 36px));
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(24, 35, 30, 0.35);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section,
.content-page {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding-top: clamp(86px, 10vw, 145px);
}

.intro-band,
.route-preview,
.split-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.intro-text p,
.route-preview p,
.content-page p,
.feature-card p,
.story-card p,
.hub-card p,
.faq p,
.clean-list {
  color: var(--muted);
}

.intro-text p,
.route-preview p,
.content-page p {
  font-size: 1.08rem;
}

.photo-rhythm {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.photo-tile {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.photo-tile.small {
  min-height: 230px;
}

.photo-stack {
  display: grid;
  gap: 18px;
}

.photo-tile img,
.photo-tile picture {
  height: 100%;
}

.photo-tile img {
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.photo-caption strong,
.photo-caption span {
  display: block;
}

.photo-caption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.feature-card,
.story-card,
.route-card,
.contact-card,
.hub-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 62px rgba(24, 35, 30, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card {
  display: grid;
  overflow: hidden;
}

.feature-card picture {
  display: block;
  min-height: 300px;
}

.feature-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.feature-card > div {
  padding: clamp(24px, 4vw, 42px);
}

.feature-large {
  grid-row: span 2;
}

.feature-large picture,
.feature-large img {
  min-height: 440px;
}

.tag {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(81, 111, 69, 0.12);
  color: var(--reed);
  font-size: 0.78rem;
  font-weight: 850;
}

.clean-list {
  padding-left: 1.1rem;
}

.clean-list li + li {
  margin-top: 7px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--water);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.content-hub {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  padding-bottom: clamp(80px, 9vw, 124px);
  background: #17231e;
  color: var(--soft);
}

.content-hub .section-kicker {
  max-width: 840px;
  margin-bottom: 34px;
}

.content-hub p {
  color: rgba(246, 241, 232, 0.72);
}

.hub-grid,
.story-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hub-card {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  text-decoration: none;
}

.hub-card p {
  color: rgba(246, 241, 232, 0.7);
}

.hub-card span,
.story-card span,
.route-card span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--clay);
  font-weight: 900;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #536059;
  font-size: 0.9rem;
  font-weight: 780;
}

.story-grid {
  margin-top: 28px;
}

.story-card,
.route-card {
  min-height: 250px;
  padding: 26px;
}

.story-card.dark,
.route-card.dark {
  background: #17231e;
  color: var(--soft);
}

.story-card.dark p,
.route-card.dark p {
  color: rgba(246, 241, 232, 0.72);
}

.route-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.route-row {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.55fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.route-row strong {
  color: var(--reed);
}

.note-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(173, 123, 78, 0.26);
  border-radius: 24px;
  background: rgba(173, 123, 78, 0.1);
}

.note-box p:last-child {
  margin-bottom: 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 850;
}

.faq details p {
  max-width: 780px;
  margin: 12px 0 0;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-top: 46px;
}

.legal dl {
  display: grid;
  gap: 14px;
}

.legal dt {
  font-weight: 850;
}

.legal dd {
  margin: 0;
  color: var(--muted);
}

.contact {
  width: auto;
  max-width: none;
  margin-top: clamp(86px, 10vw, 145px);
  padding: clamp(62px, 8vw, 100px) max(18px, calc((100vw - 1180px) / 2));
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.contact-card {
  flex: 1 1 280px;
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 24px;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-weight: 850;
}

.contact-card strong {
  color: var(--water);
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(36, 95, 100, 0.18);
  border-color: rgba(36, 95, 100, 0.55);
}

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

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.check-row input {
  width: auto;
  margin-top: 5px;
}

.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: var(--ink);
  color: rgba(246, 241, 232, 0.68);
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer strong {
  color: var(--soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 960px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .intro-band,
  .photo-rhythm,
  .product-feature,
  .route-preview,
  .split-section,
  .form-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 740px;
  }

  .page-hero {
    min-height: 560px;
  }

  .hero-panel {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-bottom: 118px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-strip {
    left: 16px;
    right: 16px;
    justify-content: flex-start;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

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

  .photo-tile,
  .feature-card,
  .hub-card,
  .story-card,
  .route-card,
  .contact-card,
  .route-row,
  .note-box {
    border-radius: 18px;
  }
}
