:root {
  --bg: #f4f6f3;
  --surface: #ffffff;
  --surface-alt: #ebf0ed;
  --text: #14293b;
  --muted: #667887;
  --line: rgba(20, 41, 59, 0.1);
  --navy: #102b40;
  --navy-soft: #1e465f;
  --sea: #3c7890;
  --sand: #bfae8d;
  --dark: #0b1b27;
  --shadow: 0 18px 50px rgba(7, 22, 34, 0.1);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(235, 240, 237, 0.9), transparent 240px),
    var(--bg);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(235, 240, 237, 0.8), rgba(235, 240, 237, 0.45));
}

.section-dark {
  background: linear-gradient(180deg, #102636, #0c1d2b);
  color: #f2f6f7;
}

.site-header {
  position: relative;
  min-height: 100svh;
  color: #fff;
}

.nav-shell {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--container);
  min-height: 92px;
  padding: 14px 18px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(8, 22, 34, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand {
  flex-shrink: 0;
  align-self: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(290px, 30vw);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(5, 16, 25, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #f6fdff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-solid {
  background: #fff;
  color: var(--navy);
}

.button-accent {
  background: linear-gradient(135deg, #45b4c0, #2f748d);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f6fdff;
  box-shadow: 0 14px 32px rgba(27, 93, 112, 0.28);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: linear-gradient(135deg, #53c2cd, #367f98);
  color: #ffffff;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 37, 0.86) 0%, rgba(8, 24, 37, 0.55) 45%, rgba(8, 24, 37, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 24, 37, 0.18), rgba(8, 24, 37, 0.55));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  min-height: 100svh;
  padding-top: 138px;
  padding-bottom: 60px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: rgba(225, 240, 245, 0.8);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  color: var(--navy);
}

.section-heading-light h2 {
  color: #fff;
}

.hero-text,
.section-copy p,
.section-heading p,
.card-body p,
.fleet-details p,
.review-card p,
.contact-copy p,
.form-note,
.site-footer p,
.intro-grid p {
  line-height: 1.8;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
}

.panel-card,
.intro-grid,
.stat-card,
.charter-card,
.fleet-entry,
.review-card,
.booking-form,
.feature-media {
  border: 1px solid rgba(20, 41, 59, 0.08);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-card strong {
  line-height: 1.5;
}

.intro-band {
  padding-top: 32px;
  padding-bottom: 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

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

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.3rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.feature-media img {
  min-height: 520px;
  object-fit: cover;
}

.feature-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.charter-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(20, 41, 59, 0.06);
  box-shadow: 0 18px 42px rgba(8, 23, 35, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.charter-card:hover,
.charter-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(60, 120, 144, 0.18);
  box-shadow: 0 26px 56px rgba(8, 23, 35, 0.12);
}

.card-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: 275px;
  border-radius: 24px 24px 0 0;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(8, 23, 35, 0), rgba(8, 23, 35, 0.42));
  pointer-events: none;
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
  border-radius: 0;
}

@media (min-width: 768px) {
  .card-media {
    height: 280px;
  }
}

@media (min-width: 1100px) {
  .card-media {
    height: 320px;
  }
}

.card-media-sunset img {
  object-position: center center;
}

.charter-card:hover .card-media img,
.charter-card:focus-within .card-media img {
  transform: scale(1.04);
}

.charter-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(8, 23, 35, 0.16);
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.charter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.charter-kicker,
.charter-note {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.charter-kicker {
  color: var(--muted);
}

.charter-note {
  color: var(--sea);
}

.card-body h3,
.fleet-details h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  color: var(--navy);
}

.charter-points {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(20, 41, 59, 0.08);
  list-style: none;
}

.charter-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.charter-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #45b4c0, #2f748d);
}

.charter-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
}

.charter-link:hover,
.charter-link:focus-visible {
  color: var(--sea);
}

.fleet-list {
  display: grid;
  gap: 28px;
}

.fleet-entry {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.02fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(20, 41, 59, 0.06);
  box-shadow: 0 18px 48px rgba(7, 22, 34, 0.08);
}

.fleet-details {
  padding: 0;
}

.fleet-detail-card {
  padding: 28px 28px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbfd, #eef4f8);
  border: 1px solid rgba(20, 41, 59, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.fleet-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #2c5f85;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-details h3 {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.fleet-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.fleet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.fleet-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #dceaf7;
  color: #264f72;
  font-size: 0.9rem;
  font-weight: 700;
}

.fleet-photo {
  min-width: 0;
}

.fleet-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #dbe8f1;
  min-height: 0;
}

.fleet-viewport {
  overflow: hidden;
  border-radius: 28px;
  height: auto;
}

.fleet-track {
  display: flex;
  height: auto;
  transition: transform 320ms ease;
}

.fleet-slide {
  flex: 0 0 100%;
  margin: 0;
  min-width: 100%;
}

.fleet-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
}

.fleet-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  margin-top: -24px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.fleet-control-icon {
  display: block;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.fleet-control:hover,
.fleet-control:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.04);
}

.fleet-control-prev {
  left: 16px;
}

.fleet-control-next {
  right: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--sand));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.gallery-item img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-tall img {
  min-height: 580px;
}

