/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #ffffff;
  --bg-alt: #eef0fb;
  --navy-900: #0f1a4a;
  --navy-800: #16225c;
  --navy-700: #1a3f9e;
  --teal-600: #1a3f9e;
  --turquoise: #a9b8ff;
  --purple: #8b6fef;
  --purple-dark: #7452e0;
  --ink: #0b2536;
  --ink-soft: #274453;
  --ink-mute: #5c7381;
  --cream: #f7fbfc;
  --line: rgba(11, 42, 58, 0.12);
  --shadow-soft: 0 20px 45px -20px rgba(15, 26, 74, 0.35);
  --shadow-card: 0 14px 34px -18px rgba(15, 26, 74, 0.3);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --sans: "Inter", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --hand: "Caveat", cursive;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; line-height: 1.08; letter-spacing: -0.02em; color: var(--navy-900); }
ul { list-style: none; padding: 0; }
::selection { background: var(--purple); color: #fff; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--navy-900); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.kicker {
  font-family: var(--hand);
  font-size: 1.35rem;
  color: var(--purple-dark);
  margin-bottom: .5rem;
  display: block;
}
.kicker-light { color: #ddd4ff; }
.kicker-center { text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .75rem; }
.section-title.center { text-align: center; margin-inline: auto; }
.section-lead { max-width: 56ch; margin: 0 auto 2.75rem; text-align: center; color: var(--ink-mute); font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons & links
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 999px; font-weight: 700;
  font-size: .95rem; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-coral { background: var(--purple); color: #fff; box-shadow: 0 12px 26px -10px rgba(139, 111, 239, .65); }
.btn-coral:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(116, 82, 224, .55); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy-800); color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.link-arrow { font-weight: 700; color: var(--teal-600); display: inline-block; transition: transform .3s var(--ease-out); }
.link-arrow:hover { transform: translateX(4px); }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding-block: 1.1rem;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s var(--ease-out);
}
.nav.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); box-shadow: 0 8px 24px -18px rgba(15, 26, 74,.4); padding-block: .7rem; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand, .brand-lockup { display: inline-flex; align-items: center; gap: .55rem; }
.brand-icon { width: 30px; height: 30px; flex-shrink: 0; color: #fff; transition: color .4s var(--ease-out); }
.nav.is-scrolled .brand-icon { color: var(--navy-900); }
.footer .brand-icon { width: 34px; height: 34px; color: #fff; }
.nav-brand-mark { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff; transition: color .4s var(--ease-out); }
.nav.is-scrolled .nav-brand-mark { color: var(--navy-900); }
.nav-brand-mark em { font-style: normal; color: var(--purple); }
.nav-links { display: none; gap: 1.9rem; }
.nav-links a { font-weight: 600; font-size: .95rem; color: #fff; position: relative; transition: color .4s var(--ease-out); }
.nav.is-scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--purple); transition: right .3s var(--ease-out); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: none; }
.nav-burger { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.nav-burger span { height: 2px; background: #fff; border-radius: 2px; transition: background .4s var(--ease-out), transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav.is-scrolled .nav-burger span { background: var(--navy-900); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-panel {
  position: fixed; inset: 0; z-index: 490; background: var(--navy-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.nav-mobile-panel.is-open { transform: translateY(0); }
.nav-mobile-panel a { color: #fff; font-family: var(--display); font-size: 1.6rem; font-weight: 700; }
.nav-mobile-panel .btn { margin-top: 1rem; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. Sections — hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 6rem; padding-bottom: 5rem;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 74,.55) 0%, rgba(15, 26, 74,.35) 45%, rgba(15, 26, 74,.75) 100%);
}
.hero-inner { position: relative; z-index: 1; color: #fff; max-width: 720px; }
.hero-title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin-bottom: 1.2rem; color: #fff; }
.hero-title em { font-style: italic; color: var(--purple); }
.hero-sub { font-size: 1.15rem; max-width: 52ch; color: rgba(255,255,255,.92); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: var(--turquoise); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.78); }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 90px; z-index: 2; }
.wave-divider-hero { height: 110px; }
.wave-divider-footer { position: absolute; top: -1px; bottom: auto; height: 80px; }
.footer { position: relative; }

/* =============================================================
   7. Story
   ============================================================= */
.story { position: relative; padding-block: 6rem 8rem; background: var(--bg); }
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
.story-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.story-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .6s var(--ease-out); }
.story-media:hover img { transform: scale(1.05); }
.story-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: .5rem 1rem; border-radius: 999px; font-weight: 700; font-size: .85rem; color: var(--navy-900);
}
.story-copy p { color: var(--ink-mute); margin-bottom: 1.1rem; font-size: 1.05rem; }
.story-copy h2 { margin-bottom: 1.3rem; font-size: clamp(1.8rem, 4vw, 2.5rem); }

