@font-face {
  font-family: Manrope;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --color-navy: #0a1833;
  --color-blue: #103e71;
  --color-gold: #aa812f;
  --color-light-gold: #e6c262;
  --color-warm-white: #f8f7f3;
  --color-white: #fff;
  --color-charcoal: #161a20;
  --color-muted: #5c6675;
  --color-line: #e3e7ec;
  --color-pale-blue: #eef3f8;
  --color-error: #b3261e;
  --color-success: #245e46;
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-section: 6.5rem;
  --shadow-soft: 0 8px 32px rgb(10 24 51 / 6%);
  --shadow-header: 0 3px 18px rgb(10 24 51 / 5%);
  --transition: 180ms ease;
  --font-family: Manrope, Arial, sans-serif;
  --font-body: 1rem;
  --font-small: 0.875rem;
  --line-body: 1.7;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-family);
  font-size: var(--font-body);
  line-height: var(--line-body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 750;
}
h3 {
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--color-muted);
}
ul,
ol {
  padding: 0;
  margin: 0;
}
button {
  border: 0;
}
input,
select,
textarea {
  min-width: 0;
}
input[type='date'],
input[type='time'] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
}
input::-webkit-date-and-time-value {
  text-align: left;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible {
  border-radius: 5px;
}
.site-footer :focus-visible,
.mid-cta :focus-visible {
  outline-color: var(--color-light-gold);
}
::selection {
  background: var(--color-light-gold);
  color: var(--color-navy);
}
.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: var(--space-section);
}
.icon {
  width: 24px;
  height: 24px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: var(--font-small);
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
  transition:
    background var(--transition),
    transform var(--transition),
    border-color var(--transition);
}
.button:hover {
  transform: translateY(-2px);
}
.button .icon {
  width: 19px;
  height: 19px;
}
.button--gold {
  background: var(--color-light-gold);
  color: var(--color-navy);
}
.button--gold:hover {
  background: #efd184;
}
.button--outline {
  border-color: #cdd4dc;
  background: transparent;
}
.button--outline:hover {
  background: var(--color-pale-blue);
  border-color: var(--color-blue);
}
.button--full {
  width: 100%;
}
.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.button-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 23px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 750;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--color-blue);
  margin-bottom: 20px;
}
.eyebrow-line {
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  background: var(--color-navy);
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
/* Navigation remains usable without JavaScript. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  gap: 30px;
  transition: min-height var(--transition);
}
.is-scrolled .header-inner {
  min-height: 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__image {
  width: 68px;
  height: 46px;
  object-fit: contain;
}
.brand__wordmark {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}
.brand__wordmark > span {
  color: var(--color-gold);
}
.brand__wordmark small {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.27em;
  font-weight: 600;
  margin-top: 7px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}
.main-nav > a:not(.button) {
  font-size: 0.875rem;
  font-weight: 650;
  white-space: nowrap;
  padding-block: 16px;
}
.main-nav > a:not(.button):hover {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 7px;
}
.nav-cta {
  font-size: 0.875rem;
  min-height: 46px;
  padding: 12px 17px;
}
.nav-cta .icon {
  width: 17px;
}
.menu-toggle {
  background: var(--color-pale-blue);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  height: 2px;
  width: 21px;
  background: var(--color-navy);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.admin-bar .site-header {
  top: 32px;
}
/* A spacious split hero with a shared reservation card. */
.hero {
  background: var(--color-warm-white);
  padding-top: 35px;
  padding-bottom: 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  column-gap: 38px;
  row-gap: 0;
}
.hero-copy {
  padding-top: 34px;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.15vw, 3.6rem);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.055em;
  max-width: 580px;
}
.hero h1 > span {
  color: var(--color-blue);
}
.hero-copy > p {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-block: 24px 28px;
}
.hero-copy .button-group {
  gap: 20px;
}
.hero-checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-top: 26px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #49546a;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-checks .icon {
  width: 15px;
  height: 15px;
  color: var(--color-blue);
  stroke-width: 2;
}
.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 535px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-self: stretch;
  margin-bottom: 0;
  background: #dfe5e8;
}
.hero-visual picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}
.location-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgb(255 255 255 / 93%);
  border-radius: 30px;
  padding: 10px 15px;
}
.location-chip .icon {
  width: 16px;
  height: 16px;
}
.hero-caption {
  position: absolute;
  bottom: 45px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgb(255 255 255 / 96%);
  border-radius: var(--radius-md);
  max-width: 365px;
  box-shadow: var(--shadow-soft);
}
.hero-caption__icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-pale-blue);
  color: var(--color-blue);
}
.hero-caption strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}
.hero-caption div > span {
  font-size: 0.75rem;
  color: var(--color-muted);
}
.quick-booking {
  grid-column: 1/-1;
  background: white;
  border: 1px solid #eceef0;
  padding: 28px 30px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
  margin-top: 22px;
}
.quick-booking__heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.quick-booking__heading h2 {
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}
.quick-booking__heading p {
  font-size: 0.875rem;
  max-width: 450px;
}
.quick-booking__private {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--color-muted);
}
.quick-booking__private .icon {
  width: 14px;
  height: 14px;
}
.quick-form {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 0.8fr 1.25fr;
  gap: 16px;
  align-items: start;
}
.quick-form > .button {
  margin-top: 29px;
  padding-inline: 15px;
  white-space: normal;
}
.trust-bar {
  border-bottom: 1px solid var(--color-line);
  background: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 104px;
  align-items: center;
  gap: 20px;
}
.trust-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.5;
}
.trust-grid > div + div {
  border-left: 1px solid var(--color-line);
  padding-left: 20px;
}
.trust-grid .icon {
  color: var(--color-blue);
  width: 25px;
  height: 25px;
}
/* Forms */
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.field label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}
.field label > span:not(.optional) {
  color: var(--color-blue);
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 1px solid #d9dfe6;
  border-radius: var(--radius-sm);
  background: white;
  color: var(--color-navy);
  min-height: 52px;
  padding: 12px 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #727a86;
  opacity: 1;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #a4b2c1;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-color: var(--color-blue);
}
.field textarea {
  resize: vertical;
}
.field select {
  padding-right: 25px;
}
.input-icon {
  position: relative;
}
.input-icon > .icon {
  position: absolute;
  left: 12px;
  top: 16px;
  width: 19px;
  height: 19px;
  color: #6f7c8d;
  pointer-events: none;
}
.input-icon input {
  padding-left: 39px;
}
.field-error {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-error);
}
.field-error:empty {
  display: none;
}
[aria-invalid='true'] {
  border-color: var(--color-error);
}
.field-hint,
.optional {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--color-muted);
}
.field--full {
  grid-column: 1/-1;
}
.form-required-note {
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.consent-field {
  margin-block: 24px;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.7;
  min-height: 44px;
}
.consent-field input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin: 2px 0 0;
  accent-color: var(--color-blue);
}
.consent-field .field-error {
  display: block;
  margin-top: 6px;
}
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.6875rem;
  margin-top: 15px;
  line-height: 1.6;
}
.privacy-note .icon {
  width: 14px;
  height: 14px;
}
.honey-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.form-status {
  display: none;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-pale-blue);
  border-left: 3px solid var(--color-blue);
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-error {
  border-left-color: var(--color-error);
  background: #fff4f2;
}
.form-status.is-success {
  border-left-color: var(--color-success);
  background: #eff8f2;
}
.form-contact-fallback {
  margin-bottom: 24px;
}
/* Services */
.section-heading {
  margin-bottom: 38px;
}
.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}
.section-heading--split > div {
  max-width: 680px;
}
.section-heading--split > p {
  max-width: 340px;
  flex-shrink: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  padding-bottom: 4px;
}
.section-heading--split > .text-link {
  flex-shrink: 0;
}
.section-heading h2 {
  max-width: 670px;
}
.section-heading--center {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
}
.section-heading--center .eyebrow {
  justify-content: center;
}
.section-heading--center h2 {
  margin-inline: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 25px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #bccbda;
  box-shadow: var(--shadow-soft);
}
.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.icon-tile {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--color-pale-blue);
  color: var(--color-blue);
}
.card-number {
  font-size: 0.75rem;
  color: #607287;
}
.service-card h3 {
  font-size: 1.1875rem;
  line-height: 1.35;
  max-width: 200px;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 26px;
}
.service-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 750;
  margin-top: auto;
  min-height: 44px;
}
.service-card__link .icon {
  width: 18px;
  height: 18px;
}
.service-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* Destinations */
.destinations-section {
  background: var(--color-warm-white);
}
.destinations-section h2 {
  max-width: 740px;
}
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.destination-feature {
  min-height: 388px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--color-blue);
  color: white;
}
.destination-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.destination-feature::after {
  content: '';
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(10, 24, 51, 0.85));
}
.destination-feature:hover > img {
  transform: scale(1.03);
}
.destination-feature__content {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 1;
}
.destination-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.destination-tag .icon {
  width: 15px;
  height: 15px;
}
.destination-feature h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.destination-feature h3 > span {
  font-weight: 400;
}
.destination-feature p {
  color: #f1f3f6;
  font-size: 0.8125rem;
  margin-top: 8px;
}
.round-arrow {
  position: absolute;
  bottom: 32px;
  right: 28px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid #d5dce3;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.round-arrow .icon {
  width: 19px;
  height: 19px;
}
.destination-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.destination-item {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--color-line);
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 17px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.destination-item:hover {
  border-color: #9dadbe;
  transform: translateY(-2px);
}
.destination-item__pin {
  color: var(--color-blue);
}
.destination-item__pin .icon {
  width: 21px;
  height: 21px;
}
.destination-item h3 {
  font-size: 1rem;
  line-height: 1.4;
}
.destination-item p {
  font-size: 0.6875rem;
  line-height: 1.6;
  margin-top: 6px;
}
.destination-item > .icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
  align-self: flex-start;
}
.destinations-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.75rem;
}
.destinations-footnote .icon {
  width: 19px;
  height: 19px;
  color: var(--color-blue);
}
/* Journey and benefits */
.steps-section {
  padding-bottom: 82px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  text-align: center;
  position: relative;
  gap: 65px;
  margin: 50px 50px 0;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  border-top: 1px dashed #b4c1cf;
}
.steps-grid li {
  position: relative;
  z-index: 1;
}
.step-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 25px;
  border: 1px solid #cbd6e0;
  box-shadow: 0 0 0 12px white;
  border-radius: 50%;
  background: white;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-blue);
}
.steps-grid li:last-child .step-number {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: white;
}
.steps-grid h3 {
  margin-bottom: 12px;
}
.steps-grid p {
  font-size: 0.875rem;
  max-width: 270px;
  margin-inline: auto;
}
.benefits-section {
  padding-top: 38px;
}
.benefits-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 85px;
  border-top: 1px solid var(--color-line);
  padding-top: 80px;
}
.benefits-intro h2 {
  font-size: 2.5rem;
}
.benefits-intro > p {
  margin-top: 24px;
  font-size: 0.9375rem;
}
.signature {
  display: block;
  margin-top: 34px;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--color-blue);
}
.signature > span {
  display: block;
  background: var(--color-gold);
  width: 54px;
  height: 2px;
  margin-top: 14px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.benefit .icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.benefit .icon {
  width: 22px;
  height: 22px;
}
.benefit h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.benefit p {
  font-size: 0.875rem;
  line-height: 1.8;
}
.mid-cta {
  padding-block: 64px;
  background: var(--color-navy);
  color: white;
}
.mid-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
.mid-cta__inner > div {
  max-width: 780px;
}
.mid-cta h2 {
  font-size: 2.25rem;
  max-width: 720px;
}
.mid-cta .eyebrow {
  color: var(--color-light-gold);
}
.mid-cta p {
  color: #c7cfdc;
  margin-top: 18px;
  font-size: 0.9375rem;
}
.mid-cta .button {
  flex-shrink: 0;
}
/* Main conversion section */
.booking-section {
  background: var(--color-warm-white);
}
.booking-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 84px;
  align-items: start;
}
.booking-intro {
  padding-top: 20px;
}
.booking-intro h2 {
  font-size: 2.75rem;
}
.booking-intro > p {
  font-size: 0.9375rem;
  margin-top: 24px;
}
.booking-aside {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #dedfdc;
}
.booking-aside .icon-tile {
  background: #e9eef1;
  margin-bottom: 18px;
}
.booking-aside h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.booking-aside p {
  font-size: 0.875rem;
  margin-bottom: 22px;
}
.booking-aside .button {
  font-size: 0.8125rem;
  padding-inline: 18px;
}
.booking-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
}
.booking-promise > .icon {
  color: var(--color-blue);
  margin-top: 3px;
  width: 21px;
  height: 21px;
}
.booking-promise p {
  font-size: 0.75rem;
}
.booking-promise strong {
  font-weight: 650;
  color: var(--color-navy);
}
.booking-card {
  background: white;
  border: 1px solid #e7e8e6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 35px;
}
/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}
.faq-intro h2 {
  font-size: 2.5rem;
}
.faq-intro p {
  font-size: 0.9375rem;
  margin-block: 22px;
}
.faq-item {
  border-bottom: 1px solid var(--color-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--color-line);
}
.faq-trigger {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  width: 100%;
  padding: 24px 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
.faq-trigger > span {
  width: 27px;
  height: 27px;
  border: 1px solid #dbe2e9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-trigger .icon {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}
.faq-trigger[aria-expanded='true'] .icon {
  transform: rotate(45deg);
}
.faq-trigger:hover {
  color: var(--color-blue);
}
.faq-panel p {
  padding: 0 45px 24px 0;
  font-size: 1rem;
  line-height: 1.8;
}
.final-cta {
  background: var(--color-warm-white);
  text-align: center;
}
.final-cta__inner {
  max-width: 760px;
}
.final-cta h2 {
  font-size: 2.65rem;
  line-height: 1.22;
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta p {
  max-width: 645px;
  margin: 25px auto 30px;
  font-size: 0.9375rem;
  line-height: 1.9;
}
.final-cta .button-group {
  justify-content: center;
  gap: 16px;
}
/* Footer and utility surfaces */
.site-footer {
  background: var(--color-navy);
  color: white;
  padding: 64px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 90px;
  padding-bottom: 42px;
}
.brand--footer .brand__wordmark {
  color: white;
}
.brand--footer .brand__wordmark > span {
  color: var(--color-light-gold);
}
.brand--footer .brand__image {
  width: 87px;
  height: 58px;
}
.footer-brand > p {
  font-size: 0.875rem;
  max-width: 295px;
  color: #b6c1d0;
  margin-top: 24px;
}
.footer-tagline {
  display: block;
  font-size: 0.75rem;
  color: #d3dbea;
  margin-top: 18px;
}
.site-footer h2 {
  font-size: 0.875rem;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 22px;
}
.footer-links nav {
  display: grid;
  justify-items: start;
  gap: 2px;
}
.footer-links nav > a {
  color: #c2ccda;
  font-size: 0.875rem;
  padding-block: 7px;
  min-height: 36px;
}
.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c2ccda;
  font-size: 0.875rem;
  min-height: 44px;
  overflow-wrap: anywhere;
}
.footer-contact-link .icon {
  width: 19px;
  height: 19px;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: #c2ccda;
}
.footer-location .icon {
  width: 19px;
  height: 19px;
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #29364c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-bottom > p {
  font-size: 0.6875rem;
  color: #bcc7d7;
}
.footer-bottom > div {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}
.footer-bottom a,
.legal-link {
  color: #c0cada;
  font-size: 0.6875rem;
  background: transparent;
  padding: 10px 0;
  min-height: 40px;
}
.footer-bottom a:hover,
.legal-link:hover {
  text-decoration: underline;
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 52px;
  min-height: 52px;
  padding: 13px 17px;
  background: var(--color-navy);
  border: 1px solid #8b98aa;
  border-radius: 50px;
  color: white;
  box-shadow: var(--shadow-soft);
  font-size: 0.75rem;
  font-weight: 650;
  transition:
    background var(--transition),
    transform var(--transition);
}
.floating-whatsapp:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}
.floating-whatsapp .icon {
  width: 23px;
  height: 23px;
}
.site-notice {
  position: fixed;
  bottom: 90px;
  right: 24px;
  max-width: min(370px, calc(100vw - 40px));
  z-index: 60;
  padding: 18px 22px;
  background: white;
  border: 1px solid #bbc7d3;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-navy);
}
.legal-dialog {
  width: min(550px, calc(100vw - 32px));
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
}
.legal-dialog::backdrop {
  background: rgb(10 24 51 / 55%);
}
.legal-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.legal-dialog h2 {
  font-size: 1.5rem;
}
.dialog-close {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-pale-blue);
  font-size: 1.625rem;
  line-height: 1;
}
.legal-dialog p {
  margin-bottom: 24px;
  font-size: 0.9375rem;
}
.prose {
  max-width: 820px;
  min-height: 45vh;
}
.prose h1 {
  font-size: 2.5rem;
  margin-bottom: 35px;
}
.prose h2,
.prose h3 {
  margin-block: 30px 20px;
}
.prose p {
  margin-block: 20px;
}
.prose a:not(.button) {
  text-decoration: underline;
}
.prose ul,
.prose ol {
  padding-left: 25px;
}
.prose img {
  height: auto;
}
.prose article + article {
  margin-top: 60px;
}
/* Tablet and compact desktop */
@media (min-width: 1440px) {
  .hero-grid {
    grid-template-columns: 1fr 1.07fr;
    column-gap: 45px;
  }
  .hero-copy {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 3.6rem;
  }
  .hero-visual {
    min-height: 550px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: calc(100% - 56px);
  }
  .main-nav {
    gap: 15px;
  }
  .main-nav > a:not(.button) {
    font-size: 0.6875rem;
  }
  .brand__image {
    width: 55px;
    height: 39px;
  }
  .brand__wordmark {
    font-size: 1.45rem;
  }
  .header-inner {
    gap: 20px;
  }
  .nav-cta {
    padding-inline: 12px;
    gap: 6px;
  }
  .hero-grid {
    column-gap: 25px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-copy .button-group {
    gap: 10px;
  }
  .hero-copy .text-link {
    font-size: 0.75rem;
  }
  .hero-visual {
    min-height: 535px;
  }
  .quick-booking__private {
    display: none;
  }
  .quick-form {
    gap: 12px;
    grid-template-columns: 1.2fr 1.2fr 1fr 0.85fr 1.2fr;
  }
  .quick-form > .button {
    font-size: 0.75rem;
    padding-inline: 10px;
  }
  .section-heading--split {
    gap: 40px;
  }
  .section-heading--split > p {
    max-width: 290px;
  }
  .service-card {
    padding: 24px 20px;
  }
  .services-grid {
    gap: 15px;
  }
  .destination-item {
    gap: 10px;
    padding: 18px 12px;
  }
  .destination-item__pin {
    display: none;
  }
  .benefits-layout,
  .booking-layout,
  .faq-layout {
    gap: 50px;
  }
  .footer-grid {
    gap: 50px;
  }
}
@media (max-width: 1050px) {
  .header-inner {
    min-height: 84px;
    flex-wrap: wrap;
    padding-block: 12px;
  }
  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .js-enabled .main-nav {
    display: none;
  }
  .js-enabled .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    padding: 10px 0 16px;
  }
  .js-enabled .main-nav > a:not(.button) {
    font-size: 0.9375rem;
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-line);
  }
  .js-enabled .main-nav .button {
    margin-top: 15px;
    min-height: 50px;
    font-size: 0.875rem;
  }
  .menu-toggle {
    display: flex;
  }
  .is-scrolled .header-inner {
    min-height: 72px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-copy {
    padding-top: 20px;
  }
  .hero-visual {
    min-height: 530px;
  }
  .hero-copy .button-group {
    align-items: flex-start;
    gap: 10px;
  }
  .hero-checks {
    font-size: 0.6875rem;
    gap: 10px 12px;
  }
  .hero-caption {
    left: 16px;
    right: 16px;
    padding: 16px;
    gap: 12px;
  }
  .hero-caption div > span {
    font-size: 0.6875rem;
  }
  .quick-form {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .quick-form > .button {
    grid-column: 1/-1;
    margin: 0;
    font-size: 0.875rem;
  }
  .trust-grid {
    gap: 12px;
  }
  .trust-grid > div {
    flex-direction: column;
    text-align: center;
    font-size: 0.6875rem;
    padding-block: 18px;
  }
  .trust-grid > div + div {
    padding-left: 12px;
  }
  .section-heading--split > p {
    max-width: 250px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card h3 {
    max-width: none;
  }
  .service-card p {
    max-width: 340px;
  }
  .destination-list {
    grid-template-columns: 1fr;
    gap: 0;
    background: white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 6px 20px;
  }
  .destination-item {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
  }
  .destination-item:last-child {
    border-bottom: 0;
  }
  .destination-item__pin {
    display: block;
  }
  .destination-item p {
    margin-top: 2px;
  }
  .destination-feature {
    min-height: 460px;
  }
  .destination-feature h3 {
    font-size: 1.75rem;
  }
  .destination-feature__content {
    left: 24px;
  }
  .destination-feature p {
    font-size: 0.75rem;
    max-width: 220px;
  }
  .round-arrow {
    right: 18px;
    bottom: 23px;
    width: 33px;
    height: 33px;
  }
  .steps-grid {
    gap: 25px;
    margin-inline: 0;
  }
  .benefits-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }
  .benefits-intro h2 {
    font-size: 2.1rem;
  }
  .benefits-grid {
    gap: 25px;
  }
  .mid-cta__inner {
    gap: 35px;
  }
  .mid-cta h2 {
    font-size: 2rem;
  }
  .booking-layout {
    grid-template-columns: 0.7fr 1fr;
    gap: 32px;
  }
  .booking-card {
    padding: 26px;
  }
  .booking-intro h2 {
    font-size: 2.35rem;
  }
  .form-grid {
    gap: 18px;
  }
  .faq-layout {
    gap: 50px;
  }
  .faq-intro h2 {
    font-size: 2.1rem;
  }
}
@media (max-width: 767px) {
  :root {
    --space-section: 64px;
  }
  html {
    scroll-padding-top: 92px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 78px;
  }
  .brand__image {
    width: 57px;
    height: 39px;
  }
  .brand__wordmark {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 16px;
    padding-bottom: 30px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    padding: 15px 0 29px;
  }
  .eyebrow {
    font-size: 0.625rem;
    margin-bottom: 17px;
    letter-spacing: 0.13em;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 6.8vw, 3.4rem);
    line-height: 1.15;
    max-width: 600px;
    letter-spacing: -0.045em;
  }
  .hero-copy > p {
    font-size: 0.9375rem;
    margin-block: 19px 23px;
    line-height: 1.85;
    max-width: 580px;
  }
  .hero-copy .button-group {
    gap: 17px;
    align-items: center;
  }
  .hero-copy .text-link {
    font-size: 0.75rem;
  }
  .hero-checks {
    font-size: 0.6875rem;
    gap: 9px 18px;
    margin-top: 22px;
  }
  .hero-visual {
    min-height: 0;
    height: 365px;
    border-radius: 20px;
  }
  .hero-photo {
    object-position: center 53%;
  }
  .location-chip {
    left: 16px;
    top: 16px;
    padding: 8px 12px;
    font-size: 0.625rem;
  }
  .hero-caption {
    bottom: 31px;
    max-width: 305px;
    padding: 13px 15px;
    left: 16px;
  }
  .hero-caption__icon {
    width: 35px;
    height: 35px;
  }
  .hero-caption__icon .icon {
    width: 21px;
    height: 21px;
  }
  .hero-caption strong {
    font-size: 0.875rem;
  }
  .hero-caption div > span {
    font-size: 0.6875rem;
  }
  .quick-booking {
    margin-top: 20px;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .quick-booking__heading {
    gap: 8px;
    margin-bottom: 22px;
  }
  .quick-booking__heading h2 {
    font-size: 1.25rem;
    width: 100%;
  }
  .quick-booking__heading p {
    font-size: 0.8125rem;
    line-height: 1.7;
  }
  .quick-form {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }
  .quick-form > .field:nth-child(-n + 2) {
    grid-column: 1/-1;
  }
  .quick-form > .button {
    margin-top: 5px;
    min-height: 54px;
  }
  .field label {
    font-size: 0.8125rem;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
    min-height: 52px;
    padding-inline: 12px;
  }
  .input-icon input {
    padding-left: 38px;
  }
  .field-hint,
  .optional {
    font-size: 0.75rem;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 0;
    padding-block: 15px;
  }
  .trust-grid > div {
    flex-direction: row;
    justify-content: flex-start;
    font-size: 0.6875rem;
    gap: 8px;
    padding: 12px 8px;
  }
  .trust-grid > div + div {
    border: 0;
    padding-left: 8px;
  }
  .trust-grid > div:last-child {
    grid-column: 1/-1;
    justify-content: center;
    padding-top: 12px;
  }
  .trust-grid .icon {
    width: 21px;
    height: 21px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading--split {
    display: block;
  }
  .section-heading--split > p {
    max-width: 100%;
    font-size: 0.875rem;
    margin-top: 20px;
  }
  .section-heading--split > .text-link {
    margin-top: 17px;
  }
  .section-heading h2,
  h2 {
    font-size: 2rem;
    line-height: 1.23;
  }
  .services-grid {
    gap: 16px;
  }
  .service-card {
    padding: 23px 20px;
  }
  .service-card__top {
    margin-bottom: 24px;
  }
  .service-card h3 {
    font-size: 1.125rem;
  }
  .service-card p {
    font-size: 0.8125rem;
  }
  .service-card__link {
    font-size: 0.6875rem;
    gap: 10px;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .destination-feature {
    min-height: 320px;
  }
  .destination-feature__content {
    left: 24px;
    bottom: 25px;
  }
  .destination-feature h3 {
    font-size: 2rem;
  }
  .destination-feature p {
    max-width: none;
    font-size: 0.8125rem;
  }
  .round-arrow {
    right: 24px;
    bottom: 29px;
    width: 36px;
    height: 36px;
  }
  .destination-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    background: none;
    border: 0;
  }
  .destination-item {
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: white;
    padding: 17px 15px;
    gap: 8px;
  }
  .destination-item:last-child {
    border-bottom: 1px solid var(--color-line);
  }
  .destination-item__pin {
    display: none;
  }
  .destination-item h3 {
    font-size: 0.9375rem;
  }
  .destination-item p {
    font-size: 0.6875rem;
    max-width: 120px;
  }
  .destination-item > .icon {
    width: 14px;
    height: 14px;
  }
  .destinations-footnote {
    font-size: 0.6875rem;
    align-items: flex-start;
    line-height: 1.7;
    text-align: center;
    margin-top: 23px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
    margin-top: 35px;
  }
  .steps-grid::before {
    top: 25px;
    bottom: 25px;
    left: 27px;
    right: auto;
    border-top: 0;
    border-left: 1px dashed #b4c1cf;
  }
  .steps-grid li {
    padding-left: 82px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 7px;
    width: 55px;
    height: 55px;
    font-size: 0.9375rem;
    box-shadow: 0 0 0 7px white;
    margin: 0;
  }
  .steps-grid h3 {
    font-size: 1.0625rem;
    margin-bottom: 8px;
  }
  .steps-grid p {
    margin: 0;
    max-width: 100%;
    font-size: 0.875rem;
  }
  .steps-section {
    padding-bottom: 50px;
  }
  .benefits-section {
    padding-top: 0;
  }
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 54px;
  }
  .benefits-intro h2 {
    font-size: 2rem;
    max-width: 500px;
  }
  .benefits-intro > p {
    font-size: 0.875rem;
    margin-top: 20px;
    max-width: 500px;
  }
  .signature {
    font-size: 0.75rem;
    margin-top: 23px;
  }
  .benefits-grid {
    gap: 28px 24px;
  }
  .benefit h3 {
    font-size: 0.9375rem;
    line-height: 1.35;
  }
  .benefit p {
    font-size: 0.8125rem;
  }
  .mid-cta {
    padding-block: 48px;
  }
  .mid-cta__inner {
    display: block;
  }
  .mid-cta h2 {
    font-size: 2rem;
    line-height: 1.25;
  }
  .mid-cta p {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .mid-cta .button {
    margin-top: 27px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .booking-intro {
    padding-top: 0;
  }
  .booking-intro h2 {
    font-size: 2rem;
  }
  .booking-intro > p {
    font-size: 0.875rem;
    margin-top: 18px;
  }
  .booking-aside {
    margin-top: 27px;
    padding-top: 23px;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 14px;
    align-items: center;
  }
  .booking-aside .icon-tile {
    grid-row: 1/3;
    width: 40px;
    height: 40px;
    margin: 0;
    align-self: start;
  }
  .booking-aside h3 {
    font-size: 0.9375rem;
    margin-bottom: 7px;
  }
  .booking-aside p {
    font-size: 0.8125rem;
    line-height: 1.7;
    margin: 0;
  }
  .booking-aside .button {
    grid-column: 1/-1;
    justify-self: start;
    margin-top: 18px;
  }
  .booking-promise {
    margin-top: 20px;
  }
  .booking-card {
    padding: 25px 20px;
    border-radius: 18px;
  }
  .form-grid {
    gap: 19px 13px;
  }
  .privacy-note {
    font-size: 0.625rem;
    align-items: flex-start;
    text-align: center;
  }
  .privacy-note .icon {
    margin-top: 2px;
  }
  .consent-field label {
    font-size: 0.8125rem;
  }
  .form-required-note {
    font-size: 0.75rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-intro h2 {
    font-size: 2rem;
  }
  .faq-intro p {
    font-size: 0.875rem;
    margin-block: 18px 10px;
  }
  .faq-trigger {
    font-size: 0.875rem;
    gap: 17px;
    padding-block: 22px;
  }
  .faq-panel p {
    font-size: 0.8125rem;
    padding-right: 10px;
  }
  .final-cta h2 {
    font-size: 2rem;
  }
  .final-cta p {
    font-size: 0.875rem;
    margin-block: 21px 27px;
  }
  .final-cta .button-group {
    gap: 12px;
  }
  .site-footer {
    padding-top: 46px;
    padding-bottom: 90px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 25px;
    padding-bottom: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand > p {
    margin-top: 20px;
    max-width: 330px;
  }
  .brand--footer .brand__image {
    width: 76px;
    height: 51px;
  }
  .footer-tagline {
    margin-top: 11px;
  }
  .site-footer h2 {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 17px;
  }
  .footer-contact-link {
    font-size: 0.75rem;
    align-items: flex-start;
    padding-block: 8px;
    line-height: 1.8;
  }
  .footer-contact-link .icon {
    margin-top: 3px;
    width: 17px;
    height: 17px;
  }
  .footer-location {
    font-size: 0.6875rem;
    align-items: flex-start;
    gap: 7px;
    margin-top: 13px;
  }
  .footer-links nav > a {
    font-size: 0.75rem;
  }
  .footer-bottom {
    display: block;
    padding-top: 22px;
  }
  .footer-bottom > p {
    font-size: 0.625rem;
    line-height: 1.8;
  }
  .footer-bottom > div {
    gap: 25px;
    margin-top: 10px;
  }
  .footer-bottom a,
  .legal-link {
    font-size: 0.625rem;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 14px;
    min-width: 54px;
    min-height: 54px;
  }
  .floating-whatsapp > span {
    position: absolute;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    overflow: hidden;
  }
  .site-notice {
    right: 16px;
    bottom: 82px;
  }
  .admin-bar .site-header {
    top: 46px;
  }
  .legal-dialog {
    padding: 24px;
  }
  .legal-dialog h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 479px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .service-card__top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card p {
    font-size: 0.875rem;
    max-width: none;
    margin-bottom: 18px;
  }
  .service-card__link {
    font-size: 0.8125rem;
  }
  .hero-visual {
    height: 310px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field--full {
    grid-column: auto;
  }
  .hero-copy .button-group {
    gap: 12px;
  }
  .hero-copy .button {
    padding-inline: 18px;
  }
  .hero-copy .text-link {
    font-size: 0.75rem;
    gap: 5px;
  }
  .benefits-grid {
    gap: 28px 20px;
  }
  .destination-feature {
    min-height: 300px;
  }
  .destination-feature h3 {
    font-size: 1.65rem;
  }
  .destination-feature p {
    font-size: 0.75rem;
    max-width: 220px;
  }
  .destination-list {
    gap: 10px;
  }
  .destination-item {
    padding: 16px 13px;
    gap: 6px;
  }
  .destination-item p {
    font-size: 0.625rem;
  }
  .destination-item h3 {
    font-size: 0.875rem;
  }
  .final-cta .button-group {
    flex-direction: column;
  }
  .final-cta .button {
    width: 100%;
  }
  .quick-booking {
    padding: 22px 18px;
  }
  .footer-grid {
    column-gap: 18px;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 2.05rem;
  }
  .hero-checks {
    grid-template-columns: 1fr;
    font-size: 0.75rem;
    gap: 8px;
  }
  .hero-copy .button-group {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .hero-copy .text-link {
    justify-content: center;
  }
  .hero-visual {
    height: 275px;
  }
  .hero-caption {
    left: 12px;
    right: 12px;
    padding: 12px;
    gap: 8px;
  }
  .hero-caption div > span {
    font-size: 0.625rem;
  }
  .location-chip {
    left: 12px;
    top: 12px;
  }
  .quick-form {
    grid-template-columns: 1fr;
  }
  .quick-booking {
    padding-inline: 17px;
  }
  .trust-grid > div {
    font-size: 0.625rem;
    gap: 5px;
    padding-inline: 5px;
  }
  .trust-grid .icon {
    width: 18px;
    height: 18px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 15px;
  }
  .benefit .icon-tile {
    grid-row: 1/3;
  }
  .benefit p {
    grid-column: 2;
  }
  .destination-list {
    grid-template-columns: 1fr;
  }
  .destination-item {
    padding: 17px;
  }
  .destination-item h3 {
    font-size: 1rem;
  }
  .destination-item p {
    font-size: 0.75rem;
    max-width: none;
  }
  .destination-item__pin {
    display: block;
  }
  .destination-feature h3 {
    font-size: 1.55rem;
  }
  .destination-feature__content {
    left: 20px;
  }
  .destination-feature p {
    max-width: 175px;
  }
  .round-arrow {
    right: 16px;
    width: 30px;
    height: 30px;
  }
  .booking-card {
    padding-inline: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-contact-link {
    font-size: 0.875rem;
  }
  .site-footer h2 {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .service-card:hover,
  .destination-item:hover,
  .floating-whatsapp:hover {
    transform: none;
  }
  .destination-feature:hover > img {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .floating-whatsapp,
  .quick-booking,
  .booking-section,
  .button,
  .text-link,
  .site-notice {
    display: none;
  }
  .section {
    padding-block: 25px;
  }
  .container {
    width: 100%;
  }
  .hero-visual {
    display: none;
  }
  .hero-grid {
    display: block;
  }
  body {
    font-size: 12pt;
  }
  .faq-panel[hidden] {
    display: block !important;
  }
}
