:root {
  --ink: #101113;
  --ink-soft: #25272a;
  --gold: #f5b133;
  --gold-dark: #bd7410;
  --sea: #087e9d;
  --sea-dark: #04566e;
  --paper: #ffffff;
  --sand: #f6f3ec;
  --mist: #e9eef0;
  --muted: #5b6066;
  --line: #d9dce0;
  --success: #1c7651;
  --danger: #a22d2d;
  --shadow: 0 18px 50px rgba(16, 17, 19, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --container: 75rem;
  --display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sea);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 0.4rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.section-compact {
  padding-block: clamp(2.75rem, 6vw, 5rem);
}

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

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-sea {
  background: var(--sea-dark);
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.85rem;
  height: 0.22rem;
  border-radius: 1rem;
  background: var(--gold);
  content: "";
}

.section-dark .eyebrow,
.section-sea .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  color: inherit;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2.65rem, 10.5vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 6.5vw, 3.75rem);
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

h4 {
  font-size: 1.15rem;
}

p,
ul,
ol {
  margin-top: 0;
}

.lead {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-dark .lead,
.section-sea .lead {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head > :last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border: 2px solid var(--gold);
  border-radius: 0.45rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #ffc557;
  background: #ffc557;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

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

.button-outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.text-link {
  color: var(--sea-dark);
  font-weight: 850;
}

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.topbar-inner span {
  display: none;
}

.topbar a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 17, 19, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 24px rgba(16, 17, 19, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 4.85rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 8.7rem;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand-main {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.055em;
  transform: skewX(-7deg);
}

.brand-sub {
  margin-top: -0.1rem;
  padding-left: 1.5rem;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.brand::after {
  position: absolute;
  right: 0.4rem;
  bottom: -0.24rem;
  left: 0.1rem;
  height: 0.35rem;
  border-radius: 100% 0 100% 0;
  background: var(--gold);
  content: "";
  transform: skewX(-28deg) rotate(-3deg);
}

.nav-toggle {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 0.45rem;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-0.42rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.31rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0.1rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  top: 7.35rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow-y: auto;
  padding: 1rem;
  background: var(--paper);
}

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

.nav-list,
.nav-submenu,
.footer-links,
.social-list,
.clean-list,
.check-list,
.meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: grid;
  gap: 0.25rem;
}

.nav-list > li > a,
.nav-dropdown summary {
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.7rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"],
.nav-dropdown summary:hover {
  background: var(--sand);
}

.nav-list > li > a[aria-current="page"] {
  box-shadow: inset 0 -3px var(--gold);
}

.nav-dropdown summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  color: var(--gold-dark);
  content: "+";
  font-size: 1.2rem;
}

.nav-dropdown[open] summary::after {
  content: "−";
}

.nav-submenu {
  display: grid;
  gap: 0.1rem;
  padding: 0.3rem 0 0.65rem 1rem;
}

.nav-submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-submenu a:hover {
  background: var(--sand);
}

.nav-pay {
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(47rem, calc(100svh - 7.35rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero picture,
.hero-image,
.page-hero picture,
.page-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.page-hero-image {
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 9, 0.9) 0%, rgba(5, 7, 9, 0.72) 48%, rgba(5, 7, 9, 0.25) 100%);
  content: "";
}

.hero-content {
  max-width: 46rem;
  padding-block: clamp(5rem, 13vw, 9rem);
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
}

.hero-actions,
.cta-actions,
.form-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
}

.hero-note::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.35rem rgba(245, 177, 51, 0.18);
  content: "";
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 25rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.page-hero-content {
  max-width: 52rem;
  padding-block: clamp(5rem, 10vw, 7.5rem) clamp(3.5rem, 7vw, 5rem);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.page-hero p {
  max-width: 43rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.booking-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
}

.booking-strip-inner {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.booking-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.booking-strip p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-grid,
.tour-grid,
.feature-grid,
.fleet-grid,
.post-grid,
.footer-grid,
.steps,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.tour-card,
.feature-card,
.fleet-card,
.post-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 32px rgba(16, 17, 19, 0.06);
}

.service-card,
.feature-card,
.fleet-card,
.post-card {
  padding: clamp(1.35rem, 4vw, 2rem);
}

.service-card::before,
.feature-card::before,
.fleet-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.34rem;
  background: var(--gold);
  content: "";
}

.card-index {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
}

.service-card p,
.feature-card p,
.fleet-card p,
.post-card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sea-dark);
  font-weight: 900;
  text-decoration: none;
}

.card-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.card-link:hover::after {
  transform: translateX(0.25rem);
}

.tour-card picture,
.tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.tour-card img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.tour-card:hover img {
  transform: scale(1.035);
}

.tour-card-content {
  padding: 1.4rem;
}

.card-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -0.75rem;
  bottom: -0.75rem;
  width: 70%;
  height: 70%;
  border-radius: var(--radius);
  background: var(--gold);
  content: "";
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.stats-band {
  background: var(--ink);
  color: var(--paper);
}

.stats-grid {
  padding-block: 1.5rem;
}

.stat {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:last-child {
  border-bottom: 0;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 1.5rem 1.3rem 1.3rem 4.25rem;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--sand);
}

.step::before {
  position: absolute;
  top: 1.35rem;
  left: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  font-family: var(--display);
}

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

.notice {
  padding: 1rem 1.1rem;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff8e9;
  color: #493714;
}

.notice-dark {
  background: rgba(245, 177, 51, 0.12);
  color: rgba(255, 255, 255, 0.87);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.faq-list summary {
  position: relative;
  padding: 1.05rem 3rem 1.05rem 1.1rem;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: var(--gold-dark);
  content: "+";
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

.quote-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.08rem;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 850;
}

.contact-grid,
.form-grid {
  display: grid;
  gap: 1rem;
}

.contact-panel,
.form-shell {
  padding: clamp(1.4rem, 5vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-panel {
  background: var(--ink);
  color: var(--paper);
}

.contact-panel a {
  color: var(--gold);
  font-weight: 800;
}

.contact-panel .muted {
  color: rgba(255, 255, 255, 0.72);
}

.form-group {
  min-width: 0;
}

.form-group label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.required {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #b9bec4;
  border-radius: 0.45rem;
  background: var(--paper);
  color: var(--ink);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(8, 126, 157, 0.15);
  outline: 0;
}

.form-group-full,
.form-actions {
  grid-column: 1 / -1;
}

.form-help {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--success);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--danger);
}

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

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  gap: 2.5rem;
}

.article-content {
  max-width: 48rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 2.25rem;
}

.article-content h2 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
}

