/* ============================================================
   Vis Rent — non-critical stylesheet
   Inherits CSS variables from inline critical CSS in index.html
   ============================================================ */

::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   Scroll indicator (hero)
   ============================================================ */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 12px;
  display: grid; place-items: flex-start center; padding-top: 6px;
}
.scroll-indicator span {
  display: block; width: 3px; height: 8px;
  background: var(--white); border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%{transform:translateY(0);opacity:1}
  60%{transform:translateY(12px);opacity:0}
  100%{transform:translateY(0);opacity:0}
}

/* ============================================================
   Page hero (subpages — shorter than home hero)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  background: #0a1929 center/cover no-repeat;
  padding: 120px 0 56px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,25,41,.55) 0%, rgba(10,25,41,.85) 100%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 10px 0 14px;
  max-width: 18ch;
}
.page-hero p.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 56ch;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.breadcrumb {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--gold); }

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   Section primitives
   ============================================================ */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-light { background: var(--sand); }
.section-cream { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.section-navy::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 80% 10%, rgba(66,165,184,.18) 0%, transparent 60%);
}
.section-navy > .container { position: relative; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); position: relative; }
.section-head.left { text-align: left; margin-left: 0; }
.kicker-dark { color: var(--sea); }
.section-head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.08; letter-spacing: -.015em;
  margin: 12px 0 18px;
}
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }
.section-sub-light { color: rgba(255,255,255,.72); }

.subsection-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 0 0 24px;
  display: flex; align-items: baseline; gap: 14px;
}
.subsection-title::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.section-navy .subsection-title::after { background: rgba(255,255,255,.12); }

/* ============================================================
   Category cards (homepage overview)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s; z-index: 0; }
.cat-card:hover .bg { transform: scale(1.05); }
.cat-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,37,64,0) 30%, rgba(11,37,64,.9) 100%);
}
.cat-body { position: relative; z-index: 2; padding: 26px 28px; }
.cat-name {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin: 0 0 6px; letter-spacing: -.01em;
}
.cat-desc { font-size: 14px; color: rgba(255,255,255,.85); margin: 0 0 14px; }
.cat-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); font-weight: 600;
}
.cat-arrow::after {
  content: "→";
  transition: transform .3s;
}
.cat-card:hover .cat-arrow::after { transform: translateX(4px); }

/* ============================================================
   Fleet & vehicle cards (shared base)
   ============================================================ */
.fleet-grid, .vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.boat-card, .vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.6,.2,1), box-shadow .35s;
  position: relative;
}
.boat-card:hover, .vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.boat-media, .vehicle-media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2);
}
.boat-media img, .vehicle-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.boat-card:hover .boat-media img,
.vehicle-card:hover .vehicle-media img { transform: scale(1.04); }

.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  z-index: 1;
}

.boat-body, .vehicle-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.boat-title, .vehicle-title {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin: 0; letter-spacing: -.01em;
}
.boat-tagline, .vehicle-meta {
  color: var(--muted); font-size: 14px; margin: -6px 0 4px;
}

.boat-specs, .vehicle-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.spec { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.spec-value { font-size: 14px; font-weight: 500; color: var(--navy); }

.boat-pricing, .vehicle-pricing {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.price-from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.price-amount {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.price-unit { font-size: 13px; color: var(--muted); }

.boat-card .btn, .vehicle-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   Jet-Ski grid (navy section)
   ============================================================ */
.jet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.jet-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: background .25s, transform .25s;
}
.jet-card:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.jet-title { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 8px; }
.jet-engine { color: var(--sea-2); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.jet-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 22px; }
.jet-price { background: rgba(255,255,255,.05); border-radius: 12px; padding: 14px 10px; text-align: center; }
.jet-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.jet-price-amount { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--white); }

.includes-strip {
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.includes-strip h3 {
  font-family: var(--sans); font-size: 12px; text-transform: uppercase;
  letter-spacing: .15em; color: var(--gold);
  margin: 0 0 14px; font-weight: 600;
}
.includes-strip ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 20px 32px; }
.includes-strip li { position: relative; padding-left: 22px; font-size: 14px; color: rgba(255,255,255,.85); }
.includes-strip li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ============================================================
   Tour / Transfer image cards
   ============================================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.tour-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow);
  transition: transform .35s, box-shadow .35s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tour-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s; z-index: 0;
}
.tour-card:hover .bg { transform: scale(1.05); }
.tour-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,37,64,0) 30%, rgba(11,37,64,.9) 100%);
}
.tour-card.featured::after {
  content: "★"; position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--navy);
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  font-size: 14px; font-weight: 700;
}
.tour-body { position: relative; z-index: 2; padding: 28px 30px; }
.tour-name {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  margin: 0 0 8px; letter-spacing: -.01em;
}
.tour-meta {
  display: flex; gap: 14px; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.78); margin-bottom: 12px;
}
.tour-highlights {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tour-highlights li {
  font-size: 12px; padding: 4px 10px;
  background: rgba(255,255,255,.12);
  border-radius: 999px; backdrop-filter: blur(4px);
}
.tour-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.tour-price { display: flex; align-items: baseline; gap: 4px; }
.tour-price strong { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.tour-price .unit { font-size: 12px; color: rgba(255,255,255,.7); }
.tour-cta .btn { padding: 12px 20px; font-size: 12px; }

/* ============================================================
   Accommodation cards
   ============================================================ */
.acc-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.acc-filter button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 999px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  cursor: pointer;
  letter-spacing: .04em;
  transition: all .2s;
}
.acc-filter button:hover { background: var(--white); border-color: var(--navy); }
.acc-filter button[aria-pressed="true"] {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.acc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.acc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.acc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.acc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.acc-card:hover .acc-media img { transform: scale(1.04); }
.acc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.acc-location {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--sea); font-weight: 600;
}
.acc-name {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin: -4px 0 0; letter-spacing: -.01em;
}
.acc-meta {
  display: flex; gap: 14px; font-size: 13px;
  color: var(--muted); padding: 10px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.acc-meta span { display: inline-flex; align-items: center; gap: 4px; }
.acc-features { display: flex; flex-wrap: wrap; gap: 6px; }
.acc-features span {
  font-size: 11px; padding: 4px 10px;
  background: var(--sand); color: var(--navy);
  border-radius: 999px;
}
.acc-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: auto; padding-top: 8px;
}
.acc-price { display: flex; align-items: baseline; gap: 4px; }
.acc-price strong { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--navy); }
.acc-price .unit { font-size: 12px; color: var(--muted); }
.acc-footer .btn { padding: 10px 18px; font-size: 12px; }

