/* ============================================================
   ITF Maroni — Feuille de style principale
   style.css
   ============================================================ */

/* ── Variables & Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d2557;
  --deep:      #07152e;
  --blue:      #1565c0;
  --sky:       #42aaff;
  --skylight:  #90d4ff;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,.50);
  --border:    rgba(255,255,255,.09);
  --radius:    4px;
  --transition: 0.3s ease;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
textarea { resize: vertical; }


/* ── Typographie utilitaire ── */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--sky); opacity: .5;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--skylight), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guyane-text {
  background: linear-gradient(135deg, #009A44 0%, #FDEF42 50%, #CE1126 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  box-shadow: 0 4px 16px rgba(21,101,192,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); color: #fff; }


/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(7,21,46,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  transition: padding var(--transition);
}

#navbar.scrolled { padding: .6rem 4rem; }

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  padding: .2rem 0;
  border-bottom: 2px solid transparent;
  display: block;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  border-bottom-color: var(--sky);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--sky)) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .3rem;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Menu mobile */
#navMobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7,21,46,.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#navMobile.open { display: flex; }
#navMobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
#navMobile a:hover,
#navMobile a.active { color: var(--sky); }


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--deep);
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-logo {
  height: 30px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .45;
}
.footer-sep { width: 1px; height: 20px; background: var(--border); }
.footer-tagline {
  font-size: .68rem;
  color: rgba(255,255,255,.22);
  font-family: 'Montserrat', sans-serif;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sky); }
.footer-copy {
  font-size: .64rem;
  color: rgba(255,255,255,.18);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .08em;
  width: 100%;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}


/* ============================================================
   PAGE LAYOUTS (pages internes)
   ============================================================ */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 4rem 5rem;
}

/* Hero de page (grille 2 colonnes) */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.page-photo {
  border-radius: 6px;
  overflow: hidden;
  height: 340px;
}
.page-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.1);
  transition: transform .6s;
}
.page-photo:hover img { transform: scale(1.04); }
.page-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Grille de cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(66,170,255,.2); }
.card:hover::before { transform: scaleX(1); }

.card-icon  { font-size: 2rem; margin-bottom: 1rem; }
.card-num   { font-family: 'Montserrat', sans-serif; font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); margin-bottom: .8rem; }
.card-title { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .7rem; }
.card-desc  { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 1.2rem; }

.card-feats { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.card-feats li { display: flex; align-items: center; gap: .6rem; font-size: .77rem; color: rgba(255,255,255,.58); }
.card-feats li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.card-link:hover { border-bottom-color: var(--sky); }

/* Bloc 2 colonnes texte */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.col-block { padding: 3rem; }
.col-block:first-child { border-right: 1px solid rgba(255,255,255,.07); }
.col-title { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: .8rem; }
.col-desc  { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.8; margin-bottom: 1.8rem; }
.col-item  { display: flex; gap: 1rem; margin-bottom: 1.2rem; }
.col-item-icon  { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.col-item-title { font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.82); margin-bottom: .2rem; }
.col-item-desc  { font-size: .76rem; color: rgba(255,255,255,.38); line-height: 1.6; }

/* Formulaire générique */
.form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 6px;
  padding: 2.5rem;
}
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.ffull { grid-column: 1 / -1; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg label {
  font-family: 'Montserrat', sans-serif;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.fg input,
.fg select,
.fg textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-size: .88rem;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(66,170,255,.1);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.2); }
.fg select option { background: var(--navy); }
.fg textarea { min-height: 110px; }

/* Section CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 6px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: .8rem;
}
.cta-banner p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  margin-bottom: 1.8rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Valeurs / Garanties grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(66,170,255,.22); transform: translateY(-3px); }
.value-icon  { font-size: 2rem; margin-bottom: .8rem; }
.value-title { font-family: 'Montserrat', sans-serif; font-size: .88rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.value-desc  { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.65; }

/* Section divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* Texte centré */
.text-center { text-align: center; }

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(66,170,255,.1);
  border: 1px solid rgba(66,170,255,.2);
  color: var(--sky);
  padding: .3rem .8rem;
  border-radius: 20px;
}


/* ============================================================
   HERO (index.html)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(7,21,46,.88)  0%,
    rgba(13,37,87,.70) 50%,
    rgba(21,101,192,.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 4rem 6rem;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--sky); }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.02; margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.58);
  line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Carte hero */
