:root {
  --primary: #00adee;
  --primary-dark: #112543;
  --text: #5f6976;
  --text-strong: #5f6976;
  --text-soft: #7b8795;
  --surface: #ffffff;
  --surface-soft: #f2f5fa;
  --border: rgba(17, 37, 67, 0.12);
  --shadow: 0 24px 80px rgba(8, 28, 58, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 173, 238, 0.16), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 24%, #f4f7fb 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 3vw, 28px);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(17, 37, 67, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.site-nav {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.site-nav a:hover {
  color: var(--text-strong);
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(17, 37, 67, 0.12);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.locale-switch-button {
  min-width: 48px;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.locale-switch-button.is-active {
  background: var(--primary-dark);
  color: #fff;
}

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

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 19, 39, 0.12), rgba(7, 19, 39, 0.36)),
    linear-gradient(120deg, rgba(0, 173, 238, 0.16), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: calc(100vw - 64px);
  max-width: none;
  margin: 0 auto;
  min-height: 86vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-fleet-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
}

.hero-fleet-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.hero-fleet-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 38px rgba(5, 14, 30, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-fleet-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 24px 42px rgba(5, 14, 30, 0.28);
}

.hero-fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-fleet-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 39, 0.02), rgba(7, 19, 39, 0.72));
}

.hero-fleet-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(7, 19, 39, 0.35);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

.hero h1,
.intro h2,
.section-head h2,
.detail-content h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1;
}

.hero h1 {
  width: 100%;
  max-width: none;
  font-family: "Allura", cursive;
  font-size: clamp(2.2rem, 5.2vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(0.98rem, 1.55vw, 1.1rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
}

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

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

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.detail-source.button-secondary {
  background: var(--surface-soft);
  border-color: var(--border);
  color: var(--text-strong);
}

.intro,
.fleet,
.info-section {
  padding: 88px 0 0;
}

.intro {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
}

.intro h2,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.intro p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

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

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

.fleet-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.96)),
    linear-gradient(135deg, rgba(0, 173, 238, 0.08), rgba(17, 37, 67, 0.06));
  box-shadow:
    0 18px 40px rgba(10, 27, 52, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fleet-card:hover,
.fleet-card.is-active {
  transform: translateY(-10px);
  border-color: rgba(0, 173, 238, 0.48);
  box-shadow:
    0 28px 70px rgba(8, 28, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.fleet-card.is-featured {
  grid-column: 1 / -1;
}

.fleet-card-media {
  display: block;
  flex: 0 0 auto;
  height: clamp(220px, 24vw, 290px);
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
  overflow: hidden;
  background: #112543;
}

.fleet-card.is-featured .fleet-card-media {
  height: clamp(280px, 34vw, 400px);
}

.fleet-card.is-featured .fleet-card-media img,
.fleet-card.is-featured .fleet-card-media video {
  object-position: center 62%;
}

.fleet-card-media img,
.fleet-card-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.fleet-card:hover .fleet-card-media img,
.fleet-card:hover .fleet-card-media video,
.fleet-card.is-active .fleet-card-media img,
.fleet-card.is-active .fleet-card-media video {
  transform: scale(1.08);
}

.fleet-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 16, 34, 0.02) 0%, rgba(5, 16, 34, 0.55) 100%),
    linear-gradient(140deg, rgba(0, 173, 238, 0.12), transparent 42%);
}

.fleet-card-media-overlay {
  position: absolute;
  inset: 16px 16px auto 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fleet-card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.fleet-card-pill-ghost {
  background: rgba(17, 37, 67, 0.48);
  color: #fff;
}

.fleet-card-body {
  position: relative;
  padding: 22px 22px 24px;
}

.fleet-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.fleet-card-title-group {
  min-width: 0;
}

.fleet-card-body h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #5f6976;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.fleet-card.is-featured .fleet-card-body h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.fleet-card-subtitle {
  margin: 8px 0 0;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-soft);
}

.fleet-card-location {
  margin: 10px 0 16px;
  color: #7b8795;
  font-size: 0.94rem;
}

.fleet-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 173, 238, 0.16), rgba(17, 37, 67, 0.08));
  color: var(--text-strong);
  font-size: 1.05rem;
  transition: transform 220ms ease, background-color 220ms ease;
}

.fleet-card:hover .fleet-card-arrow,
.fleet-card.is-active .fleet-card-arrow {
  transform: translate(2px, -2px);
  background: linear-gradient(135deg, rgba(0, 173, 238, 0.28), rgba(17, 37, 67, 0.12));
}

.fleet-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.fleet-meta span,
.detail-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 37, 67, 0.08);
  color: var(--text-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.fleet-card-copy {
  margin: 0;
  line-height: 1.28;
  color: var(--text-soft);
  white-space: pre-line;
}

.fleet-card.is-featured .fleet-card-copy {
  overflow: visible;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.detail-modal.is-open {
  display: block;
}

.detail-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 39, 0.56);
  backdrop-filter: blur(10px);
}

