:root {
  --ink: #172220;
  --muted: #65716c;
  --paper: #fbf8ef;
  --white: #ffffff;
  --mist: #e6eee9;
  --sage: #6f8f7b;
  --teal: #0f6b6d;
  --rust: #c45b39;
  --gold: #d7a642;
  --line: rgba(23, 34, 32, .14);
  --shadow: 0 18px 48px rgba(20, 31, 29, .14);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 239, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: conic-gradient(from 140deg, var(--teal), var(--sage), var(--rust), var(--teal));
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 107, 109, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #24312e;
  font-size: .94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  outline: none;
}

.nav-action {
  background: var(--ink);
  color: var(--paper) !important;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(11, 22, 20, .74), rgba(11, 22, 20, .25) 54%, rgba(11, 22, 20, .08)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(88px, 16vh, 150px) 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-search {
  margin-top: 32px;
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid rgba(23, 34, 32, .08);
  border-radius: 8px;
  color: var(--ink);
}

.field label {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  background: #095658;
  outline: none;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--mist);
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

.section.alt {
  background: #eef3ee;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 28px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 4.1rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.split img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid,
.deal-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.deal-card,
.guide-card,
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(20, 31, 29, .08);
}

.feature {
  padding: 22px;
}

.feature i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--teal);
}

.feature h3,
.deal-card h3,
.guide-card h3,
.info-card h3 {
  font-size: 1.35rem;
}

.feature p,
.deal-card p,
.guide-card p,
.info-card p {
  color: var(--muted);
}

.deal-card img,
.guide-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0f3ed;
  color: #40514c;
  font-size: .82rem;
  font-weight: 800;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.page-hero {
  padding: clamp(78px, 10vw, 130px) 0 56px;
  background: linear-gradient(135deg, #1c2f2e, #f0d28e);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
}

.breadcrumb {
  margin: 0 0 16px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

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

.site-footer {
  background: #111a18;
  color: rgba(255, 255, 255, .82);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.8rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  outline: none;
}

.company-info {
  margin-top: 18px;
  display: grid;
  gap: 5px;
  font-size: .92rem;
}

.disclaimer {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 18, .68);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(850px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-panel img {
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.modal-content {
  padding: clamp(18px, 4vw, 30px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  cursor: pointer;
}

.legal {
  max-width: 850px;
}

.legal h2 {
  margin-top: 32px;
  font-size: 2rem;
}

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

.home-page {
  background:
    linear-gradient(90deg, rgba(23, 34, 32, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 34, 32, .035) 1px, transparent 1px),
    #f8f3e7;
  background-size: 46px 46px;
}

.home-page .site-header {
  background: rgba(248, 243, 231, .78);
}

.home-hero {
  position: relative;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0 34px;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 12%;
  top: 118px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(23, 34, 32, .2) 0 18px, transparent 18px 31px);
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  padding: clamp(10px, 2vw, 26px) 0;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--rust);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-kicker span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: var(--ink);
}

.home-page h1 {
  max-width: 620px;
  color: #14201e;
  font-size: clamp(4rem, 11vw, 9.4rem);
  line-height: .86;
}

.home-page .hero-copy {
  max-width: 560px;
  color: #4c5a54;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn-ghost {
  background: transparent;
  border-color: rgba(23, 34, 32, .24);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: clamp(480px, 62vw, 700px);
  display: grid;
  align-items: end;
}

.hero-visual img {
  height: clamp(440px, 60vw, 650px);
  object-fit: cover;
  border-radius: 8px;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  box-shadow: 0 28px 68px rgba(23, 34, 32, .26);
}

.departure-board {
  position: absolute;
  left: -28px;
  top: 52px;
  width: min(280px, 46%);
  padding: 18px;
  border-radius: 8px;
  background: #14201e;
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(23, 34, 32, .24);
}

.board-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.departure-board strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: .9;
}

.board-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #e7c15d;
  font-weight: 800;
}

.ticket-note {
  position: absolute;
  right: 18px;
  bottom: 30px;
  width: 196px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 8px;
  background: rgba(248, 243, 231, .9);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(23, 34, 32, .18);
}

.ticket-note span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.ticket-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.finder-strip {
  position: relative;
  z-index: 3;
  width: min(1100px, calc(100% - 18px));
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 1.2fr .95fr .95fr auto;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(23, 34, 32, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 52px rgba(23, 34, 32, .14);
}

.finder-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #1c261f;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
}

.home-services {
  padding: clamp(56px, 8vw, 104px) 0;
}

.service-ledger {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 46px rgba(23, 34, 32, .08);
}

.ledger-title,
.service-ledger article {
  min-height: 320px;
  padding: clamp(20px, 3vw, 30px);
}

.ledger-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #14201e;
  color: var(--paper);
}

