:root {
  --ink: #10272a;
  --muted: #617276;
  --sea-deep: #063b43;
  --sea: #087f8c;
  --sea-bright: #21a6a1;
  --sun: #f5c451;
  --sun-dark: #dba72d;
  --coral: #d8684b;
  --foam: #f4f8f6;
  --white: #ffffff;
  --line: #d9e3e0;
  --shadow: 0 20px 55px rgba(16, 39, 42, 0.12);
  --radius: 8px;
  --nav-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  font-size: 3.35rem;
}

h3 {
  font-size: 1.45rem;
}

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

:focus-visible {
  outline: 3px solid rgba(245, 196, 81, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--sea-deep);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container-xl {
  max-width: 1320px;
}

.section-pad {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.display-title {
  margin-bottom: 0;
  font-size: 4rem;
}

.section-intro,
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 56px;
  padding: 0.8rem 1.4rem;
  font-size: 0.96rem;
}

.btn-sun {
  border: 1px solid var(--sun);
  color: #2b2b1e;
  background: var(--sun);
  box-shadow: 0 10px 24px rgba(245, 196, 81, 0.22);
}

.btn-sun:hover,
.btn-sun:focus {
  border-color: var(--sun-dark);
  color: #1d241e;
  background: #ffd46a;
  box-shadow: 0 13px 28px rgba(245, 196, 81, 0.28);
}

.btn-sea {
  border: 1px solid var(--sea-deep);
  color: var(--white);
  background: var(--sea-deep);
  box-shadow: 0 10px 24px rgba(6, 59, 67, 0.18);
}

.btn-sea:hover,
.btn-sea:focus {
  border-color: var(--sea);
  color: var(--white);
  background: var(--sea);
}

.btn-sea:disabled {
  border-color: #a8b7b5;
  color: #edf2f0;
  background: #a8b7b5;
  box-shadow: none;
  transform: none;
}

.btn-outline-sea {
  border: 1px solid var(--sea-deep);
  color: var(--sea-deep);
  background: transparent;
}

.btn-outline-sea:hover,
.btn-outline-sea:focus {
  border-color: var(--sea-deep);
  color: var(--white);
  background: var(--sea-deep);
}

.btn-whatsapp {
  border: 1px solid #178c52;
  color: var(--white);
  background: #178c52;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  border-color: #117541;
  color: var(--white);
  background: #117541;
}

/* Navigation */
.site-navbar {
  min-height: var(--nav-height);
  padding: 12px 0;
  background: rgba(3, 21, 25, 0.18);
  transition: min-height 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.is-scrolled {
  min-height: 72px;
  background: rgba(3, 35, 41, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

.navbar-brand {
  padding: 0;
}

.brand-mark {
  display: inline-flex;
  min-width: 196px;
  height: 48px;
  align-items: center;
  padding: 3px 10px 3px 4px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
}

.brand-mark img {
  width: 190px;
  height: auto;
}

.site-navbar .navbar-nav {
  gap: 4px;
}

.site-navbar .nav-link {
  position: relative;
  padding: 12px 13px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 700;
}

.site-navbar .nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  background: var(--sun);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--white);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after,
.site-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nav-book {
  min-height: 44px;
  padding: 0 16px;
}

.navbar-toggler {
  width: 48px;
  height: 48px;
  padding: 9px;
  border-color: rgba(255, 255, 255, 0.45);
  border-radius: 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88svh;
  color: var(--white);
  background-color: var(--sea-deep);
  background-image: url("../assets/img/gallery/plava-laguna-01.webp");
  background-position: center 52%;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(2, 22, 27, 0.5);
}

.hero-inner {
  position: relative;
  display: flex;
  min-height: 88svh;
  align-items: center;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 90px;
}

.hero-copy {
  width: min(820px, 72%);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 5.1rem;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.26);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.2rem;
  line-height: 1.75;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 33px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts i {
  color: var(--sun);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn-outline-light {
  border-width: 1px;
  background: rgba(3, 21, 25, 0.18);
}

.hero-actions .btn-outline-light:hover,
.hero-actions .btn-outline-light:focus {
  color: var(--ink);
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  right: 12px;
  bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.scroll-cue i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

/* Trust */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  min-height: 104px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item i {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 1.5rem;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--ink);
  font-size: 0.92rem;
}

/* Booking */
.booking-section {
  background: var(--foam);
}

.booking-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.booking-tool {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.42fr) minmax(355px, 0.76fr);
}

.calendar-panel {
  padding: 42px;
}

.calendar-toolbar {
  display: grid;
  align-items: center;
  margin-bottom: 28px;
  grid-template-columns: 44px 1fr 44px;
}

.calendar-toolbar h3 {
  margin: 0;
  font-size: 1.8rem;
  text-align: center;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus {
  border-color: var(--sea-deep);
  color: var(--white);
  background: var(--sea-deep);
}

.icon-btn:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  padding: 7px 4px;
  color: #84918f;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  gap: 7px;
}

.calendar-day,
.calendar-empty {
  aspect-ratio: 1 / 0.9;
  min-width: 0;
}

.calendar-day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  background: #f4f8f7;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.calendar-day::after {
  position: absolute;
  bottom: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sea-bright);
  content: "";
}

.calendar-day:hover:not(:disabled),
.calendar-day:focus:not(:disabled) {
  z-index: 1;
  border-color: var(--sea);
  transform: translateY(-2px);
}

.calendar-day.limited::after {
  background: var(--coral);
}

.calendar-day.unavailable,
.calendar-day.past {
  color: #aab4b2;
  background: #f7f7f5;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.unavailable::after,
.calendar-day.past::after {
  background: #cbd2d0;
}

.calendar-day.today {
  border-color: #8ba8a6;
}

.calendar-day.selected {
  border-color: var(--sea-deep);
  color: var(--white);
  background: var(--sea-deep);
  box-shadow: 0 8px 18px rgba(6, 59, 67, 0.2);
}

.calendar-day.selected::after {
  background: var(--sun);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.available {
  background: var(--sea-bright);
}

.legend-dot.limited {
  background: var(--coral);
}

.legend-dot.unavailable {
  background: #cbd2d0;
}

.booking-summary {
  padding: 42px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: #fcfdfc;
}

.summary-top {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.summary-top h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.selected-date {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
}

.selected-date.has-date {
  color: var(--sea);
  font-weight: 800;
}

.guest-list {
  padding: 14px 0;
}

.guest-row {
  display: grid;
  min-height: 73px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e8eeec;
  grid-template-columns: minmax(95px, 1fr) auto 67px;
}

.guest-row strong,
.guest-row small {
  display: block;
}

.guest-row strong {
  font-size: 0.88rem;
}

.guest-row small {
  color: var(--muted);
  font-size: 0.7rem;
}

.guest-price {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
}

.stepper {
  display: grid;
  width: 108px;
  height: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  grid-template-columns: 36px 36px 36px;
}

.stepper button,
.stepper output {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
}

.stepper button {
  border: 0;
  color: var(--sea-deep);
  background: #f0f6f4;
}

.stepper button:hover,
.stepper button:focus {
  color: var(--white);
  background: var(--sea-deep);
}

.stepper output {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-label {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-label span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: #cbd8d5;
  border-radius: 4px;
  color: var(--ink);
  background-color: var(--white);
  font-size: 0.86rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 140, 0.13);
}

textarea.form-control {
  min-height: 96px;
}

.total-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 24px 0 20px;
}

.total-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.total-row strong {
  color: var(--sea-deep);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

/* Experience */
.experience-section {
  background: var(--white);
}

.experience-grid {
  display: grid;
  min-height: 840px;
  gap: 14px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, 1fr);
}

.experience-feature {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sea-deep);
}

.experience-feature.feature-large {
  grid-row: 1 / span 2;
}

.experience-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.experience-feature:hover img {
  transform: scale(1.025);
}

.feature-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 15px;
  padding: 20px;
  border-left: 3px solid var(--sun);
  color: var(--white);
  background: rgba(3, 30, 35, 0.88);
  grid-template-columns: 30px 1fr;
}

.feature-caption > span {
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-caption h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-caption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.55;
}

.included-wrap {
  display: grid;
  align-items: center;
  gap: 55px;
  margin-top: 68px;
  padding: 45px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.72fr 1.5fr;
}

.included-title h3 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.included-grid {
  display: grid;
  gap: 16px 24px;
  grid-template-columns: repeat(2, 1fr);
}

.included-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #415356;
  font-size: 0.86rem;
  font-weight: 700;
}

