:root {
  --ink: #17222c;
  --ink-2: #223240;
  --muted: #5c6872;
  --paper: #f5f7f3;
  --white: #fff;
  --green: #73d700;
  --green-bright: #8ce800;
  --green-dark: #4fac00;
  --blue: #005e91;
  --line: rgba(23, 34, 44, .14);
  --shadow: 0 24px 60px rgba(23, 34, 44, .1);
  --radius: 1.1rem;
  --content: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, Aptos, "Segoe UI", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
.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; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: 1rem; transform: translateY(-160%); padding: .8rem 1rem; background: white; border-radius: .5rem; font-weight: 800; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 100; top: 0; height: 86px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 0 clamp(1.25rem, 4.6vw, 5.5rem); border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(23,34,44,.96); color: white; backdrop-filter: blur(18px); transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { background: rgba(23,34,44,.985); box-shadow: 0 12px 32px rgba(23,34,44,.16); }
.brand { justify-self: start; display: flex; align-items: center; gap: .9rem; color: var(--muted); text-decoration: none; font-size: 1.15rem; }
.brand img { display: block; object-fit: contain; }
.brand .maheux-logo-white { filter: brightness(0) invert(1); }
.brand img:first-child { width: 145px; height: auto; }
.brand img:last-child { width: 102px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.5rem); }
.desktop-nav a { position: relative; color: white; font-weight: 750; font-size: .9rem; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; background: var(--green-dark); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .7rem; }
.mini-cta { display: inline-flex; gap: .45rem; align-items: center; min-height: 44px; padding: .75rem 1rem; border-radius: .58rem; background: var(--green); color: #112008; font-weight: 850; font-size: .86rem; text-decoration: none; }
.language { display: grid; place-items: center; min-width: 44px; min-height: 44px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; font-size: .85rem; font-weight: 850; text-decoration: none; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 50%; background: var(--ink); }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; border-radius: 9px; }
.mobile-menu { position: absolute; top: 72px; left: 0; right: 0; height: calc(100vh - 72px); padding: 2rem 1.25rem; background: var(--paper); }
.mobile-menu a { display: block; padding: 1rem .2rem; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 1.3rem; font-weight: 800; text-decoration: none; }