.gallery-wide {
  grid-column: span 2;
}

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

.review-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.review-card p {
  margin-top: 0;
  color: var(--muted);
}

.review-card strong {
  display: block;
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.faq-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(20, 41, 59, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #f9fcfd, #f1f6f9);
  box-shadow: 0 18px 42px rgba(7, 22, 34, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #45b4c0, #2f748d);
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dceaf2;
  color: #24566e;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 72ch;
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(7, 22, 34, 0.1);
}

.faq-item[open] {
  border-color: rgba(47, 116, 141, 0.22);
  background: linear-gradient(180deg, #fbfeff, #edf6fa);
}

.faq-item[open]::before {
  opacity: 0.9;
}

.faq-item[open] summary {
  padding-bottom: 14px;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: #2f748d;
  color: #f6fdff;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-stack a {
  color: var(--navy);
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.booking-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfd;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(60, 120, 144, 0.48);
  box-shadow: 0 0 0 4px rgba(60, 120, 144, 0.12);
}

.booking-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.93rem;
}

.form-note.is-success {
  color: #216746;
}

.site-footer {
  padding: 26px 0 34px;
  background: #f0f3f1;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding-top: 8px;
}

.footer-brand {
  font-weight: 800;
  color: var(--navy);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .split-layout,
  .contact-layout,
  .charter-grid,
  .review-grid,
  .gallery-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .fleet-entry,
  .fleet-entry:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .fleet-entry {
    gap: 14px;
    padding: 16px;
  }

  .fleet-photo {
    order: 1;
  }

  .fleet-details {
    order: 2;
  }

  .fleet-slide img {
    height: 380px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-tall img,
  .gallery-item img {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    padding: 12px 14px;
    min-height: 82px;
  }

  .brand-logo {
    height: 52px;
    max-width: min(250px, 50vw);
  }

  .site-nav {
    position: fixed;
    top: 92px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(10, 25, 37, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-layout {
    padding-top: 130px;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 68px 0;
  }

  .container {
    width: min(1180px, calc(100vw - 28px));
  }

  .hero-copy h1,
  .section-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .brand-logo {
    height: 44px;
    max-width: min(210px, 48vw);
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-media img {
    min-height: 360px;
  }

  .card-body,
  .booking-form,
  .review-card,
  .intro-grid {
    padding: 22px;
  }

  .fleet-entry {
    gap: 12px;
    padding: 12px;
    border-radius: 28px;
  }

  .fleet-detail-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .fleet-pills {
    gap: 8px;
  }

  .fleet-pills span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .fleet-slide img {
    height: 260px;
    border-radius: 22px;
  }

  .fleet-carousel,
  .fleet-viewport {
    border-radius: 22px;
  }

  .fleet-control {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }

  .fleet-control-icon {
    width: 18px;
    height: 18px;
  }
}