.ledger-title h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.service-ledger article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  border-left: 1px solid var(--line);
}

.service-ledger article:nth-child(3) {
  background: #eef3ee;
}

.service-ledger article:nth-child(4) {
  background: #f2e5cd;
}

.service-ledger article span {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: rgba(23, 34, 32, .12);
}

.service-ledger article i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.service-ledger h3 {
  font-size: 1.55rem;
}

.service-ledger p {
  margin: 0;
  color: var(--muted);
}

.route-ribbon {
  padding: clamp(54px, 8vw, 96px) 0;
  background: #dfe8e0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: minmax(180px, .74fr) minmax(0, 1.2fr) minmax(180px, .72fr);
  gap: 18px;
  align-items: stretch;
}

.ribbon-photo {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(23, 34, 32, .14);
}

.ribbon-photo.tall {
  transform: translateY(34px);
}

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

.ribbon-copy {
  padding: clamp(24px, 5vw, 56px);
  border-radius: 8px;
  background: #f8f3e7;
  border: 1px solid rgba(23,34,32,.14);
}

.ribbon-copy h2,
.browser-head h2,
.home-cta h2 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
}

.mini-board {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.mini-board a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.mini-board i {
  color: var(--rust);
}

.trip-browser {
  padding: clamp(58px, 8vw, 104px) 0;
}

.browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.browser-head p {
  color: var(--muted);
}

.trip-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.trip-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(23, 34, 32, .16);
}

.trip-tile.wide {
  grid-row: span 2;
}

.trip-tile img {
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .4s ease, opacity .4s ease;
}

.trip-tile:hover img {
  transform: scale(1.04);
  opacity: .68;
}

.tile-content {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  gap: 12px;
  color: var(--white);
}

.tile-code {
  width: max-content;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(248, 243, 231, .9);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
}

.tile-content h3 {
  max-width: 620px;
  font-size: clamp(1.65rem, 3.2vw, 3.5rem);
  text-shadow: 0 2px 16px rgba(0,0,0,.36);
}

.tile-content .btn-secondary {
  width: max-content;
  background: rgba(248, 243, 231, .94);
  color: var(--ink);
  border-color: transparent;
}

.home-cta {
  padding: clamp(56px, 8vw, 92px) 0;
  background: #14201e;
  color: var(--paper);
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.home-cta .home-kicker {
  color: #e7c15d;
}

.home-cta .home-kicker span {
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border-color: rgba(255,255,255,.18);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero-search,
  .finder-strip,
  .section-head,
  .split,
  .cta-inner,
  .contact-grid,
  .footer-grid,
  .home-hero-grid,
  .service-ledger,
  .ribbon-grid,
  .browser-head,
  .trip-mosaic,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    left: 0;
    right: 0;
    top: 92px;
  }

  .home-page h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual img {
    height: 460px;
    clip-path: none;
  }

  .departure-board {
    left: 16px;
    width: min(300px, calc(100% - 32px));
  }

  .finder-strip {
    margin-top: 18px;
  }

  .service-ledger article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ledger-title,
  .service-ledger article {
    min-height: 250px;
  }

  .ribbon-photo.tall {
    transform: none;
  }

  .trip-mosaic {
    grid-auto-rows: auto;
  }

  .trip-tile,
  .trip-tile.wide {
    min-height: 380px;
    grid-row: auto;
  }

  .feature-grid,
  .deal-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero-inner,
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    min-height: 720px;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .home-hero {
    width: min(100% - 24px, 1280px);
    padding-top: 34px;
  }

  .home-page h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .home-page .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .home-cta-inner .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .finder-strip .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual img {
    height: 390px;
  }

  .departure-board {
    top: 18px;
  }

  .ticket-note {
    right: 12px;
    bottom: 14px;
    width: min(188px, calc(100% - 24px));
  }

  .finder-stamp {
    justify-content: flex-start;
  }

  .ledger-title,
  .service-ledger article {
    min-height: 220px;
  }

  .ribbon-photo,
  .trip-tile,
  .trip-tile.wide {
    min-height: 320px;
  }

  .ribbon-copy {
    padding: 22px;
  }

  .feature-grid,
  .deal-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner .btn {
    width: 100%;
  }
}