.article-content h3 {
  font-size: clamp(1.3rem, 3.8vw, 1.75rem);
}

.article-content a {
  color: var(--sea-dark);
  font-weight: 750;
}

.article-aside {
  align-self: start;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--sand);
}

.article-aside ul {
  margin-bottom: 0;
}

.breadcrumb {
  background: var(--sand);
  font-size: 0.84rem;
}

.breadcrumb ol {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--gold-dark);
  content: "/";
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
}

.cta-band::after {
  position: absolute;
  right: -4rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  border: 3rem solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.cta-band h2 {
  max-width: 18ch;
}

.cta-band p {
  max-width: 43rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 4rem 0 6.25rem;
  background: #090a0b;
  color: var(--paper);
}

.footer-grid {
  gap: 2.25rem;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
  color: var(--paper);
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-column h3 {
  color: var(--gold);
  font-size: 1.15rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a,
.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-column a:hover {
  color: var(--gold);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-list a {
  display: inline-grid;
  min-width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  padding-inline: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.18);
}

.mobile-actions a {
  display: grid;
  min-height: 3.8rem;
  place-items: center;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-actions a:nth-child(2) {
  background: var(--sea-dark);
}

.mobile-actions a:last-child {
  background: var(--gold);
  color: var(--ink);
}

.error-page {
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding-block: 5rem;
  background: var(--ink);
  color: var(--paper);
}

.error-code {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(6rem, 28vw, 14rem);
  line-height: 0.75;
}

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

@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .topbar-inner {
    justify-content: space-between;
  }

  .topbar-inner span {
    display: inline;
  }

  .booking-strip-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.5rem 1.75rem;
  }

  .service-grid,
  .tour-grid,
  .feature-grid,
  .fleet-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 0;
    padding-inline: 1rem;
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

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

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

@media (min-width: 64rem) {
  body.nav-open {
    overflow: visible;
  }

  .header-inner {
    min-height: 5.5rem;
  }

  .brand {
    width: 9.3rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: block;
    overflow: visible;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.05rem;
  }

  .nav-list > li > a,
  .nav-dropdown summary {
    min-height: 2.8rem;
    padding: 0.55rem 0.55rem;
    font-size: 0.73rem;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown summary::after {
    margin-left: 0.35rem;
    content: "▾";
    font-size: 0.8rem;
  }

  .nav-dropdown[open] summary::after {
    content: "▴";
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    width: 16.5rem;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-submenu a {
    border-left: 0;
    border-radius: 0.35rem;
  }

  .nav-pay {
    margin: 0 0 0 0.25rem;
  }

  .hero {
    min-height: min(49rem, calc(100svh - 8rem));
  }

  .section-head {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: end;
  }

  .section-head .lead {
    justify-self: end;
  }

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

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

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  }

  .split-reverse .split-media {
    order: 2;
  }

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

  .stat,
  .stat:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat:last-child {
    border-right: 0;
  }

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

  .contact-grid {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 18rem;
    align-items: start;
  }

  .cta-band-inner {
    grid-template-columns: minmax(0, 1.25fr) auto;
  }

  .cta-actions {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.8fr 0.9fr 1fr;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-actions {
    display: none;
  }
}

@media (min-width: 80rem) {
  .nav-list > li > a,
  .nav-dropdown summary {
    padding-inline: 0.72rem;
    font-size: 0.79rem;
  }

  .brand {
    width: 10.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-actions,
  .cta-band,
  .site-footer,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .page-hero,
  .hero {
    min-height: 0;
    background: #fff;
    color: #000;
  }

  .page-hero picture,
  .hero picture,
  .page-hero::after,
  .hero::after {
    display: none;
  }
}
