:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --paper: #fffdf8;
  --ink: #171b22;
  --text: #303842;
  --muted: #68717c;
  --line: rgba(23, 27, 34, 0.12);
  --dark: #111820;
  --dark-2: #1f2d34;
  --gold: #d99a28;
  --gold-2: #f4c66a;
  --green: #2f6f5e;
  --blue: #2d6f91;
  --coral: #b9553f;
  --shadow: 0 24px 80px rgba(17, 24, 32, 0.18);
  --soft-shadow: 0 14px 34px rgba(17, 24, 32, 0.11);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(17, 24, 32, 0.72);
  color: #fffdf8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 24, 32, 0.94);
  box-shadow: 0 10px 30px rgba(17, 24, 32, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(217, 154, 40, 0.25);
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.primary-nav a,
.language-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  color: rgba(255, 253, 248, 0.78);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-nav a:hover {
  color: #fff;
}

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

.language-nav a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.language-nav a.active,
.language-nav a:hover {
  border-color: transparent;
  background: var(--gold);
  color: var(--dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
  color: #fffdf8;
}

.hero-bg,
.page-hero > img,
.contact-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.92) 0%, rgba(17, 24, 32, 0.72) 42%, rgba(17, 24, 32, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, 0.88) 0%, rgba(17, 24, 32, 0.1) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 88px 0 92px;
}

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

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: 56px;
  font-weight: 860;
}

h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 840;
  color: var(--ink);
}

h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 830;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--dark);
  box-shadow: 0 16px 34px rgba(217, 154, 40, 0.26);
}

.btn-light {
  background: #fffdf8;
  color: var(--dark);
}

.btn-light.dark {
  border-color: var(--line);
  background: var(--paper);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.06);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 34px;
}

.hero-badges span,
.doc-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 760;
}

.booking-panel {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  z-index: 2;
  width: min(420px, calc(100% - 44px));
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.booking-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.booking-panel div {
  min-height: 76px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f5efe4;
}

.booking-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.booking-panel dd {
  margin: 5px 0 0;
  font-weight: 820;
  line-height: 1.25;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 44px));
  margin: -64px auto 0;
  position: relative;
  z-index: 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.stats-band div {
  min-height: 132px;
  padding: 26px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 680;
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.fleet-card,
.listing-card,
.article-mini,
.article-aside a {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.fleet-card:hover,
.listing-card:hover,
.article-mini:hover,
.article-aside a:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.service-card {
  min-height: 390px;
  color: #fffdf8;
  background: var(--dark);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  transition: transform 360ms ease, opacity 180ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
  opacity: 0.76;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 32, 0.92), rgba(17, 24, 32, 0.18));
  content: "";
}

.service-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.service-card span,
.fleet-body span,
.route-card span,
.listing-card span,
.article-mini span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card p,
.fleet-card p,
.route-card p,
.listing-card p,
.article-mini p,
.article-aside p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 820;
}

.fleet-section {
  padding-top: 70px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  min-height: 100%;
  color: var(--text);
}

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

.fleet-body {
  padding: 20px;
}

.fleet-body span {
  color: var(--blue);
}

.fleet-body strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
}

.fleet-body p,
.listing-card p,
.article-mini p,
.article-aside p {
  color: var(--muted);
}

.feature-band,
.routes-band,
.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 96px max(22px, calc((100vw - var(--max)) / 2));
  background: #e9efe9;
}

.feature-band-alt {
  background: #f3eadb;
}

.feature-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-copy .btn {
  margin-top: 28px;
}

.feature-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.doc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.doc-pills span {
  background: rgba(17, 24, 32, 0.08);
  color: var(--ink);
  border-color: var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fffdf8;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--dark);
  font-weight: 850;
}

.process-list p {
  color: rgba(255, 253, 248, 0.72);
}

.routes-band {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  background: var(--dark);
  color: #fffdf8;
}