.included-grid i {
  color: var(--sea-bright);
  font-size: 1.05rem;
}

/* Itinerary */
.itinerary-section {
  color: var(--white);
  background: var(--sea-deep);
}

.itinerary-section .section-heading h2,
.itinerary-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.itinerary-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

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

.route-line {
  position: relative;
  display: grid;
  gap: 26px;
  padding-top: 5px;
  grid-template-columns: repeat(4, 1fr);
}

.route-line::before {
  position: absolute;
  top: 71px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
}

.route-stop {
  position: relative;
  z-index: 1;
  text-align: center;
}

.route-time {
  margin-bottom: 12px;
  color: var(--sun);
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
}

.route-marker {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 27px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--sea-deep);
  background: var(--sun);
  box-shadow: 0 0 0 8px var(--sea-deep);
}

.route-copy {
  padding: 0 13px;
}

.route-copy span {
  display: block;
  min-height: 34px;
  margin-bottom: 8px;
  color: var(--sea-bright);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-copy h3 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 1.45rem;
}

.route-copy p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.79rem;
  line-height: 1.7;
}

/* Parallax visual */
.sea-break {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  color: var(--white);
  background-color: #0c7280;
  background-image: url("../assets/img/kornati-sea.webp");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.sea-break-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 43, 50, 0.58);
}

