/* Northeast Coach Rental — site stylesheet
   Palette and fonts carried over from the original design (navy / red / yellow, Oswald + Source Sans 3). */

:root {
  --navy: #1a2254;
  --navy-deep: #0f1535;
  --red: #c0272d;
  --red-dark: #a01f24;
  --yellow: #e6bc09;
  --white: #ffffff;
  --light-gray: #f4f5f8;
  --text-dark: #1a1a2e;
  --text-mid: #464a5c;
  --text-secondary: #8a7440;
  --line: #dfe2ec;
  --max: 1180px;
  --head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; pointer-events: none; }
a { color: var(--navy); }
a:hover { color: var(--red); }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 500; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; }
p + p { margin-top: 1em; }
ul, ol { padding-left: 1.2em; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.main-nav :focus-visible, .section--navy :focus-visible, .cta-band :focus-visible, footer :focus-visible, .page-head :focus-visible, .hero :focus-visible { outline-color: var(--yellow); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--yellow); color: var(--navy-deep); padding: 10px 16px;
  font-family: var(--head); text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.icon { width: 1.4em; height: 1.4em; flex-shrink: 0; }

/* ── TOP BAR ── */
.top-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.top-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-png { height: 42px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .brand { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.logo-text .brand span { color: var(--red); }
.logo-text .tagline { font-size: 11px; color: var(--text-secondary); letter-spacing: .6px; text-transform: uppercase; }
.top-ctas { display: flex; gap: 12px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 13px 28px; font-family: var(--head); font-size: 14px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase; text-decoration: none; text-align: center;
  cursor: pointer; border: 2px solid transparent; transition: background .2s, color .2s, border-color .2s;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: var(--white); color: var(--navy); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ── NAV ── */
.main-nav { background: var(--navy); position: sticky; top: 0; z-index: 60; border-bottom: 3px solid var(--red); }
.nav-inner { max-width: 1400px; margin: 0 auto; }
.nav-toggle {
  display: none; width: 100%; padding: 14px 24px; background: none; border: 0; color: var(--white);
  font-family: var(--head); font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase; text-align: left; cursor: pointer;
}
.nav-links { display: flex; list-style: none; padding: 0; }
.nav-links li { flex: 1 1 0; border-left: 1px solid rgba(255,255,255,.16); }
.nav-links li:first-child { border-left: 0; }
.nav-links a {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 60px; padding: 8px 12px; color: var(--white); text-decoration: none;
  font-family: var(--head); font-size: 15px; font-weight: 500; line-height: 1.2; letter-spacing: .3px;
  transition: background .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-links a[aria-current="page"] { background: rgba(255,255,255,.12); box-shadow: inset 0 -4px 0 var(--yellow); }
.nav-links .nav-login a { color: var(--yellow); }

/* ── HERO ── */
.hero {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(15,21,53,.94) 30%, rgba(15,21,53,.45) 100%),
    url('../images/banner.jpg') center/cover no-repeat;
  background-color: var(--navy);
}
.hero-inner { max-width: 720px; padding: 104px 0 112px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 58ch; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Route motif: dots joined by a dashed line */
.route { list-style: none; padding: 0; display: flex; }
.route li {
  --dot-bg: var(--navy-deep); --route-line: var(--yellow); --route-text: var(--white);
  position: relative; flex: 1; text-align: center; padding-top: 32px;
  font-family: var(--head); font-size: 16px; font-weight: 500; color: var(--route-text);
}
.route li::before {
  content: ""; position: absolute; top: 0; left: 50%; width: 20px; height: 20px; margin-left: -10px;
  border-radius: 50%; background: var(--dot-bg); border: 3px solid var(--yellow); z-index: 1;
}
.route li:not(:last-child)::after {
  content: ""; position: absolute; top: 9px; left: 50%; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--route-line) 0 8px, transparent 8px 14px);
}
.route-band { background: var(--navy-deep); padding: 26px 0 30px; }
.route-label { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 18px; text-align: center; }

/* ── QUICK LINKS ── */
.quick-links { display: grid; grid-template-columns: 1fr 1fr; }
.quick-card { display: flex; gap: 22px; align-items: flex-start; padding: 44px max(24px, calc((100vw - var(--max)) / 2 + 24px)); }
.quick-card:first-child { background: var(--navy); color: var(--white); padding-right: 40px; }
.quick-card:last-child { background: var(--red); color: var(--white); padding-left: 40px; }
.quick-card .icon { width: 44px; height: 44px; color: var(--yellow); }
.quick-card:last-child .icon { color: var(--white); }
.quick-card h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.quick-card p { color: rgba(255,255,255,.88); margin-bottom: 14px; max-width: 42ch; }
.quick-card a { color: var(--white); font-family: var(--head); letter-spacing: 1.2px; text-transform: uppercase; font-size: 14px; border-bottom: 2px solid currentColor; text-decoration: none; padding-bottom: 2px; }
.quick-card a:hover { color: var(--yellow); }

/* ── SECTIONS ── */
.section { padding: 84px 0; }
.section--tint { background: var(--light-gray); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.88); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head p { color: var(--text-mid); font-size: 1.08rem; }
.section--navy .section-head p { color: rgba(255,255,255,.8); }
.lead { font-size: 1.15rem; color: var(--text-mid); }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split--top { align-items: start; }
.split-img { position: relative; }
.split-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--light-gray); }
.split-img::after {
  content: ""; position: absolute; right: -14px; bottom: -14px; width: 55%; height: 55%;
  border: 4px solid var(--red); z-index: -1;
}
.text-link { font-family: var(--head); letter-spacing: 1px; text-transform: uppercase; font-size: 14px; color: var(--red); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.text-link:hover { color: var(--navy); border-color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ── SERVICES ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; }
.service { border-top: 3px solid var(--navy); padding-top: 20px; }
.service .icon { width: 34px; height: 34px; color: var(--red); margin-bottom: 14px; }
.service p { color: var(--text-mid); font-size: 1rem; }

/* ── FLEET ── */
.seat-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.25); }
.seat { padding: 30px 24px; text-align: center; border-left: 1px solid rgba(255,255,255,.25); }
.seat:first-child { border-left: 0; }
.seat b { display: block; font-family: var(--head); font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: var(--yellow); font-weight: 700; }
.seat span { display: block; margin-top: 6px; font-size: .95rem; color: rgba(255,255,255,.85); }
.makes { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.makes li { border: 1px solid rgba(255,255,255,.4); padding: 6px 14px; font-family: var(--head); letter-spacing: .5px; color: var(--white); }

.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .icon { width: 30px; height: 30px; color: var(--red); margin-top: 2px; }
.feature-list strong { display: block; font-family: var(--head); font-weight: 500; font-size: 1.15rem; color: var(--navy); }
.feature-list span { color: var(--text-mid); font-size: 1rem; }

/* ── WHY US ── */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.reason { border-left: 4px solid var(--yellow); padding-left: 22px; }
.reason p { color: var(--text-mid); }

/* ── REGIONS ── */
.region-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.region-list li { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.region-list strong { font-family: var(--head); font-weight: 500; font-size: 1.2rem; color: var(--navy); }
.region-list span { color: var(--text-mid); }

/* ── STEPS ── */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.steps li { counter-increment: step; border-top: 3px solid var(--red); padding-top: 18px; }
.steps li::before { content: counter(step); display: block; font-family: var(--head); font-size: 2.4rem; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 10px; }
.steps h3 { font-size: 1.2rem; }
.steps p { color: var(--text-mid); font-size: 1rem; }

/* ── FAQ ── */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--head); font-size: 1.2rem; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 40px 22px 0; color: var(--text-mid); }