@media (min-width: 960px) {
  .story-grid { grid-template-columns: 0.85fr 1.15fr; }
}

/* =============================================================
   8. How it works
   ============================================================= */
.how { position: relative; padding-block: 6rem 8rem; background: var(--bg-alt); }
.how-grid { display: grid; gap: 2rem; margin-top: 3rem; }
.how-step {
  position: relative; background: #fff; border-radius: var(--radius-md);
  padding: 2.4rem 2rem 2rem; box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.how-step:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -16px rgba(15, 26, 74,.35); }
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--teal-600));
  color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.how-step h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.how-step p { color: var(--ink-mute); }

@media (min-width: 960px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   9. Fleet
   ============================================================= */
.fleet { position: relative; padding-block: 6rem 8rem; background: var(--bg); }
.fleet-grid { display: grid; gap: 1.8rem; margin-top: 1rem; }
.boat-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.boat-card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px -18px rgba(15, 26, 74,.4); }
.boat-card-media { position: relative; display: block; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.boat-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.boat-card:hover .boat-card-media img { transform: scale(1.08); }
.boat-card-tag {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--purple); color: #fff; font-weight: 700; font-size: .72rem;
  padding: .4rem .8rem; border-radius: 999px; letter-spacing: .02em;
}
.boat-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.boat-card-body h3 { font-size: 1.2rem; }
.boat-card-meta { display: flex; flex-wrap: wrap; gap: .5rem .9rem; font-size: .82rem; color: var(--ink-mute); font-weight: 600; }
.boat-card-meta li::before { content: "•"; margin-right: .4rem; color: var(--teal-600); }
.boat-card-meta li:first-child::before { content: ""; margin: 0; }
.boat-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: .6rem; border-top: 1px dashed var(--line); }
.boat-card-price { font-size: .88rem; color: var(--ink-mute); }
.boat-card-price strong { color: var(--navy-900); font-size: 1.05rem; }
.fleet-note { text-align: center; color: var(--ink-mute); font-size: .82rem; margin-top: 2.5rem; }

.fleet-filters {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: center;
  gap: 1.2rem; margin: 0 0 2.2rem;
}
.field-inline { display: flex; flex-direction: column; gap: .4rem; text-align: left; }
.field-inline label { font-size: .78rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.field-inline select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .7rem 2.2rem .7rem 1rem; font: inherit; font-size: .92rem; font-weight: 600; color: var(--ink);
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c7381' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right .8rem center / 16px;
  appearance: none; -webkit-appearance: none; min-width: 210px;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field-inline select:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(139,111,239,.15); }
.filter-reset {
  font-size: .85rem; font-weight: 700; color: var(--teal-600);
  text-decoration: underline; text-underline-offset: 3px; padding-bottom: .7rem;
}
.filter-reset:hover { color: var(--purple-dark); }
.fleet-empty { text-align: center; color: var(--ink-mute); margin-bottom: 2rem; font-size: .95rem; }
.boat-card.is-hidden { display: none; }

@media (min-width: 540px) { .fleet-filters { justify-content: flex-start; } }

@media (min-width: 720px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   10. Booking / form
   ============================================================= */
.booking { position: relative; padding-block: 6rem 8rem; background: var(--bg-alt); }
.booking-grid { display: grid; gap: 3rem; }
.booking-copy p { color: var(--ink-mute); margin-bottom: 1.1rem; font-size: 1.05rem; }
.booking-copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1.2rem; }
.booking-note { font-weight: 600; color: var(--teal-600) !important; }

