/* =========================================================
   TonkaJetSkiClub.com — Stylesheet
   Palette:
     --navy       #0B2545  (headers/footer, primary text on light)
     --deep-blue  #14395E  (secondary surfaces)
     --tonka-aqua #00B4D8  (primary accent / links / CTA)
     --sun-gold   #FFB703  (secondary CTA / highlights)
     --foam       #F5FAFD  (alt section background)
     --white      #FFFFFF
     --slate      #4A5568  (body copy)
   Type:
     Display/Headings: 'Poppins' (600/700)
     Body/UI:          'Inter'   (400/500/600)
   ========================================================= */

:root {
  --navy: #0B2545;
  --deep-blue: #14395E;
  --tonka-aqua: #00B4D8;
  --tonka-aqua-dark: #0090AD;
  --sun-gold: #FFB703;
  --sun-gold-dark: #E6A200;
  --foam: #F5FAFD;
  --white: #FFFFFF;
  --slate: #4A5568;
  --slate-light: #7B8AA0;
  --border: #E2E9F1;

  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 12px 30px rgba(11, 37, 69, 0.14);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.18);

  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

a {
  color: var(--tonka-aqua-dark);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tonka-aqua-dark);
  margin-bottom: 0.75em;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--sun-gold);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--sun-gold);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--sun-gold-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-aqua {
  background: var(--tonka-aqua);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-aqua:hover { background: var(--tonka-aqua-dark); box-shadow: var(--shadow-md); }

.btn-navy-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-navy-outline:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-word-tonka { color: var(--navy); }
.brand-word-jet { color: var(--tonka-aqua-dark); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.96rem;
}
.main-nav a:hover { color: var(--tonka-aqua-dark); text-decoration: none; }
.main-nav a.active { color: var(--tonka-aqua-dark); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav a { padding: 14px 24px; width: 100%; border-top: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .nav-cta .btn-navy-outline { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-blue) 55%, var(--tonka-aqua-dark) 130%);
  color: var(--white);
  overflow: hidden;
  padding: 90px 0 130px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 { color: var(--white); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sun-gold);
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.hero-art { position: relative; }

.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  line-height: 0;
  z-index: 1;
}
.wave-divider svg { width: 100%; height: auto; display: block; }

/* Jetski SVG animation */
.jetski-scene {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.jetski-scene svg { width: 100%; height: auto; }
.js-rider {
  animation: bob 3.2s ease-in-out infinite;
  transform-origin: center;
}
.js-wake {
  animation: wake-move 2.4s linear infinite;
  transform-origin: center;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}
@keyframes wake-move {
  0% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 0.8; transform: translateX(-6px); }
  100% { opacity: 0.35; transform: translateX(0); }
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-alt { background: var(--foam); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section-navy h2 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }

/* Two-path chooser */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.choice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.choice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.choice-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--foam);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--tonka-aqua-dark);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: left;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tonka-aqua), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-card p { font-size: 0.92rem; color: var(--slate-light); margin: 0; }

/* Location strip */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.location-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--white);
  isolation: isolate;
}
.location-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-grad, linear-gradient(160deg, var(--navy), var(--tonka-aqua-dark)));
  z-index: -1;
}
.location-card h3 { color: var(--white); margin-bottom: 4px; }
.location-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--tonka-aqua-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; margin-top: 12px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--tonka-aqua); border-color: var(--tonka-aqua); text-decoration: none; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--deep-blue));
  color: var(--white);
  padding: 64px 0 90px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto; }

/* ---------- Pricing page ---------- */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: var(--foam);
  border-radius: 999px;
  padding: 6px;
  max-width: 320px;
  margin: 0 auto 48px;
}
.pricing-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--slate);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pricing-toggle button.active {
  background: var(--navy);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--tonka-aqua);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: -14px; left: 30px;
  background: var(--sun-gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 { margin-bottom: 4px; }
.price-tagline { color: var(--slate-light); font-size: 0.88rem; margin-bottom: 20px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--slate-light); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  flex: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 12px;
  color: var(--slate);
}
.price-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--tonka-aqua-dark); }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.addon-card {
  background: var(--foam);
  border-radius: var(--radius-md);
  padding: 22px;
}
.addon-card .price { font-family: var(--font-display); font-weight: 700; color: var(--tonka-aqua-dark); float: right; }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--tonka-aqua-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--slate); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--foam);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-row .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--tonka-aqua-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-info-row h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--navy); }
.contact-info-row p, .contact-info-row a { margin: 0; font-size: 0.92rem; }

.map-embed {
  margin-top: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--tonka-aqua);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.8rem; color: var(--slate-light); margin-top: 4px; }
.form-note { font-size: 0.85rem; color: var(--slate-light); margin-top: 14px; }

.form-success {
  display: none;
  background: #EAFBF3;
  border: 1px solid #B7E9D0;
  color: #14532D;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.form-success.visible { display: block; }

/* ---------- Scheduling portal ---------- */
.schedule-shell {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.step-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.step-progress .step {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-radius: 999px;
  background: var(--foam);
  color: var(--slate-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  border: 1.5px solid var(--border);
}
.step-progress .step.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.step-progress .step.done {
  background: var(--tonka-aqua);
  color: var(--white);
  border-color: var(--tonka-aqua);
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.booking-step { display: none; }
.booking-step.active { display: block; }

.ski-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
}
.ski-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
}
.ski-option:hover { border-color: var(--tonka-aqua); }
.ski-option.selected { border-color: var(--tonka-aqua); background: #EFFBFE; }
.ski-option input { position: absolute; opacity: 0; }
.ski-option h4 { margin: 0 0 4px; font-size: 1rem; color: var(--navy); }
.ski-option .ski-price { color: var(--tonka-aqua-dark); font-weight: 700; font-family: var(--font-display); }
.ski-option .ski-desc { font-size: 0.82rem; color: var(--slate-light); margin: 4px 0 0; }

.duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.duration-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.duration-option:hover { border-color: var(--tonka-aqua); }
.duration-option.selected { border-color: var(--tonka-aqua); background: #EFFBFE; }
.duration-option input { position: absolute; opacity: 0; pointer-events: none; }
.duration-option span.sub { display: block; font-weight: 400; font-size: 0.75rem; color: var(--slate-light); }

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

.summary-card {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.summary-card h3 { color: var(--white); margin-bottom: 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.summary-row .label { color: rgba(255,255,255,0.6); }
.summary-row .value { color: var(--white); font-weight: 600; text-align: right; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.summary-total .label { font-family: var(--font-display); font-weight: 600; color: var(--white); }
.summary-total .value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--sun-gold); }
.summary-empty { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

.booking-confirmation {
  text-align: center;
  padding: 20px 0;
}
.booking-confirmation .check-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #EAFBF3;
  color: #0F9D58;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirm-detail-list {
  text-align: left;
  max-width: 380px;
  margin: 24px auto;
  background: var(--foam);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.confirm-detail-list .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; }
.confirm-detail-list .row .label { color: var(--slate-light); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small-note { font-size: 0.82rem; color: var(--slate-light); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .jetski-scene { max-width: 320px; margin: 40px auto 0; }
  .choice-grid, .pricing-grid, .addon-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .schedule-shell { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .price-card.featured { transform: none; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ski-grid { grid-template-columns: 1fr; }
  .duration-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
}
