:root {
  --ink: #102d3b;
  --ink-soft: #49636f;
  --navy: #062c3f;
  --navy-2: #0a4158;
  --teal: #079bb4;
  --teal-dark: #087d94;
  --aqua: #74d7df;
  --sun: #ffdb55;
  --coral: #ff765f;
  --sand: #f6f0e5;
  --foam: #f7fcfd;
  --white: #ffffff;
  --line: #d6e4e7;
  --shadow: 0 1.25rem 3.5rem rgba(6, 44, 63, 0.13);
  --shadow-soft: 0 0.65rem 2rem rgba(6, 44, 63, 0.09);
  --radius-sm: 0.8rem;
  --radius: 1.35rem;
  --radius-lg: 2rem;
  --container: 74rem;
  --header-height: 5.25rem;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

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

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

:focus-visible {
  outline: 0.2rem solid var(--coral);
  outline-offset: 0.2rem;
}

::selection {
  color: var(--navy);
  background: var(--sun);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.45rem, 8.5vw, 5.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5.5vw, 3.65rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}

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

.topbar {
  color: #e8f8fa;
  background: var(--navy);
  font-size: 0.82rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  text-align: center;
}

.topbar p {
  margin: 0;
}

.topbar-contact {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0.0625rem solid rgba(6, 44, 63, 0.1);
  box-shadow: 0 0.25rem 1.4rem rgba(6, 44, 63, 0.05);
  backdrop-filter: blur(1rem);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.72rem;
  color: var(--navy);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  top: 0.54rem;
  left: 0.72rem;
  width: 0;
  height: 0;
  border-right: 0.72rem solid transparent;
  border-bottom: 1.32rem solid var(--teal);
  border-left: 0.72rem solid transparent;
  content: "";
  transform: rotate(-7deg);
}

.brand-mark::after {
  position: absolute;
  right: 0.55rem;
  bottom: 0.48rem;
  left: 0.55rem;
  height: 0.38rem;
  background: var(--coral);
  border-radius: 0 0 50% 50%;
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-service {
  margin-top: 0.32rem;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: var(--foam);
  border: 0.0625rem solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 0.12rem;
  background: currentColor;
  border-radius: 2rem;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-lines::before {
  top: -0.4rem;
}

.nav-toggle-lines::after {
  top: 0.4rem;
}

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

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

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

.site-nav {
  position: fixed;
  inset: calc(2.35rem + var(--header-height)) 0 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(6, 44, 63, 0.98);
  opacity: 0;
  transform: translateY(-0.6rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-nav ul {
  display: grid;
  max-width: 36rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 1rem;
  color: var(--white);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.13);
  font-size: 1.12rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--sun);
}

.site-nav .nav-cta {
  margin-top: 1rem;
  color: var(--navy);
  background: var(--sun);
  border: 0;
  border-radius: 0.8rem;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  color: var(--white);
  background: var(--teal-dark);
  border: 0.125rem solid var(--teal-dark);
  border-radius: 999px;
  box-shadow: 0 0.55rem 1.2rem rgba(8, 125, 148, 0.2);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, color 150ms ease, background 150ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0.8rem 1.5rem rgba(6, 44, 63, 0.2);
  transform: translateY(-0.12rem);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--sun);
  border-color: var(--sun);
}

.button-outline {
  color: var(--teal-dark);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: var(--white);
}

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

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(47rem, calc(100svh - 6rem));
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.home-hero picture,
.home-hero img,
.home-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero img {
  object-fit: cover;
  object-position: 66% center;
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(6, 44, 63, 0.16), rgba(6, 44, 63, 0.45) 45%, rgba(6, 44, 63, 0.94));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5.5rem 4rem;
}

.hero-content .eyebrow {
  color: var(--sun);
}

.hero-content h1 {
  max-width: 13ch;
  color: var(--white);
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 37rem;
  color: #effcfd;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 1.6rem 0 0;
  gap: 0.55rem;
  list-style: none;
}

.hero-note li {
  padding: 0.45rem 0.75rem;
  color: var(--white);
  background: rgba(6, 44, 63, 0.62);
  border: 0.0625rem solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(0.5rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.2rem 3.7rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.page-hero::after {
  position: absolute;
  right: -9rem;
  bottom: -13rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(116, 215, 223, 0.25), transparent 67%);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(2.55rem, 7.5vw, 4.9rem);
}

.page-hero .lead {
  color: #def5f7;
}

.page-hero .eyebrow {
  color: var(--sun);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 1.8rem;
  gap: 0.4rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbe9ec;
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--aqua);
  content: "/";
}

.breadcrumbs a {
  color: var(--white);
}

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

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

.section-tint {
  background: var(--foam);
}

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

.section-dark {
  color: #e9f9fa;
  background: var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: var(--sun);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading > p:not(.eyebrow) {
  max-width: 43rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: #cbe9ec;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
  gap: 1.15rem;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #d9eef1;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.card:hover .card-media img {
  transform: scale(1.025);
}

.card-body {
  padding: 1.35rem;
}

.card-body p {
  color: var(--ink-soft);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.card-link::after {
  margin-left: 0.45rem;
  content: "→";
  transition: transform 150ms ease;
}

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

.tour-meta,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 1rem;
  gap: 0.45rem;
  list-style: none;
}

.tour-meta li,
.tag {
  padding: 0.35rem 0.62rem;
  color: var(--navy);
  background: #e8f8fa;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-line {
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
}

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

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

.split-media {
  overflow: hidden;
  background: #dceff1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content p {
  color: var(--ink-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.5rem;
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
}

.feature-number,
.feature-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--navy);
  background: var(--sun);
  border-radius: 50%;
  font-weight: 900;
}

.feature p {
  color: var(--ink-soft);
}

.check-list,
.plain-list {
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  position: absolute;
  top: 0.02rem;
  left: 0;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 900;
}

.plain-list li {
  padding-block: 0.65rem;
  border-bottom: 0.0625rem solid var(--line);
}

.notice {
  padding: 1rem 1.15rem;
  color: #5f4b0c;
  background: #fff7d7;
  border-left: 0.3rem solid var(--sun);
  border-radius: 0.3rem var(--radius-sm) var(--radius-sm) 0.3rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  margin: 1.6rem 0 0;
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
}

.fact {
  padding: 1rem;
}

.fact + .fact {
  border-top: 0.0625rem solid var(--line);
}

.fact dt {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact dd {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-weight: 850;
}

.detail-layout {
  display: grid;
  gap: 2rem;
}

.detail-aside {
  align-self: start;
  padding: 1.35rem;
  background: var(--foam);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
}

.detail-aside h2 {
  font-size: 1.65rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--foam);
  border-radius: var(--radius-sm);
}

.gallery-grid picture,
.gallery-grid img {
  width: 100%;
  height: 100%;
}

.gallery-grid img {
  min-height: 11rem;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.faq-list details {
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.15rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  color: var(--teal-dark);
  content: "+";
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

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

.faq-answer {
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 5vw, 3rem);
  color: #def5f7;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-band::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 17rem;
  height: 17rem;
  background: rgba(255, 219, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 1.35rem;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}

.booking-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.booking-form {
  padding: clamp(1.25rem, 4vw, 2.1rem);
  background: var(--white);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 0.0625rem solid #afc8ce;
  border-radius: 0.65rem;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 0.22rem rgba(7, 155, 180, 0.16);
  outline: 0;
}

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

.form-help,
.form-status {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: #176c54;
}

.form-status[data-state="error"] {
  color: #9d2f23;
}

.contact-card {
  padding: 1.4rem;
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-card h2,
.contact-card h3,
.contact-card a,
.contact-card address {
  color: var(--white);
}

.contact-card p {
  color: #cbe9ec;
}

.contact-card address {
  font-style: normal;
}

.policy-content h2 {
  margin-top: 2.35rem;
  font-size: 1.75rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.policy-content li {
  margin-bottom: 0.55rem;
}

.empty-state {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--foam);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.site-footer {
  padding: 4.5rem 0 6.3rem;
  color: #d8eff1;
  background: #041f2d;
}

.site-footer .brand-name,
.site-footer .brand-service {
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: #d8eff1;
}

.footer-grid a:hover {
  color: var(--sun);
}

.footer-brand p,
.footer-brand address {
  color: #a9cbd0;
  font-style: normal;
}

.footer-bottom {
  display: grid;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  gap: 0.4rem;
  color: #8fb8bf;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  padding: 0.55rem;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.97);
  border-top: 0.0625rem solid var(--line);
  box-shadow: 0 -0.5rem 1.5rem rgba(6, 44, 63, 0.12);
  backdrop-filter: blur(1rem);
}

.mobile-actions .button-secondary {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

@media (min-width: 34rem) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact + .fact {
    border-top: 0;
    border-left: 0.0625rem solid var(--line);
  }

  .gallery-grid {
    gap: 1rem;
  }
}

@media (min-width: 48rem) {
  .topbar .container {
    justify-content: space-between;
  }

  .topbar-contact {
    display: flex;
    gap: 1rem;
  }

  .topbar-contact a {
    color: var(--white);
  }

  .hero-content {
    padding-block: 7rem 5.5rem;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(6, 44, 63, 0.96) 0%, rgba(6, 44, 63, 0.74) 40%, rgba(6, 44, 63, 0.08) 78%);
  }

  .home-hero img {
    object-position: center;
  }

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

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

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
    gap: 3rem;
  }

  .detail-aside {
    position: sticky;
    top: 7rem;
  }

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

  .booking-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
  }

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

  .gallery-grid figure:first-child {
    grid-column: span 2;
  }

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

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

@media (min-width: 68rem) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    visibility: visible;
    overflow: visible;
    padding: 0;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .site-nav ul {
    display: flex;
    max-width: none;
    align-items: center;
    gap: 0.18rem;
  }

  .site-nav a {
    padding: 0.72rem 0.62rem;
    color: var(--navy);
    border: 0;
    border-radius: 0.55rem;
    font-size: 0.86rem;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--teal-dark);
    background: var(--foam);
  }

  .site-nav .nav-cta {
    margin: 0 0 0 0.45rem;
    padding-inline: 1rem;
    color: var(--navy);
    background: var(--sun);
  }

  .site-nav .nav-cta:hover {
    color: var(--white);
    background: var(--teal-dark);
  }

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

  .mobile-actions {
    display: none;
  }

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

@media (min-width: 84rem) {
  .site-nav a {
    padding-inline: 0.8rem;
    font-size: 0.9rem;
  }
}

@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,
  .button,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero {
    padding-block: 1rem;
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .page-hero .lead {
    color: #000;
  }
}