.booking-form { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--cream);
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(139,111,239,.15);
}
.field textarea { resize: vertical; min-height: 80px; }
.botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.field-date input[type="date"] { width: 100%; }
.field-date.is-enhanced input[type="date"] {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0;
}
.calendar {
  border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 1.1rem;
  background: var(--cream);
}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.calendar-head strong { font-family: var(--display); font-size: 1rem; text-transform: capitalize; }
.calendar-nav { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; box-shadow: 0 4px 10px -4px rgba(15, 26, 74,.3); transition: background .3s var(--ease-out), transform .25s var(--ease-out); }
.calendar-nav:hover { background: var(--teal-600); color: #fff; transform: scale(1.08); }
.calendar-nav:disabled { opacity: .35; pointer-events: none; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.calendar-weekdays span { font-size: .7rem; font-weight: 700; color: var(--ink-mute); padding-block: .3rem; }
.calendar-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .2s var(--ease-out);
}
.calendar-day:not(.is-empty):not(.is-disabled):hover { background: rgba(139,111,239,.18); transform: scale(1.08); }
.calendar-day.is-empty { visibility: hidden; }
.calendar-day.is-disabled { color: var(--line); pointer-events: none; }
.calendar-day.is-today { box-shadow: inset 0 0 0 1.5px var(--turquoise); }
.calendar-day.is-selected { background: var(--purple); color: #fff; }
.calendar-selected-label { margin-top: .8rem; font-size: .85rem; font-weight: 700; color: var(--teal-600); text-align: center; }

.btn-submit { justify-content: center; width: 100%; position: relative; }
.btn-submit.is-sending { pointer-events: none; opacity: .75; }
.form-status { font-size: .9rem; font-weight: 600; min-height: 1.4em; }
.form-status.is-success { color: #128a5e; }
.form-status.is-error { color: var(--purple-dark); }

@media (min-width: 960px) { .booking-grid { grid-template-columns: 0.9fr 1.1fr; } }

/* =============================================================
   11. Trust
   ============================================================= */
.trust { padding-block: 6rem 7rem; background: var(--bg); }
.trust-grid { display: grid; gap: 1.6rem; margin-top: 2.5rem; }
.trust-card {
  background: var(--bg-alt); border-radius: var(--radius-md); padding: 1.8rem;
  border: 1px solid var(--line);
}
.trust-card p { font-size: 1.05rem; font-style: italic; color: var(--ink-soft); margin-bottom: 1rem; }
.trust-card footer { font-size: .85rem; color: var(--ink-mute); }
@media (min-width: 960px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12. Footer
   ============================================================= */
.footer { background: var(--navy-900); color: rgba(255,255,255,.85); padding-top: 5rem; }
.footer-inner { display: grid; gap: 2.4rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand-mark { color: #fff; }
.footer-brand p { margin-top: .8rem; color: rgba(255,255,255,.65); max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-col p { margin-bottom: .55rem; font-size: .92rem; }
.footer-col a:hover { color: var(--turquoise); }
.footer-bottom { padding-block: 1.4rem 2rem; font-size: .8rem; color: rgba(255,255,255,.5); }
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; } }

/* =============================================================
   13. Boat modal
   ============================================================= */
.boat-modal {
  border: none; border-radius: var(--radius-lg); padding: 0; width: min(920px, 92vw);
  max-height: 88vh; box-shadow: 0 40px 80px -30px rgba(15, 26, 74,.5);
  overflow: hidden;
}
.boat-modal::backdrop { background: rgba(15, 26, 74,.6); backdrop-filter: blur(4px); }
.boat-modal[open] { display: flex; flex-direction: column; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy-900);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.4);
}
.modal-gallery {
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory;
  overflow-y: visible; padding: 8px; background: var(--ink);
}
.modal-gallery img {
  scroll-snap-align: start; flex: 0 0 78%; max-width: 420px;
  aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm);
}
.modal-body { padding: 1.8rem 2rem 2.2rem; overflow-y: auto; }
.modal-body h3 { font-size: 1.6rem; margin: .6rem 0 .9rem; }
.modal-body > p { color: var(--ink-mute); margin-bottom: 1.2rem; }
.modal-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .6rem 1.2rem; margin-bottom: 1.2rem; }
.modal-specs li { font-size: .9rem; color: var(--ink-mute); }
.modal-specs li strong { display: block; color: var(--navy-900); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.modal-included { font-size: .88rem; background: var(--bg-alt); padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; }
.modal-pricing { width: 100%; border-collapse: collapse; margin-bottom: 1.6rem; font-size: .92rem; }
.modal-pricing th { padding: 0 .2rem .5rem; text-align: right; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-mute); border-bottom: 1.5px solid var(--line); }
.modal-pricing th:first-child { text-align: left; }
.modal-pricing td { padding: .55rem .2rem; border-bottom: 1px dashed var(--line); text-align: right; }
.modal-pricing td:first-child { text-align: left; color: var(--ink-mute); }
.modal-pricing td:last-child { font-weight: 700; color: var(--navy-900); }

/* =============================================================
   14. Responsive — base breakpoints
   ============================================================= */
@media (min-width: 540px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

/* =============================================================
   15. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .story-media img, .boat-card-media img { transition: none; }
}
