/* Sailvoy – Global Stylesheet */
/* Shared across all pages */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --cream: #faf8f4;
    --white: #ffffff;
    --ink: #1a1814;
    --ink-soft: #3d3a35;
    --muted: #8c877e;
    --gold: #b8962e;
    --gold-light: #d4b04a;
    --gold-pale: #f0e8d0;
    --border: #e8e2d8;
    --section-pad: 7rem 6rem;
  }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
  }
  nav.scrolled {
    border-bottom-color: var(--border);
    padding: 0 4rem;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-logo img {
    height: 60px;
    width: auto;
    display: block;
  }
  nav.scrolled .nav-logo img {
    height: 52px;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); }

  .nav-cta {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 0.55rem 1.4rem;
    transition: background 0.25s, color 0.25s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--white); }

  /* ── HAMBURGER BUTTON ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 1rem;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  /* Hamburger → X animation */
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── MOBILE DRAWER ── */
  .nav-drawer {
    display: none; /* shown via JS class on mobile */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: var(--cream);
    flex-direction: column;
    padding: 6rem 2.5rem 3rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .nav-drawer.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .nav-drawer-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-drawer-links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.05rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-drawer-links a:hover,
  .nav-drawer-links a.active {
    color: var(--gold);
    padding-left: 0.5rem;
  }

  .nav-drawer-cta {
    margin-top: 2.5rem;
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 1rem 2.4rem;
    text-align: center;
    transition: background 0.25s;
  }
  .nav-drawer-cta:hover { background: var(--gold-light); }

  .nav-drawer-footer {
    margin-top: auto;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    overflow: hidden;
  }

  .hero-image-col {
    position: relative;
    overflow: hidden;
    min-height: 640px;
  }

  .hero-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.04);
    animation: heroZoom 14s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
  }

  .hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--cream);
    animation: heroUp 1.1s 0.3s cubic-bezier(0.22,1,0.36,1) both;
  }

  @keyframes heroUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .hero-eyebrow span {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }
  .hero-eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.6rem;
    letter-spacing: 0.01em;
  }

  .hero h1 em {
    font-style: italic;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    font-weight: 300;
    max-width: 46ch;
    line-height: 1.8;
    margin-bottom: 2.2rem;
  }

  .hero-divider {
    width: 3rem;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2.2rem;
  }

  .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.85rem 2.2rem;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline-dark-hero {
    display: inline-block;
    border: 1px solid var(--ink);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.85rem 2.2rem;
    margin-left: 1rem;
    transition: background 0.25s, color 0.25s;
  }
  .btn-outline-dark-hero:hover { background: var(--ink); color: var(--white); }

  .btn-outline-light {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.85rem 2.2rem;
    margin-left: 1rem;
    transition: border-color 0.25s, background 0.25s;
  }
  .btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* ── INTRO STRIP ── */
  .intro-strip {
    background: var(--ink);
    padding: 2.2rem 6rem;
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .intro-strip-line {
    width: 3rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }
  .intro-strip p {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
  .intro-strip-loc {
    margin-left: auto;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    flex-shrink: 0;
    font-weight: 400;
  }

  /* ── APPROACH ── */
  .approach {
    padding: var(--section-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
  .section-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--gold);
  }
  .section-label span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1.8rem;
  }
  .section-title em { font-style: italic; }

  .body-text {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .approach-images {
    position: relative;
    height: 540px;
  }

  .approach-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 82%;
    height: 420px;
    object-fit: cover;
  }

  .approach-img-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 52%;
    height: 260px;
    object-fit: cover;
    border: 6px solid var(--cream);
  }

  .approach-stat {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: var(--ink);
    color: var(--white);
    padding: 1.4rem 1.8rem;
    text-align: center;
  }
  .approach-stat .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-light);
    display: block;
  }
  .approach-stat .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-top: 0.2rem;
  }

  /* ── YACHT FEATURES ── */
  .yacht-section {
    background: var(--white);
    padding: var(--section-pad);
  }

  .yacht-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .yacht-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px;
    gap: 0.5rem;
  }

  .yacht-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .yacht-gallery img:first-child {
    grid-column: 1 / -1;
  }

  .feature-list {
    list-style: none;
    margin: 2rem 0 2.5rem;
  }

  .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .feature-list li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 0.05rem;
  }

  .btn-outline-dark {
    display: inline-block;
    border: 1px solid var(--ink);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.85rem 2.2rem;
    transition: background 0.25s, color 0.25s;
  }
  .btn-outline-dark:hover { background: var(--ink); color: var(--white); }

  /* ── ROUTES ── */
  .routes-section {
    padding: var(--section-pad);
  }

  .routes-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 2rem;
  }

  .routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .route-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
  }

  .route-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  }

  .route-card:hover img { transform: scale(1.06); }

  .route-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,18,14,0.78) 0%, rgba(20,18,14,0.1) 55%);
    transition: background 0.4s;
  }
  .route-card:hover .route-card-overlay {
    background: linear-gradient(to top, rgba(20,18,14,0.88) 0%, rgba(20,18,14,0.2) 65%);
  }

  .route-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem;
  }

  .route-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    display: block;
  }

  .route-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .route-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }

  .route-card:hover .route-card-desc {
    max-height: 80px;
    opacity: 1;
  }

  .route-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 0.8rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .route-card:hover .route-arrow { opacity: 1; transform: translateY(0); }

  .routes-footer {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  /* ── CORPORATE ── */
  .corporate-section {
    background: var(--ink);
    padding: var(--section-pad);
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 5rem;
    align-items: center;
  }

  .corporate-section .section-label span { color: var(--gold-light); }
  .corporate-section .section-label::before { background: var(--gold); }

  .corporate-section .section-title { color: var(--white); margin-bottom: 1.2rem; }

  .corporate-section .body-text { color: rgba(255,255,255,0.6); margin-bottom: 0; }

  .corporate-pillars {
    margin: 1.8rem 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pillar {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 1.5rem;
    align-items: start;
  }
  .pillar:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

  .pillar-icon {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    opacity: 0.85;
    flex-shrink: 0;
  }

  .pillar-title {
    grid-column: 1;
    grid-row: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.4rem;
  }

  .pillar-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0;
  }

  .btn-gold-outline {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.85rem 2.2rem;
    transition: background 0.25s, color 0.25s;
  }
  .btn-gold-outline:hover { background: var(--gold); color: var(--white); }

  .corporate-image {
    position: relative;
  }

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

  .corporate-image-badge {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .corporate-image-badge span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
  }
  .corporate-image-badge span:last-child {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-top: 0.3rem;
  }

  /* ── CTA BANNER ── */
  .cta-banner {
    position: relative;
    padding: 7rem 6rem;
    overflow: hidden;
    text-align: center;
  }

  .cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://genuine-martin.10web.cloud/wp-content/uploads/2026/01/048585FC-4E51-4D0B-8623-BAC66AB278FB-scaled.jpg');
    background-size: cover;
    background-position: center;
  }

  .cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,18,14,0.68);
  }

  .cta-banner-content {
    position: relative;
    z-index: 2;
  }

  .cta-banner .section-label { justify-content: center; }
  .cta-banner .section-label::before { display: none; }

  .cta-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin: 0.8rem auto 1.8rem;
    max-width: 18ch;
  }

  .cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    max-width: 46ch;
    margin: 0 auto 2.8rem;
    line-height: 1.8;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 6rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
  }

  .footer-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-wordmark:hover { color: var(--gold-light); }

  .footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover { color: var(--gold-light); }

  .footer-copy {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
    text-align: right;
  }

  /* ── GOLD DIVIDER ── */
  .gold-divider {
    width: 3rem;
    height: 1px;
    background: var(--gold);
    margin: 2rem 0;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ══════════════════════════════════════
     MOBILE — 900px (tablets & large phones)
  ══════════════════════════════════════ */
  @media (max-width: 900px) {
    :root { --section-pad: 4rem 2rem; }

    /* Nav */
    nav { padding: 0 1.5rem; }
    nav.scrolled { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: flex; }

    /* Hero — homepage split layout stacks */
    .hero { grid-template-columns: 1fr; padding-top: 64px; }
    .hero-image-col { min-height: 55vw; max-height: 420px; }
    .hero-text-col { padding: 3rem 2rem; }

    /* Buttons — stack on small screens */
    .btn-outline-dark-hero,
    .btn-outline-light { margin-left: 0; margin-top: 0.75rem; display: block; text-align: center; }

    /* Approach */
    .approach { grid-template-columns: 1fr; gap: 3rem; }
    .approach-images { height: 360px; }

    /* Yacht */
    .yacht-section-inner { grid-template-columns: 1fr; gap: 3rem; }
    .yacht-gallery { grid-template-rows: 200px 140px; }

    /* Routes homepage */
    .routes-header { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .route-card img { height: 260px; }
    .route-card-desc { max-height: 80px; opacity: 1; }
    .route-arrow { opacity: 1; transform: none; }
    .routes-footer { flex-direction: column; align-items: flex-start; }

    /* Corporate */
    .corporate-section { grid-template-columns: 1fr; gap: 3rem; }
    .corporate-image { order: -1; }
    .corporate-image img { height: 320px; }
    .corporate-image-badge { display: none; }

    /* CTA */
    .cta-banner { padding: 5rem 2rem; }

    /* Footer */
    footer { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 3rem 2rem; }
    .footer-nav { justify-content: center; gap: 1.2rem; }
    .footer-copy { text-align: center; }

    /* Intro strip */
    .intro-strip { padding: 1.8rem 2rem; flex-wrap: wrap; gap: 1rem; }
    .intro-strip-loc { margin-left: 0; }

    /* Route page: day-route headings can wrap */
    .day-route { white-space: normal !important; }
  }

  /* ══════════════════════════════════════
     MOBILE — 480px (small phones)
  ══════════════════════════════════════ */
  @media (max-width: 480px) {
    :root { --section-pad: 3rem 1.2rem; }

    /* Nav logo smaller */
    .nav-logo img { height: 48px; }

    /* Hero text tighter */
    .hero-text-col { padding: 2.5rem 1.2rem; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }

    /* Buttons full-width on small phones */
    .btn-gold,
    .btn-outline-dark,
    .btn-outline-dark-hero,
    .btn-outline-light,
    .btn-gold-outline {
      display: block;
      text-align: center;
      margin-left: 0;
      margin-top: 0.6rem;
      width: 100%;
    }

    /* Section titles */
    .section-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }

    /* Intro strip: hide decorative line on tiny screens */
    .intro-strip-line { display: none; }
    .intro-strip p { font-size: 0.92rem; }

    /* Route cards full height readable */
    .route-card img { height: 220px; }

    /* CTA banner tighter */
    .cta-banner { padding: 3.5rem 1.2rem; }
    .cta-banner h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

    /* Footer links wrap tighter */
    .footer-nav { gap: 0.8rem; }
  }

  /* ══════════════════════════════════════
     HAMBURGER JS — utility class
     Body scroll lock when drawer is open
  ══════════════════════════════════════ */
  body.nav-open { overflow: hidden; }
