:root {
  --boat-teal: #00505c;
  --boat-teal-deep: #003b45;
  --boat-teal-soft: #e8f4f3;
  --boat-orange: #e8743a;
  --boat-orange-dark: #c85d28;
  --boat-sand: #f6f0e6;
  --boat-ink: #12323a;
  --boat-muted: #5f7479;
  --boat-line: #d9e5e6;
  --boat-white: #ffffff;
  --boat-shadow: 0 20px 50px rgba(0, 59, 69, 0.12);
  --boat-radius-sm: 12px;
  --boat-radius: 22px;
  --boat-radius-lg: 34px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body.boat-page {
  background: var(--boat-white);
  color: var(--boat-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.boat-page main {
  padding: 0;
}

.boat-page * {
  box-sizing: border-box;
}

.boat-page .container {
  max-width: 1180px;
}

.boat-page button,
.boat-page input,
.boat-page select,
.boat-page textarea {
  font: inherit;
}

.boat-page img {
  max-width: 100%;
}

.boat-page a,
.boat-page button,
.boat-page summary,
.boat-page input,
.boat-page select,
.boat-page textarea {
  outline-offset: 4px;
}

.boat-page a:focus-visible,
.boat-page button:focus-visible,
.boat-page summary:focus-visible,
.boat-page input:focus-visible,
.boat-page select:focus-visible,
.boat-page textarea:focus-visible {
  outline: 3px solid #ffb16e;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--boat-orange);
  color: var(--boat-white);
  font-weight: 700;
  left: 20px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 200;
}

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

/* Header */
.boat-site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 80, 92, 0.1);
  color: var(--boat-teal);
  padding: 0;
  position: relative;
  z-index: 50;
}

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

.boat-brand {
  color: var(--boat-teal);
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.boat-brand span {
  color: var(--boat-orange);
}

.boat-primary-nav > ul {
  align-items: center;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-primary-nav > ul > li {
  margin: 0;
  position: relative;
}

.boat-primary-nav > ul > li > a {
  border: 0;
  border-radius: 999px;
  color: var(--boat-teal);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  padding: 10px 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.boat-primary-nav > ul > li > a:hover,
.boat-primary-nav > ul > li > a.active {
  background: var(--boat-teal-soft);
  border: 0;
  color: var(--boat-orange-dark);
}

.boat-nav-dropdown > a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  display: inline-block;
  height: 6px;
  margin: 0 0 3px 8px;
  transform: rotate(45deg);
  width: 6px;
}

.boat-nav-dropdown > ul {
  background: var(--boat-white);
  border: 1px solid var(--boat-line);
  border-radius: 14px;
  box-shadow: var(--boat-shadow);
  display: block;
  left: 0;
  list-style: none;
  min-width: 210px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateY(-5px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.boat-nav-dropdown:hover > ul,
.boat-nav-dropdown:focus-within > ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.boat-nav-dropdown > ul li {
  margin: 0;
}

.boat-nav-dropdown > ul a {
  border: 0;
  border-radius: 8px;
  color: var(--boat-teal);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
  text-transform: none;
}

.boat-nav-dropdown > ul a:hover,
.boat-nav-dropdown > ul a.active {
  background: var(--boat-teal-soft);
  border: 0;
  color: var(--boat-orange-dark);
}

.boat-nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--boat-line);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.boat-nav-toggle span:not(.sr-only) {
  background: var(--boat-teal);
  display: block;
  height: 2px;
  width: 21px;
}

/* Type and reusable elements */
.boat-section {
  padding: 90px 0;
}

.boat-page section h2,
.boat-page section h3 {
  color: var(--boat-ink);
  text-transform: none;
}

.boat-page section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 24px;
  text-align: left;
}

.boat-page section h3 {
  font-size: 1.25rem;
  line-height: 1.28;
}

.boat-narrow {
  max-width: 820px !important;
}

.boat-eyebrow {
  color: #ffc599;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.boat-eyebrow-dark {
  color: var(--boat-orange-dark);
}

.boat-section-heading {
  margin: 0 auto 46px;
  max-width: 780px;
  text-align: center;
}

.boat-section-heading h2,
.boat-section-heading p {
  text-align: center;
}

.boat-section-heading > p:last-child {
  color: var(--boat-muted);
  font-size: 1.05rem;
  margin: -8px auto 0;
  max-width: 650px;
}

.boat-section-heading-light h2,
.boat-section-heading-light > p:last-child {
  color: var(--boat-white);
}

.boat-section-subheading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  margin: 60px 0 34px;
}

.boat-section-subheading h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  margin-bottom: 0;
}

.boat-section-subheading > p {
  color: var(--boat-muted);
  margin: 0;
}

.boat-section-subheading-light h2,
.boat-section-subheading-light > p {
  color: var(--boat-white);
}

.boat-button-group {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.boat-button-group-center {
  justify-content: center;
}

.boat-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 48px;
  padding: 12px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.boat-button-primary {
  background: var(--boat-orange);
  color: var(--boat-white);
}

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

.boat-button-secondary {
  background: var(--boat-white);
  border-color: var(--boat-teal);
  color: var(--boat-teal);
}

.boat-button-secondary:hover {
  background: var(--boat-teal-soft);
}

.boat-button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--boat-white);
}