.detail-modal-panel {
  position: relative;
  width: min(1240px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 56px 0 18px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 37, 67, 0.48) rgba(17, 37, 67, 0.08);
}

.detail-modal-panel::-webkit-scrollbar {
  width: 12px;
}

.detail-modal-panel::-webkit-scrollbar-track {
  background: rgba(17, 37, 67, 0.08);
  border-radius: 999px;
}

.detail-modal-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 37, 67, 0.62), rgba(0, 173, 238, 0.72));
}

.detail-modal-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(17, 37, 67, 0.78), rgba(0, 173, 238, 0.86));
}

.detail-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 37, 67, 0.86);
  color: #fff;
  font: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.legal-modal-panel {
  width: min(920px, calc(100vw - 24px));
}

.legal-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.legal-card-header {
  margin-bottom: 24px;
}

.legal-card-header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-modal-content .info-card {
  margin: 0;
}

.legal-content-stack {
  display: grid;
  gap: 20px;
}

.legal-section h3 {
  margin-bottom: 10px;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.detail-primary-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  background: #d8e7f2;
}

.detail-primary-media img,
.detail-primary-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbs button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
}

.detail-thumbs button.is-active img {
  border-color: var(--primary);
}

.detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.detail-content h3 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 800;
  color: #5f6976;
}

.detail-location {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-description {
  margin: 26px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
  white-space: pre-line;
}

.detail-booking-calendar {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(17, 37, 67, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(242, 247, 251, 0.92)),
    var(--surface-soft);
}

.detail-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 37, 67, 0.08);
  background: rgba(244, 247, 250, 0.9);
}

.detail-disclaimer h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-strong);
}

.detail-disclaimer-text {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-prices,
.detail-addons {
  margin-top: 26px;
  padding: 16px 18px;
  border-top: 1px solid rgba(17, 37, 67, 0.08);
  background: transparent;
}

.detail-prices-header h4,
.detail-addons-header h4 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-strong);
}

.detail-prices-subtitle,
.detail-addons-subtitle {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 37, 67, 0.08);
}

.detail-price-period {
  color: var(--text-soft);
  line-height: 1.4;
  font-size: 0.92rem;
}

.detail-price-amount {
  color: var(--text-strong);
  white-space: nowrap;
  font-size: 0.96rem;
}

.detail-price-amount span {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 4px;
}

.detail-addons-content {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.detail-addon-section {
  display: grid;
  gap: 10px;
}

.detail-addon-section h5,
.detail-addon-category h6 {
  margin: 0;
  color: var(--text-strong);
}

.detail-addon-section h5 {
  font-size: 0.95rem;
}

.detail-addon-category {
  display: grid;
  gap: 8px;
}

.detail-addon-category h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.detail-addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.detail-addon-item {
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 37, 67, 0.08);
}

.detail-addon-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.detail-addon-label {
  color: var(--text-soft);
  line-height: 1.45;
}

.detail-addon-price {
  color: var(--text-strong);
  white-space: nowrap;
  font-weight: 700;
}

.detail-addon-badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 173, 238, 0.1);
  color: #12466b;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.detail-addon-note {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.detail-booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.detail-booking-header h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-strong);
}

.detail-booking-subtitle {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.detail-booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-booking-tools {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.detail-booking-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 37, 67, 0.08);
}

.detail-booking-nav-button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 37, 67, 0.08);
  color: var(--text-strong);
  font-size: 1rem;
  cursor: pointer;
}

.detail-booking-nav-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.detail-booking-month-label {
  min-width: 138px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.detail-booking-key,
.detail-booking-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.detail-booking-selection {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 37, 67, 0.08);
  background: rgba(255, 255, 255, 0.82);
}

