:root {
  --color-ink: #15304f;
  --color-ink-deep: #07192e;
  --color-ocean: #1172bf;
  --color-ocean-strong: #19a4ff;
  --color-sky: #d7ebfb;
  --color-foam: #f6fbff;
  --color-white: #ffffff;
  --color-border: rgba(12, 44, 82, 0.1);
  --color-shadow: rgba(6, 24, 44, 0.12);
  --color-shadow-strong: rgba(6, 24, 44, 0.22);
  --color-success: #1e9a68;
  --color-error: #d2555f;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
  --width-shell: min(1240px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(18, 120, 204, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(12, 72, 128, 0.08), transparent 26%),
    linear-gradient(180deg, #eff5fb 0%, #f8fbff 36%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: clip;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 78px;
  }

  .section-shell {
    width: calc(100vw - 28px);
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  h2 {
    font-size: clamp(2rem, 7.1vw, 2.65rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.14rem, 5.2vw, 1.42rem);
    line-height: 1.16;
  }

  .section-copy,
  .hero-home__description,
  .page-hero__copy p,
  .final-cta__card p:last-of-type,
  .generic-page__content {
    font-size: 1rem;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-main {
  overflow: clip;
}

.section-shell {
  width: var(--width-shell);
  margin: 0 auto;
  padding: 0 0 118px;
}

.section-heading {
  max-width: none;
  min-width: 0;
  margin-bottom: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-ocean);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--color-ink-deep);
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.1vw, 3.3rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

p {
  margin: 0;
}

.section-copy,
.hero-home__description,
.page-hero__copy p,
.final-cta__card p:last-of-type,
.generic-page__content {
  font-size: 1.06rem;
  color: rgba(21, 48, 79, 0.78);
}

.section-copy {
  max-width: 64rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--color-white);
  background: linear-gradient(135deg, #0d63a9, #19a4ff);
  box-shadow: 0 18px 36px rgba(17, 114, 191, 0.28);
}

.button--ghost {
  color: var(--color-ink-deep);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 58, 104, 0.08);
  box-shadow: 0 16px 32px rgba(7, 26, 48, 0.08);
}

.button--block {
  width: 100%;
}

.action-set {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action-set--mobile {
  display: none;
}

.action-set .button {
  flex: 1 1 100%;
}

.action-set--desktop {
  display: none;
}

.metric-card,
.spec-card,
.contact-chip,
.status-banner,
.generic-page__content,
.narrative-card,
.offer-card,
.repair-card,
.trust-item,
.boat-card,
.hero-home__panel,
.final-cta__card,
.contact-panel__card,
.lead-form__form,
.boat-specs__pricing {
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  box-shadow: 0 26px 60px rgba(7, 26, 48, 0.08);
  backdrop-filter: blur(14px);
}

.metric-card {
  padding: 22px;
}

.metric-card strong {
  display: block;
  color: var(--color-ink-deep);
  font-size: 1.5rem;
}

.metric-card span {
  color: rgba(15, 39, 71, 0.72);
  font-size: 0.92rem;
}

.metric-card--light {
  background: linear-gradient(180deg, #ffffff, #f3f9ff);
}

.status-banner {
  margin-bottom: 34px;
  padding: 18px 22px;
  font-weight: 700;
}

.status-banner--success {
  color: var(--color-success);
  border-color: rgba(30, 154, 104, 0.18);
}

.status-banner--error {
  color: var(--color-error);
  border-color: rgba(210, 85, 95, 0.18);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-ink-deep);
  color: var(--color-white);
}

.skip-link:focus {
  top: 16px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .trip-format-cards__grid [data-reveal],
  .trip-steps__grid [data-reveal],
  .trip-packages__grid [data-reveal],
  .benefits-grid__cards [data-reveal],
  .trust-block__items [data-reveal],
  .trust-block__stats [data-reveal],
  .boats-showcase__grid [data-reveal],
  .trip-story__problems [data-reveal],
  .services-grid__cards [data-reveal],
  .offer-cards__grid [data-reveal],
  .repairs-highlight__grid [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.generic-page__content {
  padding: 34px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(2.5rem, 10vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.95rem, 7.8vw, 2.75rem);
  }
}

@media (min-width: 768px) {
  .action-set .button {
    flex: 0 0 auto;
  }

  .action-set--desktop {
    display: flex;
  }
}