/* ── CTA BAND ── */
.cta-band { background: var(--red); color: var(--white); padding: 64px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 56ch; }
.cta-band .btn-row { margin-top: 0; }

/* ── INNER PAGE HEADER ── */
.page-head {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(15,21,53,.92) 35%, rgba(15,21,53,.6) 100%),
    url('../images/banner.jpg') center/cover no-repeat;
  background-color: var(--navy);
  padding: 56px 0 60px;
}
.page-head h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); margin: 10px 0 14px; }
.page-head p { color: rgba(255,255,255,.88); max-width: 62ch; font-size: 1.1rem; }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; font-size: .92rem; color: rgba(255,255,255,.75); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: var(--yellow); }

/* ── PROSE / CONTENT BLOCKS ── */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 14px 0 0 1.2em; }
.prose li + li { margin-top: 6px; }
.check-list { list-style: none; padding: 0; margin-top: 16px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li + li { margin-top: 10px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 10px;
  border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); transform: rotate(-45deg) scale(.8);
}
.notice { background: var(--light-gray); border-left: 4px solid var(--yellow); padding: 18px 22px; color: var(--text-mid); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: var(--white); }
.stat { padding: 26px 20px; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-family: var(--head); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .95rem; color: var(--text-mid); }

/* Fleet table */
.table-wrap { overflow-x: auto; }
table.spec { width: 100%; border-collapse: collapse; min-width: 560px; }
table.spec th, table.spec td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.spec thead th { background: var(--navy); color: var(--white); font-family: var(--head); font-weight: 500; letter-spacing: .5px; }
table.spec tbody th { font-family: var(--head); font-weight: 500; color: var(--navy); font-size: 1.15rem; white-space: nowrap; }
.make-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.make-grid > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.make-grid p { color: var(--text-mid); }

