:root {
  --brand: #8f1d14;
  --brand-dark: #67130e;
  --brand-soft: #f8ebe8;

  --ink: #171a1f;
  --text: #262b33;
  --muted: #69707d;

  --surface: #ffffff;
  --soft: #f7f6f3;
  --soft-2: #efede8;
  --dark: #181b21;

  --border: #e4e1db;

  --shadow-sm: 0 8px 24px rgba(20, 25, 35, .07);
  --shadow-md: 0 18px 50px rgba(20, 25, 35, .12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

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

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,225,219,.8);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  color: var(--brand);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.btn) {
  position: relative;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--brand);
  transition: right .2s ease;
}

.nav-links > a:not(.btn):hover::after {
  right: 0;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(143,29,20,.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: #c9c4ba;
  box-shadow: var(--shadow-sm);
}

/* HERO */

.hero {
  padding: 88px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(143,29,20,.08), transparent 32%),
    linear-gradient(180deg, #fbfaf8 0%, #f7f5f0 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 58px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffb5ae;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -.035em;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
}

.hero-intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  color: #4e5560;
  font-size: 14px;
  font-weight: 650;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  color: var(--brand);
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -8% -10% 12%;
  border-radius: 36px;
  background: rgba(143,29,20,.09);
  filter: blur(2px);
}

.hero-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* SECTIONS */

.section {
  padding: 82px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--dark);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-lead {
  max-width: 780px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
}

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

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* CARDS */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

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

.card-link {
  overflow: hidden;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: #d1ccc3;
  box-shadow: var(--shadow-sm);
}

.card-kicker,
.fact-label {
  display: block;
  margin-bottom: 9px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--brand);
  font-size: 24px;
  font-weight: 900;
  transition: transform .18s ease;
}

.card-link:hover .card-arrow {
  transform: translateX(4px);
}

.card-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}

.card-dark p {
  color: #c7cbd2;
}

/* ROUTE DETAILS */

.route-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-note {
  margin-top: 24px;
  color: var(--muted);
}

.route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card {
  min-height: 210px;
}

/* BOOKING */

.booking-section {
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.booking-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.booking-shell iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

/* FAQ */

.faq-container {
  max-width: 880px;
}

.faq-item {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 24px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

/* CTA */

.cta {
  padding: 68px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.09), transparent 28%),
    var(--dark);
  color: #fff;
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: #c8ccd3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

/* FOOTER */

.site-footer {
  padding: 44px 0 22px;
  background: #111318;
  color: #b9bec7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 22px;
}

.footer-grid p {
  max-width: 520px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: #8f96a0;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    max-width: 760px;
  }

  .cards,
  .route-grid,
  .route-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 54px 0 56px;
  }

  .hero-grid {
    gap: 32px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .trust-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 58px 0;
  }

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

  .card {
    padding: 23px;
  }

  .booking-shell {
    padding: 5px;
    border-radius: 18px;
  }

  .booking-shell iframe {
    min-height: 800px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 11px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(94%, var(--max));
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    border-radius: 18px;
  }
}

/* MOBILE OVERFLOW FIX */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-grid,
.hero-content,
.hero-media,
.section,
.container,
.cards,
.card {
  min-width: 0;
}

h1,
h2,
h3,
.hero-intro,
.card,
.card p {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero-media {
    width: 100%;
    max-width: 100%;
  }
}

/* FINAL HERO IMAGE RATIO FIX */
.hero-media {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  overflow: visible;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center;
}

@media (max-width: 760px) {
  .hero-media {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .hero-media img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }
}

/* MOBILE NAVIGATION */
.mobile-nav {
  display: none;
}

@media (max-width: 760px) {
  .mobile-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(20,25,35,.06);
  }

  .mobile-nav a {
    padding: 12px 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--text);
    border-right: 1px solid var(--border);
  }

  .mobile-nav a:last-child {
    border-right: 0;
    color: #fff;
    background: var(--brand);
  }
}

/* BOOKING PAGE TOP COMPACT */
.booking-section {
  padding-top: 24px;
}

.booking-section .section-heading {
  margin-bottom: 18px;
}

.booking-section .section-heading .eyebrow {
  margin-bottom: 6px;
}

.booking-section .section-heading h2 {
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .booking-section {
    padding-top: 16px;
  }

  .booking-section .section-heading {
    margin-bottom: 12px;
  }

  .booking-section .section-heading p {
    margin-bottom: 0;
  }
}