.detail-booking-selection-copy {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.detail-booking-month {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(17, 37, 67, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.detail-booking-weekdays,
.detail-booking-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.detail-booking-weekdays {
  margin-bottom: 10px;
}

.detail-booking-weekday {
  display: grid;
  place-items: center;
  min-height: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.detail-booking-day {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(17, 37, 67, 0.1);
  background: #ffffff;
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.detail-booking-day.is-selectable {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.detail-booking-day.is-selectable:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 173, 238, 0.38);
  box-shadow: 0 10px 20px rgba(17, 37, 67, 0.08);
}

.detail-booking-day.is-outside {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.detail-booking-day.is-past {
  opacity: 0.45;
  cursor: default;
  background: rgba(17, 37, 67, 0.06);
  color: rgba(17, 37, 67, 0.46);
}

.detail-booking-day.is-free {
  background: #ffffff;
}

.detail-booking-day.is-partial-morning.is-booked {
  background: linear-gradient(90deg, #c84444 0 50%, #ffffff 50% 100%);
  color: var(--text-strong);
}

.detail-booking-day.is-partial-afternoon.is-booked {
  background: linear-gradient(90deg, #ffffff 0 50%, #c84444 50% 100%);
  color: var(--text-strong);
}

.detail-booking-day.is-partial-morning.is-option {
  background: linear-gradient(90deg, #cfeaff 0 50%, #ffffff 50% 100%);
  color: #18486b;
}

.detail-booking-day.is-partial-afternoon.is-option {
  background: linear-gradient(90deg, #ffffff 0 50%, #cfeaff 50% 100%);
  color: #18486b;
}

.detail-booking-day.is-in-range,
.detail-booking-day.is-selected-start,
.detail-booking-day.is-selected-end {
  border-color: rgba(0, 173, 238, 0.26);
  background: #dff5ff;
  color: #12466b;
}

.detail-booking-day.is-selected-start,
.detail-booking-day.is-selected-end {
  background: #00adee;
  color: #ffffff;
}

.detail-booking-day.is-booked {
  border-color: rgba(170, 42, 42, 0.22);
  background: #c84444;
  color: #ffffff;
}

.detail-booking-day.is-option {
  border-color: rgba(98, 162, 214, 0.28);
  background: #cfeaff;
  color: #18486b;
}

.detail-booking-day.is-today {
  box-shadow: inset 0 0 0 2px rgba(17, 37, 67, 0.18);
}

.detail-booking-empty {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-soft);
}

.detail-booking-key.is-free,
.detail-booking-status.is-free {
  background: #ffffff;
  color: var(--text-strong);
  border: 1px solid rgba(17, 37, 67, 0.12);
}

.detail-booking-key.is-booked,
.detail-booking-status.is-booked {
  background: #c84444;
  color: #ffffff;
}

.detail-booking-key.is-option,
.detail-booking-status.is-option {
  background: #cfeaff;
  color: #18486b;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.detail-columns h4 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--text-strong);
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.detail-list-compact {
  columns: 1;
  column-gap: 0;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(10, 27, 52, 0.08);
}

.info-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.8;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card-split {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
}

.info-card-split.info-card-split-single {
  grid-template-columns: 1fr;
}

.info-panel {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid rgba(17, 37, 67, 0.08);
}

.info-panel:has(> h3:empty):has(> p:empty):has(> a:empty) {
  display: none;
}

.info-panel h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--text-strong);
}

.info-panel p {
  margin-bottom: 10px;
}

.inline-link {
  color: var(--text-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.contact-intro-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.contact-intro-card > .eyebrow {
  color: var(--primary);
}

.contact-form-card {
  display: grid;
  gap: 22px;
  height: 100%;
  align-content: start;
}

.contact-form-column {
  display: grid;
  gap: 18px;
  align-content: start;
  height: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-field {
  display: grid;
  gap: 8px;
  position: relative;
}

.contact-field span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(17, 37, 67, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(0, 173, 238, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 173, 238, 0.08);
}

.contact-field.is-invalid input,
.contact-field.is-invalid textarea {
  border-color: rgba(180, 59, 44, 0.55);
  box-shadow: 0 0 0 4px rgba(180, 59, 44, 0.08);
}

.contact-field textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-field-error {
  position: absolute;
  top: calc(100% + 10px);
  right: 12px;
  z-index: 4;
  max-width: min(280px, calc(100% - 24px));
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 244, 230, 0.98);
  color: #7a2418;
  font-size: 0.78rem;
  line-height: 1.35;
  border: 1px solid rgba(180, 59, 44, 0.24);
  box-shadow: 0 14px 28px rgba(95, 27, 18, 0.14);
  pointer-events: none;
}

.contact-field-error::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: rgba(255, 244, 230, 0.98);
  border-top: 1px solid rgba(180, 59, 44, 0.24);
  border-left: 1px solid rgba(180, 59, 44, 0.24);
  transform: rotate(45deg);
}

.contact-field.is-invalid {
  z-index: 3;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  border: 1px solid transparent;
  background: rgba(17, 37, 67, 0.04);
}

.contact-form-status.is-success {
  color: #167a52;
  border-color: rgba(22, 122, 82, 0.18);
  background: rgba(232, 247, 239, 0.96);
}

.contact-form-status.is-error {
  color: #9f2f22;
  border-color: rgba(180, 59, 44, 0.18);
  background: rgba(255, 241, 238, 0.96);
}

.contact-card {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 252, 0.98));
  border: 1px solid rgba(17, 37, 67, 0.08);
  box-shadow: 0 16px 36px rgba(10, 27, 52, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 173, 238, 0.34);
}

.contact-label,
.legal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  font-weight: 700;
}

.contact-card strong,
.legal-grid strong {
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--text-strong);
}

.contact-card strong {
  white-space: nowrap;
}

.contact-info-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-info-block {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 249, 252, 0.92);
  border: 1px solid rgba(17, 37, 67, 0.08);
}

.contact-info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.contact-info-block strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text-strong);
}

.contact-info-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-card-secondary {
  display: grid;
  gap: 8px;
}

.contact-bases-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  margin-top: 22px;
}