.sea-break-content {
  max-width: 900px;
  padding: 70px 20px;
  text-align: center;
}

.sea-break-content > i {
  color: var(--sun);
  font-size: 2.2rem;
}

.sea-break-content p {
  margin: 7px 0 29px;
  color: var(--white);
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 1.17;
  text-wrap: balance;
}

/* Boat */
.boat-section {
  background: #eff4f2;
}

.boat-layout {
  display: grid;
  min-height: 610px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
}

.boat-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

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

.boat-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 48px);
  padding: 13px 16px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--sun);
  font-size: 0.76rem;
  font-weight: 800;
}

.boat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 58px;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
}

.boat-copy h2 {
  margin-bottom: 22px;
  font-size: 3rem;
}

.boat-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.96rem;
}

.boat-stats {
  display: grid;
  gap: 20px;
  margin: 31px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.boat-stats strong,
.boat-stats span {
  display: block;
}

.boat-stats strong {
  color: var(--sea);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.boat-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.35;
}

.boat-list {
  display: grid;
  gap: 9px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.boat-list li {
  display: flex;
  gap: 10px;
  color: #415356;
  font-size: 0.79rem;
}

.boat-list i {
  color: var(--sea-bright);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--sea-deep);
  color: var(--sea-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus {
  color: var(--sea);
  border-color: var(--sea);
}

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

.gallery-grid {
  display: grid;
  min-height: 380px;
  gap: 10px;
  grid-auto-flow: dense;
  grid-auto-rows: 210px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dce9e6;
}

.gallery-item.portrait {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item button:hover img,
.gallery-item button:focus img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(3, 31, 36, 0.85);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item figcaption span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gallery-item button:hover figcaption,
.gallery-item button:focus figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Reviews */
.reviews-section {
  background: #f7f0df;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 46px;
}

.reviews-head h2 {
  max-width: 720px;
  margin: 0;
}

.rating-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
  padding-left: 25px;
  border-left: 1px solid rgba(16, 39, 42, 0.2);
}

.rating-lockup > strong {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.rating-lockup > span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.stars {
  color: #d69800;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}

.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  margin: 0;
  padding: 36px;
  border: 1px solid rgba(16, 39, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.review-card blockquote {
  margin: 29px 0 34px;
  color: var(--ink);
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.review-card figcaption strong {
  font-size: 0.84rem;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.7rem;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-section h2 {
  margin-bottom: 21px;
}

.faq-section .section-intro {
  margin-bottom: 27px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-color: var(--line);
}

.accordion-button {
  min-height: 78px;
  padding: 22px 4px;
  color: var(--ink);
  background: var(--white);
  box-shadow: none !important;
  font-size: 1rem;
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  color: var(--sea);
  background: var(--white);
}

.accordion-button::after {
  width: 20px;
  height: 20px;
  background-size: 20px;
}

.accordion-body {
  max-width: 760px;
  padding: 0 38px 26px 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* Contact */
.contact-section {
  display: grid;
  min-height: 640px;
  grid-template-columns: 1fr 1fr;
}

.contact-map {
  min-height: 640px;
  background: #d7e3df;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  filter: saturate(0.78) contrast(1.03);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px max(7vw, 60px);
  color: var(--white);
  background: var(--sea-deep);
}

.contact-panel .eyebrow {
  color: var(--sun);
}

.contact-panel h2 {
  max-width: 620px;
  margin-bottom: 23px;
  color: var(--white);
}

.contact-panel > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-links {
  display: grid;
  width: 100%;
  max-width: 620px;
  gap: 0;
  margin: 35px 0 37px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links a {
  display: grid;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 38px minmax(0, 1fr);
}

.contact-links a:hover i,
.contact-links a:focus i {
  color: var(--ink);
  background: var(--sun);
}

.contact-links i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--sun);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contact-links span,
.contact-links small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-links span {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-links small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #071d20;
}

.footer-main {
  display: grid;
  gap: 70px;
  padding: 68px 0 54px;
  grid-template-columns: 1.4fr 0.55fr 0.9fr;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 20px;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--sun);
}

.footer-links span {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.69rem;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--sun);
}

.mobile-book-bar {
  display: none;
}

/* Checkout modal */
.booking-modal .modal-dialog {
  max-width: 900px;
}

.booking-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(4, 24, 28, 0.28);
}

.booking-modal .modal-header {
  align-items: flex-start;
  padding: 26px 30px 22px;
  border-color: var(--line);
}

.booking-modal .modal-header .eyebrow {
  margin-bottom: 7px;
}

.booking-modal .modal-title {
  margin: 0;
  font-size: 2rem;
}

.booking-modal .btn-close {
  margin-top: 2px;
  box-shadow: none;
}

.booking-modal .modal-body {
  padding: 0;
}

.checkout-steps {
  display: grid;
  border-bottom: 1px solid var(--line);
  background: var(--foam);
  grid-template-columns: repeat(2, 1fr);
}

.checkout-steps span {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #80908e;
  font-size: 0.74rem;
  font-weight: 800;
}

.checkout-steps b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #adbbb8;
  border-radius: 50%;
  font-size: 0.66rem;
}

.checkout-steps span.active {
  color: var(--sea-deep);
  background: #e6f1ee;
}

.checkout-steps span.active b {
  border-color: var(--sea-deep);
  color: var(--white);
  background: var(--sea-deep);
}

.checkout-pane {
  padding: 30px;
}

.checkout-pane[hidden] {
  display: none;
}

.checkout-order {
  display: grid;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 24px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--foam);
  grid-template-columns: 1fr auto;
}

.checkout-order strong,
.checkout-order span {
  display: block;
}

.checkout-order strong {
  font-size: 0.83rem;
}

.checkout-order span {
  color: var(--muted);
  font-size: 0.7rem;
}

.checkout-order .order-total {
  color: var(--sea-deep);
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.payment-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.express-pay {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.express-btn {
  min-height: 48px;
  border: 1px solid #111;
  border-radius: 4px;
  color: var(--white);
  background: #111;
  font-size: 1rem;
  font-weight: 700;
}

.express-btn.google-pay {
  color: #111;
  background: var(--white);
}

.pay-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 20px 0;
  color: #8a9895;
  font-size: 0.67rem;
  text-transform: uppercase;
}

.pay-divider::before,
.pay-divider::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.card-field {
  display: grid;
  height: 48px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cbd8d5;
  border-radius: 4px;
  grid-template-columns: 42px 1fr;
}

.card-field:focus-within {
  border-color: var(--sea);
  box-shadow: 0 0 0 0.2rem rgba(8, 127, 140, 0.13);
}

.card-field.is-invalid {
  border-color: #dc3545;
}

.card-field i {
  color: var(--muted);
  text-align: center;
}

.card-field input {
  width: 100%;
  height: 46px;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.86rem;
}

.preview-note {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
}

.payment-summary {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--foam);
}

.payment-summary .payment-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.payment-summary .payment-row span:last-child {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.payment-summary .payment-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

.payment-summary .payment-total strong {
  color: var(--sea-deep);
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.payment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.payment-actions .btn-link {
  color: var(--sea-deep);
  text-decoration: none;
}

.checkout-result {
  padding: 55px 30px 60px;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sea);
  font-size: 1.8rem;
}

.checkout-result h3 {
  margin-bottom: 12px;
  font-size: 2.1rem;
}

.checkout-result p {
  max-width: 590px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 95px;
  color: var(--white);
  background: rgba(2, 14, 17, 0.95);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  display: flex;
  width: min(1120px, 100%);
  height: min(75vh, 760px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.gallery-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100% - 54px);
  object-fit: contain;
}

.gallery-lightbox figcaption {
  min-height: 54px;
  padding: 15px 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.1rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:focus,
.lightbox-nav:hover,
.lightbox-nav:focus {
  color: var(--ink);
  background: var(--sun);
}

.lightbox-close {
  top: 20px;
  right: 22px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

@media (max-width: 1199.98px) {
  h2 {
    font-size: 3rem;
  }

  .display-title {
    font-size: 3.55rem;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .booking-tool {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  }

  .calendar-panel,
  .booking-summary {
    padding: 35px;
  }

  .experience-grid {
    min-height: 760px;
  }

  .boat-copy {
    padding: 55px 42px;
  }

  .contact-panel {
    padding-right: 55px;
    padding-left: 55px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 76px;
  }

  h2 {
    font-size: 2.65rem;
  }

  .display-title {
    font-size: 3.1rem;
  }

  .section-pad {
    padding: 88px 0;
  }

  .site-navbar,
  .site-navbar.is-scrolled {
    background: rgba(3, 35, 41, 0.97);
  }

  .site-navbar .navbar-collapse {
    max-height: calc(100vh - 76px);
    padding: 18px 4px 22px;
    overflow-y: auto;
  }

  .site-navbar .navbar-nav {
    align-items: stretch !important;
  }

  .site-navbar .nav-link {
    padding: 10px 5px !important;
  }

  .site-navbar .nav-link::after {
    display: none;
  }

  .nav-book {
    margin-top: 9px;
  }

  .hero,
  .hero-inner {
    min-height: 86svh;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-copy {
    width: 88%;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .booking-summary {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .experience-grid {
    min-height: 660px;
  }

  .included-wrap {
    gap: 36px;
    padding: 40px 20px;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .route-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-line::before {
    display: none;
  }

  .route-stop {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

  .route-marker {
    box-shadow: none;
  }

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

  .boat-image {
    min-height: 500px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .boat-copy {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    padding: 28px;
  }

  .review-card blockquote {
    font-size: 1.35rem;
  }

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

  .contact-map,
  .contact-map iframe {
    min-height: 420px;
  }

  .contact-panel {
    padding: 75px max(6vw, 35px);
  }

  .footer-main {
    gap: 40px;
    grid-template-columns: 1.2fr 0.6fr 1fr;
  }

  .sea-break {
    background-attachment: scroll;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 76px;
  }

  h2 {
    font-size: 2.3rem;
  }

  .display-title {
    font-size: 2.55rem;
  }

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

  .section-heading {
    margin-bottom: 38px;
  }

  .brand-mark {
    min-width: 171px;
    height: 43px;
  }

  .brand-mark img {
    width: 164px;
  }

  .hero,
  .hero-inner {
    min-height: 84svh;
  }

  .hero {
    min-height: 690px;
    background-position: 61% center;
  }

  .hero-inner {
    min-height: 690px;
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 78px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 590px;
    margin-bottom: 20px;
    font-size: 3.05rem;
  }

  .hero-lead {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    max-width: 540px;
  }

  .hero-actions .btn {
    flex: 1 1 230px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-grid {
    min-height: 0;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 18px 16px;
  }

  .calendar-panel,
  .booking-summary {
    padding: 27px 20px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-day::after {
    bottom: 6px;
  }

  .experience-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .experience-feature,
  .experience-feature.feature-large {
    min-height: 440px;
    grid-row: auto;
  }

  .experience-feature:not(.feature-large) {
    min-height: 340px;
  }

  .included-wrap {
    grid-template-columns: 1fr;
  }

  .route-line {
    grid-template-columns: 1fr;
  }

  .route-stop {
    display: grid;
    align-items: start;
    gap: 0 17px;
    padding: 22px;
    text-align: left;
    grid-template-columns: 50px 1fr;
  }

  .route-time {
    grid-column: 2;
    margin-bottom: 6px;
  }

  .route-marker {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .route-copy {
    padding: 0;
    grid-column: 2;
  }

  .route-copy span {
    min-height: 0;
  }

  .sea-break {
    min-height: 390px;
  }

  .sea-break-content p {
    font-size: 2.4rem;
  }

  .boat-image {
    min-height: 410px;
  }

  .boat-copy {
    padding: 45px 28px;
  }

  .boat-copy h2 {
    font-size: 2.4rem;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-lockup {
    padding: 0;
    border-left: 0;
  }

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

  .review-card {
    min-height: 250px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-book-bar {
    position: fixed;
    z-index: 1025;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    background: #071d20;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
  }

  .mobile-book-bar div,
  .mobile-book-bar small,
  .mobile-book-bar strong {
    display: block;
  }

  .mobile-book-bar small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.62rem;
  }

  .mobile-book-bar strong {
    font-size: 0.84rem;
  }

  .mobile-book-bar .btn {
    min-height: 48px;
    padding: 0 15px;
    font-size: 0.78rem;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 65px 15px 55px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 53px);
  }

  .lightbox-next {
    right: calc(50% - 53px);
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 0.96rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .display-title {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 700px;
    background-position: 65% center;
  }

  .hero-inner {
    min-height: 700px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 2.58rem;
    line-height: 1.05;
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 0.92rem;
  }

  .hero-facts {
    gap: 9px 16px;
    margin-bottom: 24px;
    font-size: 0.75rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .booking-tool {
    margin-right: -5px;
    margin-left: -5px;
  }

  .calendar-toolbar h3 {
    font-size: 1.5rem;
  }

  .calendar-day,
  .calendar-empty {
    min-height: 42px;
  }

  .calendar-day {
    font-size: 0.78rem;
  }

  .calendar-legend {
    gap: 8px 14px;
    font-size: 0.66rem;
  }

  .guest-row {
    grid-template-columns: minmax(85px, 1fr) 100px;
  }

  .guest-price {
    display: none;
  }

  .stepper {
    width: 99px;
    grid-template-columns: 33px 33px 33px;
  }

  .stepper button,
  .stepper output {
    width: 33px;
  }

  .experience-feature,
  .experience-feature.feature-large {
    min-height: 430px;
  }

  .experience-feature:not(.feature-large) {
    min-height: 320px;
  }

  .feature-caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
  }

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

  .sea-break-content p {
    font-size: 2rem;
  }

  .boat-image {
    min-height: 330px;
  }

  .boat-image-tag {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .boat-stats {
    gap: 10px;
  }

  .boat-stats strong {
    font-size: 1.65rem;
  }

  .gallery-grid {
    grid-auto-rows: 150px;
  }

  .gallery-item figcaption {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 9px;
    font-size: 0.64rem;
    opacity: 1;
    transform: none;
  }

  .review-card {
    padding: 25px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 340px;
  }

  .contact-panel {
    padding: 65px 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-pane {
    padding: 22px 18px;
  }

  .booking-modal .modal-header {
    padding: 21px 18px 17px;
  }

  .booking-modal .modal-title {
    font-size: 1.65rem;
  }

  .checkout-order {
    grid-template-columns: 1fr;
  }

  .checkout-order .order-total {
    text-align: left;
  }

  .express-pay {
    grid-template-columns: 1fr;
  }

  .payment-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .payment-actions .btn {
    width: 100%;
  }
}

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

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