.routes-band h2 {
  color: #fffdf8;
}

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

.route-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fffdf8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-card p {
  color: rgba(255, 253, 248, 0.72);
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 760;
  box-shadow: 0 1px 0 var(--line);
}

.check-item span {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(47, 111, 94, 0.2);
  border-top-color: var(--green);
  border-radius: 999px;
}

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

.article-mini {
  padding: 24px;
}

.article-mini span {
  color: var(--coral);
}

.contact-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
  color: #fffdf8;
  overflow: hidden;
}

.contact-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 32, 0.9), rgba(17, 24, 32, 0.48));
  content: "";
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  color: #fffdf8;
}

.contact-content p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fffdf8;
  background: var(--dark);
}

.compact-hero {
  min-height: 500px;
}

.article-hero {
  min-height: 540px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.page-hero-content h1 {
  max-width: 860px;
  font-size: 56px;
}

.page-hero-content p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 19px;
}

.crumb {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 820;
}

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

.listing-card {
  min-height: 260px;
  padding: 24px;
  color: var(--text);
}

.listing-card span {
  color: var(--blue);
}

.listing-card strong {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 84px 0;
}

.article-main,
.article-aside {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line);
}

.article-main {
  padding: 42px;
}

.lead-paragraph {
  margin-top: 0;
  color: var(--ink);
  font-size: 20px;
}

.article-main h2,
.article-aside h2 {
  margin: 34px 0 18px;
  font-size: 28px;
}

.article-main ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.article-main li {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #f4efe7;
  border-radius: var(--radius);
}

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

.article-aside {
  align-self: start;
  padding: 24px;
}

.article-aside h2 {
  margin-top: 0;
}

.article-aside a {
  padding: 18px;
  margin-top: 12px;
}

.article-aside h3 {
  color: var(--ink);
  font-size: 18px;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 253, 248, 0.72);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-brand {
  color: #fffdf8;
}

.footer-inner p {
  max-width: 480px;
  margin: 16px 0 0;
}

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

.footer-links a {
  text-decoration: none;
  color: #fffdf8;
  font-weight: 780;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 2px;
    justify-content: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(17, 24, 32, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .language-nav {
    justify-self: end;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-bottom: 154px;
  }

  .booking-panel {
    left: 22px;
    right: auto;
  }

  .service-grid,
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .routes-band {
    grid-template-columns: 1fr;
  }

  .feature-band-alt .feature-image {
    order: 2;
  }

  .article-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 10px;
  }

  .brand-name {
    font-size: 18px;
  }

  .language-nav a {
    width: 34px;
    height: 32px;
    font-size: 12px;
  }

  .primary-nav {
    top: 66px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.5)),
      linear-gradient(90deg, rgba(17, 24, 32, 0.72), rgba(17, 24, 32, 0.2));
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 82px 0 64px;
  }

  h1,
  .page-hero-content h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .page-hero-content p,
  .feature-copy p:not(.eyebrow),
  .contact-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .booking-panel {
    display: none;
  }

  .hero-badges {
    display: none;
  }

  .booking-panel dl,
  .stats-band,
  .service-grid,
  .fleet-grid,
  .process-list,
  .route-grid,
  .checks-grid,
  .article-mini-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    width: calc(100% - 32px);
    margin-top: -42px;
  }

  .stats-band div {
    min-height: 106px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: 340px;
  }

  .feature-band,
  .routes-band,
  .contact-section {
    padding: 72px 16px;
  }

  .feature-image img {
    height: 430px;
  }

  .page-hero-content,
  .article-body,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .page-hero-content {
    padding-top: 120px;
  }

  .article-main {
    padding: 24px;
  }

  .footer-inner {
    display: grid;
  }

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

@media (max-width: 430px) {
  .hero-actions .btn,
  .article-actions .btn {
    width: 100%;
  }

  h1,
  .page-hero-content h1 {
    font-size: 30px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