/* ============================================================
   Transfer route list (compact)
   ============================================================ */
.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.route-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.route-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin: 0; color: var(--navy); letter-spacing: -.01em;
}
.route-meta {
  display: flex; gap: 16px; font-size: 12px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .06em;
}
.route-notes { color: var(--muted); font-size: 14px; margin: 0; }
.route-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 12px; border-top: 1px solid var(--line);
}
.route-price { display: flex; align-items: baseline; gap: 4px; }
.route-price strong { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--navy); }
.route-price .unit { font-size: 12px; color: var(--muted); }

/* Taxi panel */
.taxi-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  box-shadow: var(--shadow);
}
.taxi-cta { display: flex; flex-direction: column; gap: 14px; }
.taxi-phone {
  font-family: var(--serif); font-size: 32px;
  color: var(--navy); font-weight: 500; margin: 0;
}
.taxi-routes { list-style: none; margin: 0; padding: 0; }
.taxi-routes li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.taxi-routes li:last-child { border-bottom: 0; }
.taxi-routes .from-to { color: var(--navy); font-weight: 500; }
.taxi-routes .price { color: var(--sea); font-weight: 600; }

/* ============================================================
   About
   ============================================================ */
.about-wrap {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about-copy h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -.015em;
  margin: 14px 0 20px;
}
.about-copy p {
  color: var(--muted); font-size: 17px;
  max-width: 56ch; margin: 0 0 22px;
}
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 16px; }
.stat { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-top: 1px solid var(--line); }
.stat strong { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--navy); line-height: 1; }
.stat span { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-item {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.info-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); font-weight: 600;
}
.info-item a, .info-item span:not(.info-label) {
  font-family: var(--serif); font-size: 22px; color: var(--white);
}
.info-item a:hover { color: var(--gold); }

.contact-form {
  display: flex; flex-direction: column; gap: 18px;
  background: rgba(255,255,255,.04);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans); font-size: 15px;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 6px; align-self: flex-start; }
.form-status { font-size: 14px; margin: 0; min-height: 20px; color: var(--gold); }
.form-status.error { color: #ff8a8a; }

.map-embed {
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 7;
  background: var(--navy-2);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Terms page
   ============================================================ */
.terms-wrap { max-width: 760px; margin: 0 auto; }
.terms-intro { color: var(--muted); font-size: 17px; margin: 0 0 40px; }
.terms-section { margin-bottom: 36px; }
.terms-section h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin: 0 0 12px; color: var(--navy);
}
.terms-section p { color: var(--muted); margin: 0; line-height: 1.7; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-wrap { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-tagline { font-size: 14px; max-width: 32ch; line-height: 1.6; margin: 0; }
.footer-col h4 {
  font-family: var(--sans); font-size: 11px;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--white); margin: 0 0 16px; font-weight: 600;
}
.footer-col a { display: block; font-size: 14px; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-credit a { color: var(--gold); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-indicator span { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 980px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16 / 10; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .taxi-panel { grid-template-columns: 1fr; padding: 28px; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .jet-price-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .container { padding: 0 20px; }
  .page-hero { min-height: 44vh; padding: 100px 0 44px; }
}
@media (max-width: 480px) {
  .contact-form { padding: 24px; }
  .boat-body, .vehicle-body { padding: 22px; }
  .tour-body { padding: 22px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .acc-filter { gap: 6px; }
  .acc-filter button { padding: 8px 14px; font-size: 12px; }
}

/* Body lock when mobile nav open */
body.nav-open { overflow: hidden; }