/* Member panels */
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member-slot { border: 2px dashed var(--line); padding: 28px; min-height: 160px; display: flex; flex-direction: column; justify-content: center; color: var(--text-mid); }
.member-slot strong { font-family: var(--head); font-weight: 500; font-size: 1.15rem; color: var(--navy); }

/* ── VEHICLES ── */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 34px; }
.vehicle-card { background: var(--white); color: var(--text-dark); display: flex; flex-direction: column; border-bottom: 4px solid var(--yellow); }
.vehicle-card h3 { color: var(--navy); font-size: 1.35rem; margin-bottom: 2px; }
.vehicle-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.vehicle-card .text-link { margin-top: auto; align-self: flex-start; }
.vehicle-photo { margin: 0; position: relative; aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--navy-deep), #2b3a8a); overflow: hidden; }
.vehicle-photo img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-photo.is-missing img { display: none; }
.vehicle-photo.is-missing::after { content: attr(data-initials); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 4.5rem; font-weight: 700; color: rgba(255,255,255,.3); }
.vehicle-photo.carousel .carousel-track { position: relative; width: 100%; height: 100%; }
<!--.vehicle-photo.carousel .carousel-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .3s ease; }-->
.vehicle-photo.carousel .carousel-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: linear-gradient(135deg, var(--navy-deep), #2b3a8a); opacity: 0; transition: opacity .3s ease; }
.vehicle-photo.carousel .carousel-track img.is-active { opacity: 1; }
.carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(15,21,53,.55); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; z-index: 2; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(15,21,53,.8); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; margin: 0; padding: 0; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); padding: 0; cursor: pointer; }
.carousel-dots button.is-active { background: #fff; }
.vehicle-meta { color: var(--text-secondary); font-family: var(--head); letter-spacing: .4px; margin-bottom: 10px; }
.vehicle-points { list-style: none; padding: 0; margin: 0 0 18px; color: var(--text-mid); font-size: .97rem; }
.vehicle-points li { padding: 6px 0; border-top: 1px solid var(--line); }
.vehicle { display: grid; grid-template-columns: 400px 1fr; gap: 48px; padding: 52px 0; border-top: 1px solid var(--line); align-items: start; scroll-margin-top: 90px; }
.vehicle:first-of-type { border-top: 0; padding-top: 8px; }
.vehicle h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 2px; }
.vehicle h4 { margin: 24px 0 4px; font-size: 1.1rem; }
.spec-list { margin-top: 14px; max-width: 60ch; }
.spec-list > div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { font-family: var(--head); font-weight: 500; color: var(--navy); }
.spec-list dd { color: var(--text-mid); }
table.spec tbody th a { color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--yellow); }
table.spec tbody th a:hover { color: var(--red); }