.hero-card {
  background: rgba(13,37,87,.6);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: 6px;
  padding: 1.8rem;
}
.hero-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.5rem;
}
.hero-route {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1.2rem;
}
.hr-stop { display: flex; align-items: center; gap: 1rem; padding: .4rem 0; }
.hr-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.25);
}
.hr-stop.active .hr-dot {
  background: var(--sky); border-color: var(--sky);
  box-shadow: 0 0 8px rgba(66,170,255,.6);
}
.hr-name { font-family: 'Montserrat', sans-serif; font-size: .88rem; font-weight: 700; color: #fff; }
.hr-sub  { font-size: .68rem; color: rgba(255,255,255,.32); margin-top: .1rem; }
.hr-boat { font-size: 1.1rem; padding: .3rem 1.5rem; color: rgba(255,255,255,.35); }

.hcs {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  cursor: pointer; transition: all var(--transition);
  margin-bottom: .5rem;
}
.hcs:hover { background: rgba(66,170,255,.1); border-color: rgba(66,170,255,.25); }
.hcs-icon  { font-size: 1.2rem; flex-shrink: 0; }
.hcs-title { font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700; color: #fff; }
.hcs-sub   { font-size: .68rem; color: rgba(255,255,255,.32); margin-top: .12rem; }
.hcs-arrow { margin-left: auto; color: rgba(255,255,255,.22); transition: transform var(--transition), color var(--transition); }
.hcs:hover .hcs-arrow { transform: translateX(3px); color: var(--sky); }

/* Dots slideshow */
.hero-dots {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none; cursor: pointer; padding: 0;
  transition: all .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.5); }


/* ============================================================
   ROUTE BAR (index.html)
   ============================================================ */
.route-bar {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 4rem;
}
.route-bar-inner { max-width: 1100px; margin: 0 auto; }
.route-bar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .56rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.2); margin-bottom: 1.6rem;
}
.route-track  { display: flex; align-items: center; width: 100%; }
.route-stop   { display: flex; flex-direction: column; align-items: center; gap: .6rem; flex-shrink: 0; }
.route-dot    { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.22); transition: all .3s; }
.route-dot--start { background: var(--sky); border-color: var(--sky); box-shadow: 0 0 10px rgba(66,170,255,.5); width: 16px; height: 16px; }
.route-dot--end   { background: var(--skylight); border-color: var(--skylight); box-shadow: 0 0 12px rgba(144,212,255,.5); width: 16px; height: 16px; }
.route-name { font-family: 'Montserrat', sans-serif; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.75); line-height: 1.25; white-space: nowrap; text-align: center; }
.route-tag  { font-family: 'Montserrat', sans-serif; font-size: .5rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.22); margin-top: .2rem; text-align: center; }
.route-stop--start .route-name, .route-stop--end .route-name { color: #fff; }
.route-stop--start .route-tag { color: var(--sky); }
.route-stop--end   .route-tag { color: var(--skylight); }
.route-line {
  flex: 1; position: relative; height: 2px;
  background: rgba(66,170,255,.2);
  margin: 0 6px; margin-bottom: 2rem;
}
.route-line::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    rgba(66,170,255,.45) 0, rgba(66,170,255,.45) 8px,
    transparent 8px, transparent 16px);
}
.route-km {
  position: absolute; top: -1.3rem; left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: .5rem; color: rgba(255,255,255,.18); white-space: nowrap;
}
.route-total {
  font-family: 'Montserrat', sans-serif;
  font-size: .56rem; color: rgba(255,255,255,.16);
  margin-top: 1.4rem; text-align: center;
}


/* ============================================================
   GALERIE (index.html)
   ============================================================ */
.aventure-gallery { background: var(--deep); padding: 4px; overflow: hidden; }
.ag-top    { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; height: 480px; overflow: hidden; margin-bottom: 4px; }
.ag-col    { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }
.ag-bottom { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; height: 220px; overflow: hidden; }
.ag-photo  { position: relative; overflow: hidden; background: #0a1a3a; }
.ag-top > .ag-photo { height: 480px; }
.ag-col .ag-photo   { flex: 1; min-height: 0; }
.ag-bottom .ag-photo, .ag-dark { height: 220px; }
.ag-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s, filter .5s;
  filter: brightness(.78) saturate(1.1);
}
.ag-photo:hover img { transform: scale(1.06); filter: brightness(.92) saturate(1.2); }
.ag-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,21,46,.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.ag-overlay-mini {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .8rem 1rem;
  background: linear-gradient(to top, rgba(7,21,46,.8), transparent);
}
.ag-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .55rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sky); display: inline-block; margin-bottom: .5rem;
}
.ag-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.2; max-width: 380px;
}
.ag-dark { background: var(--navy); }
.ag-stat-block { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 1.5rem; gap: 1.2rem; }
.ag-stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--skylight), var(--sky));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.ag-stat-label { font-family: 'Montserrat', sans-serif; font-size: .56rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #navbar          { padding: .8rem 2.5rem; }
  #navbar.scrolled { padding: .5rem 2.5rem; }
  .hero-content    { padding: 3rem 2.5rem 5rem; gap: 3rem; }
  .route-bar       { padding: 2rem 2.5rem; }
  .page-wrap       { padding: 6rem 2.5rem 4rem; }
  footer           { padding: 2rem 2.5rem; }
}

@media (max-width: 900px) {
  #navbar          { padding: .8rem 1.5rem; }
  .nav-links       { display: none; }
  .nav-toggle      { display: flex; }

  .hero-content    { grid-template-columns: 1fr; padding: 3rem 1.5rem 4rem; }
  .hero-card       { display: none; }

  .route-bar       { padding: 2rem 1.5rem; }
  .route-track     { flex-direction: column; align-items: flex-start; }
  .route-stop      { flex-direction: row; gap: 1rem; }
  .route-line      { width: 2px; height: 28px; flex: none; margin: 0 0 2rem 7px; }
  .route-line::after { background: repeating-linear-gradient(180deg, rgba(66,170,255,.45) 0, rgba(66,170,255,.45) 6px, transparent 6px, transparent 12px); }
  .route-name      { text-align: left; }

  .ag-top          { grid-template-columns: 1fr; height: 300px; }
  .ag-col          { flex-direction: row; }
  .ag-bottom       { grid-template-columns: 1fr 1fr; }

  .page-wrap       { padding: 5.5rem 1.5rem 3rem; }
  .page-hero       { grid-template-columns: 1fr; gap: 2rem; }
  .page-photo      { height: 240px; }

  .cards-grid      { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr 1fr; }
  .two-cols        { grid-template-columns: 1fr; }
  .col-block:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }

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

  footer           { padding: 1.5rem; flex-direction: column; text-align: center; }
  .footer-sep      { display: none; }
  .footer-links    { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-title      { font-size: 2.5rem; }
  .hero-actions    { flex-direction: column; }
  .ag-bottom       { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
}
