@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #17303f;
  --muted: #5d6f79;
  --line: #d8e5e8;
  --paper: #ffffff;
  --mist: #f5fafb;
  --sea: #0f7c80;
  --sea-dark: #0b5961;
  --lagoon: #2fb7a7;
  --sun: #f28d52;
  --whatsapp: #25d366;
  --shadow: 0 16px 40px rgba(23, 48, 63, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 229, 232, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand small,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--sea);
  border-bottom-color: var(--sea);
}

.nav-link--lang {
  color: var(--sea-dark);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

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

.button--small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

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

.button--primary {
  background: var(--sea);
  color: white;
  box-shadow: 0 10px 24px rgba(15, 124, 128, 0.22);
}

.button--primary:hover {
  background: var(--sea-dark);
}

.button--light {
  background: white;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.8);
}

.button--outline,
.button--ghost {
  background: white;
  color: var(--sea-dark);
  border-color: var(--line);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--sea);
}

.button--whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: #0a2731;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 58%, rgba(6, 31, 40, 0.58) 0%, rgba(6, 31, 40, 0.38) 30%, rgba(6, 31, 40, 0.1) 60%, rgba(6, 31, 40, 0) 76%),
    linear-gradient(90deg, rgba(7, 35, 44, 0.46) 0%, rgba(7, 35, 44, 0.24) 36%, rgba(7, 35, 44, 0.02) 74%),
    linear-gradient(0deg, rgba(7, 35, 44, 0.34) 0%, rgba(7, 35, 44, 0.04) 45%, rgba(7, 35, 44, 0) 100%);
  opacity: 0.86;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 104px 0 96px;
  transform: translateY(-18px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: white;
  font-weight: 600;
  line-height: 0.98;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.eyebrow,
.section-kicker,
.boat-card__type {
  margin-bottom: 12px;
  color: var(--sun);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero__actions,
.button-row,
.card-actions,
.center-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 30px;
}

.hero .eyebrow,
.hero h1,
.hero p:not(.eyebrow),
.hero__actions {
  animation: hero-reveal 720ms ease-out both;
}

.hero .eyebrow {
  animation-delay: 80ms;
}

.hero h1 {
  animation-delay: 160ms;
}

.hero p:not(.eyebrow) {
  animation-delay: 240ms;
}

.hero__actions {
  animation-delay: 320ms;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-enabled [data-animate] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-enabled .split-image[data-animate],
.js-enabled .taxi-photo[data-animate],
.js-enabled .map-card[data-animate] {
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.js-enabled .split-image[data-animate].is-visible,
.js-enabled .taxi-photo[data-animate].is-visible,
.js-enabled .map-card[data-animate].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.js-enabled .stats-grid > div[data-animate],
.js-enabled .contact-item[data-animate] {
  transform: translate3d(0, 12px, 0);
}

.js-enabled .stats-grid > div[data-animate].is-visible,
.js-enabled .contact-item[data-animate].is-visible {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero .eyebrow,
  .hero h1,
  .hero p:not(.eyebrow),
  .hero__actions {
    animation: none;
  }

  .hero__image {
    transform: none;
  }

  .js-enabled [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .boat-card__media img,
  .gallery-item img {
    transition: none;
  }
}

.stats-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-grid div {
  min-height: 98px;
  display: grid;
  align-content: center;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  color: var(--sea);
  font-size: 1.65rem;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(64px, 7vw, 88px) 0;
}

.section--muted {
  background: var(--mist);
}

.section--split {
  padding: clamp(58px, 6vw, 76px) 0;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-header h2,
.stack h2,
.price-panel h2,
.legal h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

.split,
.boat-detail,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 5vw, 58px);
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 0.95fr);
}

.stack {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.split .stack {
  padding: 10px 0;
}

.split-image {
  width: 100%;
  height: clamp(320px, 30vw, 430px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image--adventure {
  object-position: 32% 50%;
}

.split-image--destination {
  object-position: 48% 48%;
}

.split-image--marina {
  object-position: 58% 50%;
}

.split-image--taxi {
  object-position: 54% 48%;
}

.taxi-photo-stack {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 16px;
  align-items: end;
}

.taxi-photo {
  height: clamp(280px, 28vw, 420px);
}

.taxi-photo--bottom {
  height: clamp(220px, 22vw, 340px);
  margin-bottom: 34px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.service-list article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 20px rgba(23, 48, 63, 0.06);
}

.service-list h3 {
  margin-bottom: 8px;
}

.boat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.boat-card,
.value-card,
.price-panel,
.info-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(23, 48, 63, 0.08);
}

.boat-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.boat-card[hidden] {
  display: none;
}

.boat-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.boat-card__media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.boat-card:hover .boat-card__media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sun);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
}

.boat-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.boat-card h3 a:hover {
  color: var(--sea);
}

.mini-specs,
.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spec-list {
  grid-template-columns: repeat(2, 1fr);
}

.spec-item {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.spec-item strong {
  color: var(--ink);
  line-height: 1.2;
}

.spec-item span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
}

.price-line strong {
  color: var(--sea);
  font-size: 1.45rem;
}

.season-price {
  display: grid;
  gap: 5px;
  min-width: 142px;
}

.season-price p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.season-price strong {
  color: var(--sea);
  white-space: nowrap;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.filter-button.is-active {
  background: var(--sea);
  color: white;
  border-color: var(--sea);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e8f6f5;
  color: var(--sea-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.center-row {
  justify-content: center;
  margin-top: 32px;
}

.destinations {
  background: white;
}

.value-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card,
.info-grid article {
  padding: 24px;
}

.value-card h3,
.info-grid h2 {
  margin-bottom: 10px;
}

.cta-band {
  background: var(--sea-dark);
  color: white;
  padding: 48px 0;
}

.cta-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.cta-inner h2 {
  margin-bottom: 10px;
  color: white;
}

.cta-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.boat-detail {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
}

.price-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.price-rows {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.price-row > span {
  display: grid;
  color: var(--ink);
}

.price-row > span small {
  color: var(--muted);
  font-weight: 700;
}

.price-row .season-price {
  min-width: 170px;
}

.price-panel .button + .button {
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  height: 250px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--mist);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(23, 48, 63, 0.08);
}

.price-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  background: #e8f6f5;
  color: var(--ink);
  font-size: 0.92rem;
}

.price-table th small,
.price-table td span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.price-table td:nth-child(n+4) {
  vertical-align: top;
}

.price-table a {
  font-weight: 700;
}

.price-table a:hover {
  color: var(--sea);
}

.info-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.subsection {
  margin-top: 50px;
}

.taxi-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.taxi-price-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 840px;
  margin: 0 auto;
}

.taxi-price-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 24px rgba(23, 48, 63, 0.08);
}

.taxi-price-card h3 {
  min-height: 2.6em;
}

.taxi-price-card p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.taxi-price-card p:first-child {
  border-top: 0;
  padding-top: 0;
}

.taxi-price-card span {
  color: var(--muted);
  font-weight: 600;
}

.taxi-price-card strong {
  color: var(--sea);
  font-size: 1.2rem;
}

.taxi-note {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.94rem;
}

.narrow {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 20px rgba(23, 48, 63, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list p {
  padding: 0 22px 20px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  color: var(--ink);
}

.contact-item span,
.contact-item a {
  color: var(--muted);
}

.contact-item a:hover {
  color: var(--sea);
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal h2 {
  margin-top: 28px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal a {
  color: var(--sea);
  font-weight: 700;
}

.legal a:hover {
  color: var(--sea-dark);
}

.credits-page > p + p {
  margin-top: 12px;
}

.credits-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.credit-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 20px rgba(23, 48, 63, 0.06);
}

.credit-card h3 {
  margin-bottom: 14px;
}

.credit-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.credit-card dl div {
  display: grid;
  gap: 4px;
}

.credit-card dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credit-card dd {
  margin: 0;
  color: var(--muted);
}

.credit-card code {
  overflow-wrap: anywhere;
  font-size: 0.88rem;
}

.site-footer {
  background: #152832;
  color: white;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand strong {
  color: white;
}

.footer-brand span,
.site-footer p,
.footer-list,
.footer-list a,
.footer-social a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-list a:hover,
.footer-social a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: white;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 27, 35, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: white;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 12px;
  }

  .boat-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split--reverse,
  .boat-detail,
  .contact-grid,
  .taxi-photo-stack {
    grid-template-columns: 1fr;
  }

  .taxi-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .taxi-photo--bottom {
    margin-bottom: 0;
  }

  .price-panel {
    position: static;
  }

  .map-card {
    min-height: 420px;
  }
}

@media (max-width: 1080px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 18px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-link {
    padding: 14px 4px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero__content {
    padding: 78px 0 68px;
    transform: translateY(-8px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .site-nav {
    inset: 70px 0 auto 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero {
    min-height: 68svh;
    align-items: end;
  }

  .hero__shade {
    background:
      radial-gradient(circle at 34% 64%, rgba(6, 31, 40, 0.68) 0%, rgba(6, 31, 40, 0.48) 38%, rgba(6, 31, 40, 0.12) 76%),
      linear-gradient(0deg, rgba(7, 35, 44, 0.52) 0%, rgba(7, 35, 44, 0.16) 58%, rgba(7, 35, 44, 0.02) 100%);
  }

  .hero__content {
    padding: 78px 0 50px;
    transform: none;
  }

  .hero h1 {
    max-width: 10ch;
    margin-bottom: 16px;
    line-height: 1.02;
  }

  .hero__actions,
  .button-row,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .split-image {
    height: 260px;
  }

  .boat-grid,
  .gallery-grid,
  .value-grid,
  .info-grid,
  .taxi-price-grid,
  .service-list,
  .footer-grid,
  .mini-specs,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .map-card {
    min-height: 340px;
  }
}