/* ── FOUNDERS ── */
.founder-list { display: grid; gap: 0; }
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 48px; padding: 52px 0; border-top: 1px solid var(--line); align-items: start; }
.founder:first-child { border-top: 0; padding-top: 8px; }
.founder-photo { margin: 0; position: sticky; top: 90px; aspect-ratio: 4 / 5; background: linear-gradient(135deg, var(--navy), #2b3a8a); border-bottom: 5px solid var(--yellow); overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo.is-missing img { display: none; }
.founder-photo.is-missing::after { content: attr(data-initials); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 4.5rem; font-weight: 700; color: rgba(255,255,255,.35); }
.founder-body { max-width: 68ch; }
.founder-body h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; margin-bottom: 4px; }
.founder-role { color: var(--text-secondary); font-family: var(--head); letter-spacing: .4px; }
.founder-company { font-family: var(--head); font-size: 1.15rem; color: var(--red); margin-bottom: 20px; }
.founder-tagline { font-style: italic; color: var(--navy); font-size: 1.1rem; margin-bottom: 18px; }
.founder-body h4 { margin: 24px 0 6px; font-size: 1.1rem; }
.founder-quote { margin-top: 24px; padding: 4px 0 4px 22px; border-left: 4px solid var(--yellow); color: var(--navy); font-size: 1.1rem; }

/* ── TRIPS ── */
.trip { padding: 44px 0; border-top: 1px solid var(--line); }
.trip:first-of-type { border-top: 0; padding-top: 0; }
.trip-meta { color: var(--text-secondary); font-family: var(--head); letter-spacing: .5px; margin-bottom: 6px; }
.trip .route { margin: 26px 0 24px; }
.trip .route li { --dot-bg: var(--white); --route-line: var(--navy); --route-text: var(--navy); font-size: 15px; }
.trip-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.trip h4 { font-size: 1.05rem; margin-bottom: 6px; }
.trip ul { color: var(--text-mid); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { margin: 0; background: linear-gradient(135deg, var(--navy), #2b3a8a); position: relative; }
.shot a { display: block; }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shot figcaption { padding: 12px 14px; background: var(--white); border: 1px solid var(--line); border-top: 0; font-size: .95rem; color: var(--text-mid); }
.shot.is-missing a { display: block; aspect-ratio: 4 / 3; pointer-events: none; }
.shot.is-missing img { display: none; }
.lightbox { border: 0; background: transparent; max-width: 94vw; max-height: 94vh; margin: auto; }
.lightbox::backdrop { background: rgba(10,14,40,.88); }
.lightbox img { max-height: 84vh; width: auto; margin: 0 auto; }
.lightbox p { color: var(--white); text-align: center; margin-top: 10px; }
.lightbox button { position: absolute; top: -6px; right: -6px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--white); color: var(--navy); font-size: 26px; line-height: 1; cursor: pointer; }

/* ── FORMS ── */
.form-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .95rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid #b9bfd3; background: var(--white); color: var(--text-dark); border-radius: 0;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--yellow); outline-offset: 0; border-color: var(--navy); }
.field small { color: var(--text-mid); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.status { padding: 14px 18px; margin-bottom: 22px; border-left: 4px solid var(--navy); background: var(--light-gray); }
.status--ok { border-color: #1f7a3d; background: #eaf6ee; }
.status--err { border-color: var(--red); background: #fbecec; }
.contact-card { background: var(--light-gray); padding: 32px; }
.contact-card h2 { font-size: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-list .icon { color: var(--red); margin-top: 3px; }
.contact-list strong { display: block; font-family: var(--head); font-weight: 500; color: var(--navy); }
.map-frame { width: 100%; height: 260px; border: 0; margin-top: 24px; background: var(--line); }
.login-box { max-width: 460px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--red); padding: 36px; }
.login-box .field + .field { margin-top: 18px; }
.login-box .btn { width: 100%; margin-top: 22px; }
.login-links { margin-top: 20px; font-size: .95rem; color: var(--text-mid); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 44px; }
footer .brand { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
footer .brand span { color: var(--yellow); }
footer .tagline { font-size: 11px; letter-spacing: .6px; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footer-brand p { margin-top: 16px; font-size: .97rem; max-width: 34ch; }
footer h2 { font-size: 1rem; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); display: inline-block; }
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: 9px; font-size: .97rem; }
footer a { color: rgba(255,255,255,.75); text-decoration: none; }
footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; text-align: center; font-size: .9rem; color: rgba(255,255,255,.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links a { font-size: 14px; padding: 8px 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; border-top: 1px solid rgba(255,255,255,.16); }
  .main-nav.open .nav-links { display: flex; }
  .nav-links li { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .nav-links a { justify-content: flex-start; padding: 14px 24px; min-height: 0; text-align: left; }
  .nav-links a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--yellow); }
  .split, .form-layout { grid-template-columns: 1fr; gap: 44px; }
  .split-img::after { display: none; }
  .service-grid, .reasons, .member-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .region-list { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr; }
  .quick-card:first-child, .quick-card:last-child { padding: 36px 24px; }
  .trip-cols { grid-template-columns: 1fr; gap: 20px; }
  .founder { grid-template-columns: 1fr; gap: 24px; }
  .vehicle { grid-template-columns: 1fr; gap: 24px; }
  .vehicle-photo { max-width: 520px; }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-photo { position: relative; top: 0; max-width: 320px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .top-bar-inner { padding: 8px 16px; }
  .top-ctas .btn-outline { display: none; }
  .logo-text .brand { font-size: 18px; }
  .hero-inner { padding: 64px 0 72px; }
  .service-grid, .reasons, .member-grid, .gallery-grid, .feature-list, .make-grid, .steps, .form-grid, .vehicle-grid { grid-template-columns: 1fr; }
  .spec-list > div { grid-template-columns: 1fr; gap: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .seat { padding: 22px 8px; }
  .region-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* vertical route */
  .route { flex-direction: column; gap: 16px; }
  .route li { text-align: left; padding: 0 0 0 36px; }
  .route li::before { left: 0; top: 2px; margin-left: 0; }
  .route li:not(:last-child)::after {
    left: 9px; top: 24px; width: 2px; height: calc(100% + 6px);
    background: repeating-linear-gradient(180deg, var(--route-line) 0 8px, transparent 8px 14px);
  }
  .login-box { padding: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
.founder-body .founder-company { margin-top: 2px; }