.boat-button-ghost:hover {
  background: var(--boat-white);
  color: var(--boat-teal);
}

.boat-button-light {
  background: var(--boat-white);
  color: var(--boat-teal);
}

.boat-button-light:hover {
  background: var(--boat-sand);
}

.boat-button-full {
  display: flex;
  width: 100%;
}

/* Landing hero */
.boat-hero {
  align-items: center;
  background: var(--boat-teal-deep);
  display: flex;
  min-height: 690px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

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

.boat-hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.boat-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 38, 46, 0.94) 0%, rgba(0, 49, 57, 0.8) 42%, rgba(0, 49, 57, 0.26) 78%, rgba(0, 49, 57, 0.1) 100%), linear-gradient(0deg, rgba(0, 38, 46, 0.26), transparent 55%);
}

.boat-hero-content {
  color: var(--boat-white);
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.boat-hero-content h1 {
  color: var(--boat-white);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 820px;
}

.boat-hero-content > p:not(.boat-eyebrow):not(.boat-trust-line) {
  font-size: clamp(1rem, 2vw, 1.22rem);
  margin: 0 0 30px;
  max-width: 680px;
}

.boat-trust-line {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 24px 0 0;
}

.boat-trust-line span {
  color: #ffc599;
  margin: 0 7px;
}

.boat-intro-section {
  background: var(--boat-sand);
}

.boat-intro-section .boat-narrow {
  text-align: center;
}

.boat-intro-section h2,
.boat-intro-section .boat-eyebrow {
  text-align: center;
}

.boat-intro-section p:not(.boat-eyebrow) {
  color: #415c61;
  font-size: 1.06rem;
  margin: 0 0 18px;
}

/* Filter and cards */
.boat-tour-section {
  background: #fbfdfd;
}

.boat-filters {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 32px;
}

.boat-filters button {
  background: var(--boat-white);
  border: 1px solid var(--boat-line);
  border-radius: 999px;
  color: var(--boat-teal);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 46px;
  padding: 9px 16px;
}

.boat-filters button span {
  background: var(--boat-teal-soft);
  border-radius: 999px;
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 6px;
  min-width: 24px;
  padding: 2px 6px;
}

.boat-filters button:hover,
.boat-filters button.is-active {
  background: var(--boat-teal);
  border-color: var(--boat-teal);
  color: var(--boat-white);
}

.boat-filters button.is-active span {
  background: rgba(255, 255, 255, 0.18);
}

.boat-tour-grid {
  display: grid;
  gap: 24px;
}

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

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

.boat-tour-card {
  background: var(--boat-white);
  border: 1px solid rgba(0, 80, 92, 0.1);
  border-radius: var(--boat-radius);
  box-shadow: 0 10px 32px rgba(0, 59, 69, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

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

.boat-card-image {
  background: var(--boat-teal-soft);
  display: block;
  overflow: hidden;
}

.boat-card-image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 350ms ease;
  width: 100%;
}

.boat-tour-card-large .boat-card-image img {
  aspect-ratio: 16 / 9;
}

.boat-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.boat-card-labels {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.boat-badge,
.boat-category {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.boat-badge {
  background: #fff0e5;
  color: #9c431d;
}

.boat-category {
  background: var(--boat-teal-soft);
  color: var(--boat-teal);
}

.boat-card-body h3 {
  font-size: 1.4rem;
  margin: 0 0 13px;
}

.boat-card-body h3 a {
  color: var(--boat-ink);
  text-decoration: none;
}

.boat-card-body > p:not(.boat-card-price) {
  color: var(--boat-muted);
  font-size: 0.95rem;
  margin: 0 0 18px;
}

.boat-fact-list,
.check-list,
.cross-list,
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-fact-list {
  margin-bottom: 22px;
}

.boat-fact-list li,
.check-list li,
.cross-list li,
.info-list li {
  color: #38545a;
  padding-left: 26px;
  position: relative;
}

.boat-fact-list li {
  font-size: 0.86rem;
  margin: 6px 0;
}

.boat-fact-list li::before,
.check-list li::before {
  color: var(--boat-orange);
  content: "\2713";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.cross-list li::before {
  color: #9a6f58;
  content: "\2013";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.info-list li::before {
  background: var(--boat-teal);
  border-radius: 50%;
  color: var(--boat-white);
  content: "i";
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 700;
  height: 17px;
  left: 0;
  line-height: 17px;
  position: absolute;
  text-align: center;
  top: 4px;
  width: 17px;
}

.boat-card-price {
  border-top: 1px solid var(--boat-line);
  color: var(--boat-teal);
  font-size: 0.9rem;
  margin: auto 0 14px;
  padding-top: 16px;
}

.boat-card-price-contact {
  color: var(--boat-muted);
}

.boat-button-card {
  background: var(--boat-teal);
  color: var(--boat-white);
  margin-top: 0;
  width: 100%;
}

.boat-button-card:hover {
  background: var(--boat-teal-deep);
}

.boat-private-section {
  background: var(--boat-teal-deep);
  color: var(--boat-white);
}

.boat-private-section .boat-tour-card {
  border: 0;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

/* Comparison */
.boat-comparison-section {
  background: var(--boat-white);
}

.boat-comparison-table-wrap {
  border: 1px solid var(--boat-line);
  border-radius: var(--boat-radius);
  overflow: hidden;
}

.boat-comparison-table {
  border-collapse: collapse;
  font-size: 0.9rem;
  width: 100%;
}

.boat-comparison-table th,
.boat-comparison-table td {
  border-bottom: 1px solid var(--boat-line);
  padding: 17px 14px;
  text-align: left;
  vertical-align: top;
}

.boat-comparison-table thead {
  background: var(--boat-teal);
  color: var(--boat-white);
}

.boat-comparison-table tbody tr:last-child th,
.boat-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.boat-comparison-table tbody th {
  color: var(--boat-ink);
}

.boat-comparison-table tbody tr:nth-child(even) {
  background: #f6faf9;
}

.boat-comparison-table a {
  color: var(--boat-orange-dark);
  font-weight: 800;
}

.boat-comparison-cards {
  display: none;
}

/* Benefits and steps */
.boat-benefits-section {
  background: var(--boat-sand);
}

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

.boat-benefit-grid article {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 80, 92, 0.1);
  border-radius: var(--boat-radius);
  padding: 26px;
}

.boat-benefit-grid article > span {
  color: var(--boat-orange);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.boat-benefit-grid h3 {
  margin: 0 0 10px;
}

.boat-benefit-grid p {
  color: var(--boat-muted);
  font-size: 0.93rem;
  margin: 0;
}

.boat-steps-section {
  background: var(--boat-teal);
  color: var(--boat-white);
}

.boat-step-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-step-grid li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 38px 10px;
}

.boat-step-grid li:first-child {
  border-left: 0;
}

.boat-step-grid span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  display: flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 24px;
  width: 46px;
}

.boat-step-grid h3 {
  color: var(--boat-white) !important;
  margin: 0 0 9px;
}

.boat-step-grid p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Event CTA */
.boat-event-cta {
  background: var(--boat-white);
}

.boat-event-card {
  align-items: center;
  background: var(--boat-sand);
  border-radius: var(--boat-radius-lg);
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  padding: 0 0 0 58px;
}

.boat-event-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.boat-event-card > div:first-child > p:not(.boat-eyebrow) {
  color: var(--boat-muted);
  margin-bottom: 24px;
}

.boat-event-image,
.boat-event-image img {
  height: 100%;
  min-height: 500px;
  width: 100%;
}

.boat-event-image img {
  display: block;
  object-fit: cover;
}

/* FAQ */
.boat-faq-section,
.boat-detail-faq-section {
  background: #fbfdfd;
}

.boat-faq-list {
  border-top: 1px solid var(--boat-line);
}

.boat-faq-item {
  border-bottom: 1px solid var(--boat-line);
}

.boat-faq-item summary {
  align-items: center;
  color: var(--boat-ink);
  cursor: pointer;
  display: flex;
  font-size: 1.08rem;
  font-weight: 800;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
  padding: 22px 4px;
}

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

.boat-faq-item summary span {
  border: 1px solid var(--boat-line);
  border-radius: 50%;
  flex: 0 0 30px;
  height: 30px;
  position: relative;
  width: 30px;
}

.boat-faq-item summary span::before,
.boat-faq-item summary span::after {
  background: var(--boat-teal);
  content: "";
  height: 2px;
  left: 8px;
  position: absolute;
  top: 13px;
  width: 12px;
}

.boat-faq-item summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.boat-faq-item[open] summary span::after {
  transform: rotate(0);
}

.boat-faq-item > div {
  color: var(--boat-muted);
  max-width: 720px;
  padding: 0 56px 22px 4px;
}

.boat-faq-item p {
  margin: 0;
}

.boat-bottom-cta {
  background: var(--boat-teal-deep);
  color: var(--boat-white);
  text-align: center;
}

.boat-bottom-cta h2,
.boat-bottom-cta p {
  color: var(--boat-white) !important;
  text-align: center !important;
}

.boat-bottom-cta > .container > p:not(.boat-eyebrow) {
  margin: 0 auto 26px;
  max-width: 650px;
}

/* Footer */
.boat-footer {
  background: #002f37;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  margin: 0;
  padding: 64px 0 28px;
  text-align: left;
}

.boat-footer-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.35fr 0.8fr 1.1fr 1.1fr;
}

.boat-brand-footer {
  color: var(--boat-white);
  display: inline-block;
  margin-bottom: 18px;
}

.boat-footer-grid > div:first-child p {
  margin: 0;
  max-width: 260px;
}

.boat-footer h2 {
  color: var(--boat-white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin: 0 0 17px;
  text-transform: uppercase;
}

.boat-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-footer li {
  margin: 8px 0;
}

.boat-footer a,
.boat-text-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.boat-footer a:hover,
.boat-text-link:hover {
  color: #ffc599;
}

.boat-text-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  padding: 0;
  text-align: left;
}

.boat-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 48px;
  padding-top: 24px;
}

.boat-footer-bottom p {
  margin: 0;
}

/* Dialog and inquiry forms */
.boat-inquiry-dialog {
  background: var(--boat-white);
  border: 0;
  border-radius: var(--boat-radius);
  box-shadow: 0 30px 100px rgba(0, 36, 43, 0.35);
  color: var(--boat-ink);
  max-height: min(90vh, 900px);
  max-width: 780px;
  overflow: auto;
  padding: 30px;
  width: calc(100% - 30px);
}

.boat-inquiry-dialog::backdrop {
  background: rgba(0, 35, 42, 0.76);
  backdrop-filter: blur(4px);
}

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

.boat-dialog-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.boat-inquiry-dialog > p {
  color: var(--boat-muted);
  margin: 0 0 22px;
}

.boat-dialog-close {
  align-items: center;
  background: var(--boat-teal-soft);
  border: 0;
  border-radius: 50%;
  color: var(--boat-teal);
  cursor: pointer;
  display: flex;
  flex: 0 0 40px;
  font-size: 1.6rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  width: 40px;
}

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

.boat-field {
  color: var(--boat-ink);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 6px;
}

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

.boat-field input,
.boat-field select,
.boat-field textarea {
  background: var(--boat-white);
  border: 1px solid #bfd0d2;
  border-radius: 10px;
  color: var(--boat-ink);
  font-size: 0.95rem;
  font-weight: 400;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.boat-field textarea {
  min-height: 105px;
  resize: vertical;
}

.boat-field input:user-invalid,
.boat-field select:user-invalid,
.boat-field textarea:user-invalid {
  border-color: #ad3f2e;
}

.boat-form-note {
  color: var(--boat-muted);
  font-size: 0.78rem;
  margin: 16px 0;
}

.boat-form-submit {
  min-width: 290px;
}

.boat-form-submit[aria-busy="true"] .boat-spinner {
  display: block;
}

.boat-spinner {
  animation: boat-spin 750ms linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: var(--boat-white);
  display: none;
  height: 18px;
  margin-left: 9px;
  width: 18px;
}

@keyframes boat-spin {
  to { transform: rotate(360deg); }
}

.boat-form-status {
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
}

.boat-form-status.is-success,
.boat-form-status.is-error {
  padding: 14px;
}

.boat-form-status.is-success {
  background: #e4f6ed;
  color: #165b3a;
}

.boat-form-status.is-error {
  background: #fff0ed;
  color: #8a2e22;
}

.boat-form-summary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid currentColor;
  border-radius: 8px;
  display: block;
  font-family: inherit;
  margin-top: 10px;
  max-height: 140px;
  overflow: auto;
  padding: 9px;
  white-space: pre-wrap;
}

/* Breadcrumb and detail hero */
.boat-breadcrumb {
  padding-bottom: 16px;
  padding-top: 16px;
}

.boat-breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-breadcrumb li + li::before {
  color: #91a5a9;
  content: "/";
  margin-right: 8px;
}

.boat-breadcrumb a {
  color: var(--boat-teal);
  font-weight: 700;
  text-decoration: none;
}

.boat-breadcrumb li[aria-current="page"] {
  color: var(--boat-muted);
}

.boat-detail-hero {
  align-items: end;
  background: var(--boat-teal-deep);
  display: flex;
  min-height: 570px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.boat-detail-hero-media,
.boat-detail-hero-overlay {
  inset: 0;
  position: absolute;
}

.boat-detail-hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.boat-detail-hero-overlay {
  background: linear-gradient(0deg, rgba(0, 40, 48, 0.93) 0%, rgba(0, 40, 48, 0.5) 48%, rgba(0, 40, 48, 0.08) 100%);
}

.boat-detail-hero-content {
  color: var(--boat-white);
  padding-bottom: 64px;
  padding-top: 120px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.boat-detail-hero-content h1 {
  color: var(--boat-white);
  font-size: clamp(2.6rem, 5.5vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0 0 18px;
  max-width: 940px;
}

.boat-detail-hero-content > p {
  font-size: 1.14rem;
  margin: 0;
  max-width: 740px;
}

.boat-category-light {
  background: rgba(255, 255, 255, 0.92);
}

/* Detail content */
.boat-detail-overview {
  background: var(--boat-white);
}

.boat-detail-layout {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
}

.boat-detail-main > h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.boat-detail-main > p:not(.boat-eyebrow) {
  color: var(--boat-muted);
  font-size: 1.04rem;
  margin: 0 0 18px;
}

.boat-detail-section {
  border-top: 1px solid var(--boat-line);
  margin-top: 42px;
  padding-top: 32px;
}

.boat-detail-section h2 {
  font-size: 1.55rem !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 18px !important;
}

.boat-detail-section h3 {
  margin: 0 0 8px;
}

.boat-detail-section p {
  color: var(--boat-muted);
  margin: 0 0 14px;
}

.boat-detail-section .check-list li,
.boat-detail-section .cross-list li,
.boat-detail-section .info-list li {
  margin: 10px 0;
}

.boat-booking-panel {
  background: var(--boat-sand);
  border: 1px solid rgba(0, 80, 92, 0.12);
  border-radius: var(--boat-radius);
  padding: 27px;
  position: sticky;
  top: 20px;
}

.boat-quick-details {
  margin: 0;
}

.boat-quick-details > div {
  border-bottom: 1px solid rgba(0, 80, 92, 0.13);
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 12px 0;
}

.boat-quick-details dt {
  color: var(--boat-muted);
  font-size: 0.82rem;
}

.boat-quick-details dd {
  color: var(--boat-ink);
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.boat-current-pricing {
  color: var(--boat-teal);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 22px 0 15px;
}

.boat-booking-panel .boat-button-secondary {
  display: flex;
  margin-top: 10px;
  width: 100%;
}

.boat-panel-note {
  color: var(--boat-muted);
  font-size: 0.75rem;
  line-height: 1.45;
  margin: 15px 0 0;
  text-align: center;
}

.boat-detail-content-section {
  background: #f7faf9;
}

.boat-detail-content-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.boat-detail-content-grid .boat-detail-section:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.boat-itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
}

.boat-itinerary li {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  margin: 0;
  padding: 0 0 20px;
  position: relative;
}

.boat-itinerary li:not(:last-child)::after {
  background: var(--boat-line);
  content: "";
  height: calc(100% - 30px);
  left: 16px;
  position: absolute;
  top: 33px;
  width: 1px;
}

.boat-itinerary span {
  align-items: center;
  background: var(--boat-teal);
  border-radius: 50%;
  color: var(--boat-white);
  display: flex;
  font-size: 0.75rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
  z-index: 1;
}

.boat-itinerary p {
  margin: 3px 0 0 !important;
}

.boat-vessel-inquiry {
  background: var(--boat-teal-soft);
  border-radius: var(--boat-radius-sm);
  padding: 22px;
}

.boat-vessel-inquiry p {
  color: var(--boat-muted);
}

/* Gallery */
.boat-gallery-section {
  background: var(--boat-white);
}

.boat-gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, 260px);
}

.boat-gallery-item {
  border-radius: var(--boat-radius-sm);
  margin: 0;
  overflow: hidden;
}

.boat-gallery-item:first-child {
  grid-row: 1 / 3;
}

.boat-gallery-item:nth-child(4) {
  display: none;
}

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

/* Inline event form */
.boat-event-inquiry-section {
  background: var(--boat-sand);
}

.boat-event-inquiry-layout {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
}

.boat-event-inquiry-layout > div:first-child {
  position: sticky;
  top: 20px;
}

.boat-event-inquiry-layout > div:first-child > p:not(.boat-eyebrow) {
  color: var(--boat-muted);
}

.boat-inline-form-card {
  background: var(--boat-white);
  border-radius: var(--boat-radius);
  box-shadow: var(--boat-shadow);
  padding: 30px;
}

/* Related cards */
.boat-related-section {
  background: var(--boat-sand);
}

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

.boat-related-card {
  background: var(--boat-white);
  border-radius: var(--boat-radius-sm);
  box-shadow: 0 8px 24px rgba(0, 59, 69, 0.08);
  overflow: hidden;
}

.boat-related-card > a {
  color: var(--boat-ink);
  display: block;
  text-decoration: none;
}

.boat-related-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.boat-related-card div {
  padding: 20px;
}

.boat-related-card div > span {
  color: var(--boat-orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.boat-related-card h3 {
  margin: 7px 0 12px;
}

.boat-related-card p {
  color: var(--boat-teal);
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0;
}

.boat-mobile-booking-bar {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .boat-tour-card:hover .boat-card-image img,
  .boat-related-card:hover img {
    transform: scale(1.035);
  }

  .boat-tour-card:hover {
    box-shadow: var(--boat-shadow);
  }

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

@media (max-width: 980px) {
  .boat-shared-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boat-shared-grid .boat-tour-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 12px);
  }

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

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

  .boat-detail-layout,
  .boat-detail-content-grid {
    gap: 42px;
  }

  .boat-event-inquiry-layout {
    gap: 35px;
    grid-template-columns: minmax(0, 0.7fr) minmax(450px, 1.3fr);
  }
}

@media (max-width: 820px) {
  .boat-nav-toggle {
    display: flex;
  }

  .boat-primary-nav {
    background: var(--boat-white);
    border-bottom: 1px solid var(--boat-line);
    box-shadow: 0 16px 30px rgba(0, 59, 69, 0.12);
    display: none;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .boat-primary-nav.is-open {
    display: block;
  }

  .boat-primary-nav > ul {
    align-items: stretch;
    display: grid;
    gap: 3px;
  }

  .boat-primary-nav > ul > li > a {
    border-radius: 8px;
    padding: 12px;
  }

  .boat-nav-dropdown > ul {
    border: 0;
    box-shadow: none;
    display: block;
    left: auto;
    margin: 0 0 5px 16px;
    min-width: 0;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .boat-nav-dropdown > ul a {
    padding: 9px 12px;
  }

  .boat-section {
    padding: 72px 0;
  }

  .boat-section-subheading {
    align-items: start;
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .boat-comparison-table-wrap {
    display: none;
  }

  .boat-comparison-cards {
    display: grid;
    gap: 14px;
  }

  .boat-comparison-cards article {
    border: 1px solid var(--boat-line);
    border-radius: var(--boat-radius-sm);
    padding: 20px;
  }

  .boat-comparison-cards h3 {
    margin: 12px 0 15px;
  }

  .boat-comparison-cards dl {
    margin: 0 0 18px;
  }

  .boat-comparison-cards dl > div {
    border-top: 1px solid var(--boat-line);
    display: grid;
    gap: 12px;
    grid-template-columns: 100px 1fr;
    padding: 10px 0;
  }

  .boat-comparison-cards dt {
    color: var(--boat-muted);
    font-size: 0.8rem;
  }

  .boat-comparison-cards dd {
    color: var(--boat-ink);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
  }

  .boat-comparison-cards a {
    color: var(--boat-orange-dark);
    font-weight: 800;
  }

  .boat-event-card {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 42px 42px 0;
  }

  .boat-event-image {
    margin: 36px -42px 0;
    width: calc(100% + 84px);
  }

  .boat-event-image,
  .boat-event-image img {
    min-height: 380px;
  }

  .boat-detail-layout,
  .boat-detail-content-grid,
  .boat-event-inquiry-layout {
    grid-template-columns: 1fr;
  }

  .boat-booking-panel,
  .boat-event-inquiry-layout > div:first-child {
    position: static;
  }

  .boat-event-inquiry-layout {
    gap: 30px;
  }

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

  .boat-related-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 11px);
  }

  .boat-detail-page {
    padding-bottom: 82px;
  }

  .boat-mobile-booking-bar {
    align-items: center;
    background: var(--boat-white);
    border-top: 1px solid var(--boat-line);
    bottom: 0;
    box-shadow: 0 -10px 30px rgba(0, 59, 69, 0.14);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
    position: fixed;
    right: 0;
    z-index: 90;
  }

  .boat-mobile-booking-bar > div {
    line-height: 1.2;
    min-width: 0;
  }

  .boat-mobile-booking-bar span {
    color: var(--boat-muted);
    display: block;
    font-size: 0.68rem;
  }

  .boat-mobile-booking-bar strong {
    display: block;
    font-size: 0.76rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .boat-mobile-booking-bar .boat-button {
    flex: 0 0 auto;
    font-size: 0.72rem;
    min-height: 44px;
    padding: 10px 16px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .boat-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .boat-header-inner {
    min-height: 68px;
  }

  .boat-section {
    padding: 58px 0;
  }

  .boat-page section h2 {
    font-size: 2rem;
  }

  .boat-section-heading {
    margin-bottom: 34px;
  }

  .boat-hero {
    min-height: 610px;
  }

  .boat-hero-overlay {
    background: linear-gradient(0deg, rgba(0, 38, 46, 0.97) 0%, rgba(0, 49, 57, 0.75) 57%, rgba(0, 49, 57, 0.32) 100%);
  }

  .boat-hero-content {
    align-self: end;
    padding-bottom: 46px;
    padding-top: 120px;
  }

  .boat-hero-content h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .boat-button-group .boat-button {
    width: 100%;
  }

  .boat-trust-line {
    line-height: 1.8;
    text-align: center;
  }

  .boat-filters {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .boat-shared-grid,
  .boat-private-grid,
  .boat-benefit-grid,
  .boat-step-grid,
  .boat-related-grid {
    grid-template-columns: 1fr;
  }

  .boat-shared-grid .boat-tour-card:last-child,
  .boat-related-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .boat-card-body {
    padding: 22px;
  }

  .boat-benefit-grid article > span {
    margin-bottom: 22px;
  }

  .boat-step-grid li,
  .boat-step-grid li:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 28px 0;
  }

  .boat-step-grid li:first-child {
    border-top: 0;
  }

  .boat-event-card {
    border-radius: var(--boat-radius);
    padding: 32px 24px 0;
  }

  .boat-event-image {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .boat-event-image,
  .boat-event-image img {
    min-height: 300px;
  }

  .boat-footer-grid {
    grid-template-columns: 1fr;
  }

  .boat-inquiry-dialog {
    border-radius: 16px;
    padding: 22px 18px;
  }

  .boat-form-grid {
    grid-template-columns: 1fr;
  }

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

  .boat-form-submit {
    min-width: 0;
    width: 100%;
  }

  .boat-detail-hero {
    min-height: 480px;
  }

  .boat-detail-hero-content {
    padding-bottom: 38px;
    padding-top: 100px;
  }

  .boat-detail-hero-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .boat-detail-hero-content > p {
    font-size: 1rem;
  }

  .boat-detail-layout,
  .boat-detail-content-grid {
    gap: 36px;
  }

  .boat-booking-panel,
  .boat-inline-form-card {
    padding: 22px;
  }

  .boat-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
  }

  .boat-gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .boat-gallery-item:nth-child(4) {
    display: none;
  }

  .boat-faq-item summary {
    font-size: 1rem;
    padding: 18px 2px;
  }

  .boat-faq-item > div {
    padding-left: 2px;
    padding-right: 40px;
  }

  .boat-mobile-booking-bar > div {
    display: none;
  }

  .boat-mobile-booking-bar .boat-button {
    width: 100%;
  }
}

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

  .boat-page *,
  .boat-page *::before,
  .boat-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