.section { max-width: var(--content); margin: 0 auto; padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 4.6vw, 5.5rem); }
.section-kicker { margin: 0 0 2rem; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker.light { color: var(--green-bright); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { margin: 0; font-family: "Arial Narrow", Aptos, "Segoe UI", sans-serif; letter-spacing: -.052em; }
h2 { font-size: clamp(2.7rem, 5.5vw, 6.2rem); line-height: .96; }

.hero { min-height: calc(100vh - 86px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(510px, 1.08fr); align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 4.8vw, 6.2rem); }
.eyebrow { margin: 0 0 1.5rem; color: var(--blue); font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 800px; font-size: clamp(3.25rem, 6vw, 6.7rem); line-height: .91; }
h1 em { display: inline-block; color: var(--green-dark); font-style: normal; }
.lead { max-width: 620px; margin: 2rem 0; color: var(--muted); font-size: clamp(1.08rem, 1.4vw, 1.32rem); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-height: 54px; padding: .95rem 1.3rem; border-radius: .65rem; font-size: .95rem; font-weight: 900; text-decoration: none; box-shadow: 0 14px 34px rgba(23,34,44,.12); transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #122009; }
.button-primary:hover, .button-primary:focus-visible { background: var(--green-bright); }
.button-dark { background: var(--ink); color: white; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 850; text-underline-offset: .28rem; }
.booking-note { display: flex; align-items: center; gap: .55rem; margin: 1.45rem 0 0; color: var(--muted); font-size: .78rem; }
.booking-note span { color: var(--green-dark); font-size: .65rem; }
.hero-photo { position: relative; min-height: 620px; overflow: hidden; background: #d6dde0; }
.hero-photo > img { position: absolute; inset: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: 55% center; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,34,44,.12), transparent 35%), linear-gradient(0deg, rgba(23,34,44,.5), transparent 38%); }
.photo-label { position: absolute; z-index: 1; left: clamp(1.5rem, 3vw, 3rem); bottom: clamp(1.5rem, 3vw, 3rem); display: flex; align-items: center; gap: .65rem; color: white; font-size: .9rem; font-weight: 850; }
.photo-label span { width: .72rem; height: .72rem; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(115,215,0,.2); }

.intro { border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .68fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.intro-grid h2 span { color: var(--green-dark); }
.intro-copy > p { margin: 0 0 1.35rem; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.7; }
.intro-copy strong { color: var(--ink); }
.intro-copy .pull-quote { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--ink); font-size: 1.35rem; font-weight: 900; }
.roles { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(4rem, 8vw, 8rem); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.roles article { position: relative; min-height: 260px; padding: clamp(2rem, 4vw, 4rem); background: white; }
.roles article + article { border-left: 1px solid var(--line); }
.roles .role-accent { background: var(--green); }
.role-number { margin-bottom: 2.5rem; font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.roles h3 { margin: 0 0 .75rem; font-size: clamp(1.4rem, 2.2vw, 2.1rem); }
.roles p { max-width: 500px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.role-accent p { color: #263c13; }

.route-section { padding-top: clamp(5rem, 10vw, 10rem); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, .42fr); gap: 4rem; align-items: end; }
.section-heading .section-kicker { margin-bottom: 1.25rem; }
.section-aside { padding-bottom: .45rem; }
.section-aside p { margin: 0 0 1rem; color: var(--muted); line-height: 1.6; }
.route-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 1rem; margin: clamp(4rem, 8vw, 7rem) 0 2.5rem; color: var(--ink); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.route-line i { height: 2px; background: linear-gradient(90deg, var(--green-dark), var(--green)); position: relative; }
.route-line i::after { content: ""; position: absolute; right: -1px; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--green-dark); }
.stops-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stop-card { min-height: 350px; padding: 2rem clamp(1.3rem, 2.2vw, 2.3rem); border-right: 1px solid var(--line); }
.stop-card:last-child { border-right: 0; }
.stop-city { margin-bottom: 3.4rem; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.stop-city span { color: var(--green-dark); margin-right: .55rem; }
.stop-card h3 { margin: 0 0 .65rem; font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.15; }
.stop-card p { margin: 0 0 1.5rem; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.stop-card > a, .stop-option a { color: var(--ink); font-size: .85rem; font-weight: 850; text-underline-offset: .22rem; }
.stop-option { margin-bottom: 1.6rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.stop-option:last-child { margin-bottom: 0; padding-bottom: 0; border: 0; }
.stop-option h3 { font-size: 1.25rem; }
.stop-option p { margin-bottom: .45rem; }

.comfort-section { display: grid; grid-template-columns: .88fr 1.12fr; background: var(--ink); color: white; }
.comfort-copy { width: 100%; margin: 0; padding-left: max(1.25rem, calc((100vw - var(--content)) / 2 + clamp(1.25rem, 4.6vw, 5.5rem))); }
.comfort-copy h2 { max-width: 680px; }
.comfort-copy > p:last-child { max-width: 610px; margin: 2rem 0 0; color: #b7c2c8; font-size: 1.08rem; line-height: 1.7; }
.amenities { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink-2); }
.amenities article { display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; padding: clamp(1.8rem, 3vw, 3rem); border-left: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }
.amenities article:nth-last-child(-n+2) { border-bottom: 0; }
.amenity-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--green-bright); font-size: 1.5rem; }
.amenities h3 { margin: 2rem 0 .5rem; font-size: 1.35rem; }
.amenities p { margin: 0; color: #b7c2c8; line-height: 1.5; }

.network-section { position: relative; display: grid; grid-template-columns: .12fr 1fr .82fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.network-mark { color: var(--green); font-size: clamp(4rem, 9vw, 9rem); line-height: .8; font-weight: 200; }
.network-copy h2 { max-width: 720px; font-size: clamp(3rem, 5.6vw, 6rem); }
.network-copy > p:not(.section-kicker) { max-width: 680px; margin: 1.7rem 0 2rem; color: var(--muted); font-size: 1.08rem; line-height: 1.68; }
.network-facts { padding-top: 3.1rem; }
.network-facts p { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1.2rem; margin: 0; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-weight: 800; line-height: 1.4; }
.network-facts span { color: var(--green-dark); font-size: .76rem; }

.final-cta { display: flex; min-height: 520px; padding: clamp(4rem, 8vw, 8rem) 1.25rem; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--green); }
.final-cta > p { margin: 0 0 1rem; font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.final-cta h2 { margin-bottom: 2rem; font-size: clamp(3.5rem, 8vw, 8rem); }
.final-cta .button-primary { background: var(--ink); color: white; }

.site-footer { padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4.6vw, 5.5rem) 2rem; background: var(--ink); color: white; }
.footer-top { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: .6fr 1fr; gap: 4rem; align-items: start; }
.footer-brand { margin-top: .25rem; }
.footer-top > p { max-width: 760px; margin: 0; color: #b7c2c8; line-height: 1.65; }
.footer-top strong { color: white; }
.footer-bottom { max-width: var(--content); margin: 4rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 2rem; color: #b7c2c8; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.2rem; }
.footer-bottom a { text-underline-offset: .2rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; }
  .hero-photo { min-height: 66vw; }
  .stops-grid { grid-template-columns: 1fr 1fr; }
  .stop-card { border-bottom: 1px solid var(--line); }
  .stop-card:nth-child(2) { border-right: 0; }
  .stop-card:nth-last-child(-n+2) { border-bottom: 0; }
  .comfort-section { grid-template-columns: 1fr; }
  .comfort-copy { max-width: none; padding-left: clamp(1.25rem, 4.6vw, 5.5rem); }
}

@media (max-width: 760px) {
  .site-header { height: 72px; gap: .7rem; padding-inline: 1rem; }
  .brand { gap: .5rem; }
  .brand img:first-child { width: 112px; }
  .brand img:last-child { width: 78px; }
  .mini-cta { display: none; }
  .language { min-width: 40px; min-height: 40px; }
  .menu-button { display: block; }
  .section { padding-block: 5rem; }
  .hero { min-height: auto; }
  .hero-copy { min-height: calc(82vh - 72px); padding-top: 4.5rem; padding-bottom: 4rem; }
  h1 { font-size: clamp(3.1rem, 14.5vw, 5.2rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
  .lead { margin: 1.6rem 0; }
  .hero-photo { min-height: 68vw; }
  .photo-label { font-size: .78rem; }
  .intro-grid, .section-heading, .network-section, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .roles { grid-template-columns: 1fr; }
  .roles article + article { border-left: 0; border-top: 1px solid var(--line); }
  .route-line { grid-template-columns: 1fr; gap: .35rem; margin-top: 3.5rem; padding-left: 1.3rem; border-left: 2px solid var(--green); }
  .route-line i { display: none; }
  .route-line span { padding: .38rem 0; }
  .stops-grid { grid-template-columns: 1fr; }
  .stop-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .stop-card:last-child { border-bottom: 0 !important; }
  .stop-city { margin-bottom: 2.2rem; }
  .amenities { grid-template-columns: 1fr; }
  .amenities article { min-height: 230px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
  .amenities article:last-child { border-bottom: 0 !important; }
  .network-mark { display: none; }
  .network-facts { padding-top: 0; }
  .final-cta { min-height: 460px; }
  .footer-bottom { margin-top: 3rem; flex-direction: column; }
  .footer-bottom nav { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .brand img:first-child { width: 102px; }
  .brand img:last-child { width: 70px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .hero-photo { min-height: 78vw; }
  .photo-label { left: 1rem; bottom: 1rem; max-width: 85%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