.contact-info-card-secondary p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 24px;
  margin-bottom: 28px;
  align-items: center;
}

.contact-map-copy h3 {
  margin: 0 0 12px;
}

.contact-map-copy .eyebrow {
  color: var(--primary);
}

.contact-map-copy p:last-child {
  margin-bottom: 0;
}

.contact-map-graphic {
  position: relative;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-map-graphic::before {
  content: none;
}

.contact-map-graphic::after {
  content: none;
}

.contact-map-graphic img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center center;
  transform: none;
  filter: none;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(17, 37, 67, 0.96);
  color: rgba(255, 255, 255, 0.78);
}

.cookie-consent-shell {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: min(460px, calc(100vw - 24px));
}

.cookie-consent-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(17, 37, 67, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(8, 28, 58, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-consent-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-strong);
}

.cookie-consent-copy,
.cookie-manage-status {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.cookie-inline-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-consent-options {
  display: grid;
  gap: 12px;
}

.cookie-consent-options-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 37, 67, 0.1);
  border-radius: 20px;
  background: rgba(242, 245, 250, 0.72);
}

.cookie-toggle-copy {
  display: grid;
  gap: 6px;
}

.cookie-toggle-copy strong {
  color: var(--text-strong);
}

.cookie-toggle-copy small {
  color: var(--text-soft);
  line-height: 1.5;
}

.cookie-toggle input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--primary-dark);
  cursor: pointer;
}

.cookie-toggle-static {
  align-items: center;
}

.cookie-toggle-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 37, 67, 0.08);
  color: var(--text-strong);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button-secondary,
.cookie-button-tertiary,
.cookie-manage-button {
  border: 1px solid rgba(17, 37, 67, 0.12);
  color: var(--text-strong);
  font: inherit;
}

.cookie-button-secondary {
  background: rgba(17, 37, 67, 0.08);
}

.cookie-button-tertiary {
  background: transparent;
}

.cookie-manage {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 6px;
  max-width: min(280px, calc(100vw - 24px));
}

.cookie-manage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border-color: rgba(17, 37, 67, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 4px 10px rgba(10, 27, 52, 0.05);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.cookie-manage-status {
  font-size: 0.6rem;
  line-height: 1.25;
  opacity: 0.64;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .fleet-grid,
  .detail-card,
  .detail-columns,
  .intro,
  .info-card-split,
  .contact-layout,
  .contact-form-grid,
  .contact-bases-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .hero-fleet-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-map-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero-content {
    min-height: 72svh;
  }

  .hero-video {
    object-position: 50% 26%;
  }

  .hero-content {
    width: calc(100vw - 32px);
    padding-bottom: 170px;
  }

  .hero-fleet-strip {
    bottom: 14px;
  }

  .hero-fleet-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-fleet-item {
    border-radius: 14px;
  }

  .hero-fleet-item span {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.8rem;
  }

  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .fleet-card-media {
    height: clamp(220px, 56vw, 300px);
  }

  .detail-card {
    padding: 18px;
    border-radius: 24px;
  }

  .detail-modal-panel {
    width: min(1240px, calc(100vw - 12px));
    max-height: calc(100vh - 12px);
    margin: 6px auto;
    padding-top: 52px;
  }

  .detail-header,
  .detail-booking-header,
  .footer-inner {
    flex-direction: column;
  }

  .detail-booking-tools {
    width: 100%;
    justify-items: stretch;
  }

  .detail-booking-nav {
    justify-content: space-between;
  }

  .detail-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-booking-grid {
    grid-template-columns: 1fr;
  }

  .detail-list-compact {
    columns: 1;
  }

  .cookie-consent-shell,
  .cookie-manage {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
  }

.cookie-consent-card {
    padding: 20px;
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-content {
    min-height: 54svh;
  }

  .hero-video {
    object-fit: cover;
    object-position: 50% 24%;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .hero-fleet-strip {
    bottom: 10px;
  }

  .hero-fleet-track {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-fleet-track::-webkit-scrollbar {
    display: none;
  }

  .hero-fleet-item {
    flex: 0 0 88px;
    aspect-ratio: 1.15 / 1;
    border-radius: 10px;
  }

  .hero-fleet-item span {
    left: 6px;
    right: 6px;
    bottom: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }
}
