:root {
  --blue: oklch(0.55 0.15 240);
  --blue-deep: oklch(0.34 0.1 245);
  --blue-dark: oklch(0.25 0.065 245);
  --sky: oklch(0.96 0.025 235);
  --sun: oklch(0.84 0.17 88);
  --sun-hover: oklch(0.78 0.18 82);
  --ink: oklch(0.25 0.045 245);
  --muted: oklch(0.43 0.035 245);
  --surface: oklch(0.995 0 0);
  --border: oklch(0.88 0.018 240);
  --success: oklch(0.48 0.13 150);
  --error: oklch(0.5 0.18 28);
  --display: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --container: 73.75rem;
  --page-pad: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(4.5rem, 10vw, 8.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 30;
  --z-dialog: 60;
}

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

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
p,
figure {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--blue-dark);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

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

.section {
  padding-block: var(--section-space);
}

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

.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: 0 0 auto;
  color: white;
  transition: background-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.site-header::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in oklch, var(--blue-deep) 26%, transparent);
  content: "";
  transition: background-color 260ms var(--ease-out);
}

.site-header.is-scrolled::after,
.site-header.menu-active::after {
  background: color-mix(in oklch, var(--blue-deep) 96%, transparent);
}

.site-header.is-scrolled {
  box-shadow: 0 0.5rem 2rem rgb(2 40 70 / 16%);
}

.header-inner {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: clamp(10rem, 18vw, 14.25rem);
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2rem);
}

.nav-link,
.language-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 0.125rem;
  background: var(--sun);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  padding-inline: 0.7rem;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 0.125rem;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 220ms var(--ease-out), opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.36rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-0.125rem);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--sun);
  color: var(--blue-dark);
  box-shadow: 0 0.75rem 1.75rem rgb(16 43 65 / 18%);
}

.button--primary:hover {
  background: var(--sun-hover);
}

.button--light {
  border-color: rgb(255 255 255 / 68%);
  background: rgb(7 50 83 / 20%);
  color: white;
}

.button--light:hover {
  border-color: white;
  background: rgb(7 50 83 / 42%);
}

.button--blue {
  background: var(--blue);
  color: white;
}

.button--blue:hover {
  background: var(--blue-deep);
}

.button svg,
.text-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.header-booking {
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(56rem, 100svh);
  overflow: hidden;
  color: white;
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  margin: 0;
  background: var(--blue-deep);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  scale: 1.025;
  animation: hero-photo 1.2s var(--ease-out) both;
}

.hero-media::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(4 35 59 / 82%) 0%, rgb(4 35 59 / 52%) 43%, rgb(4 35 59 / 10%) 75%),
    linear-gradient(0deg, rgb(4 35 59 / 46%) 0%, transparent 45%);
  content: "";
}

.hero-inner {
  display: flex;
  padding-top: 9rem;
  padding-bottom: clamp(4rem, 9vw, 7rem);
  align-items: flex-end;
}

.hero-copy {
  max-width: 48rem;
  animation: hero-copy 800ms 120ms var(--ease-out) both;
}

.hero-place {
  display: inline-flex;
  margin-bottom: 1.2rem;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-place::before {
  width: 2.4rem;
  height: 0.15rem;
  background: var(--sun);
  content: "";
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.25rem, 7.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 40rem;
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  text-shadow: 0 0.1rem 1rem rgb(0 24 44 / 40%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  position: absolute;
  right: var(--page-pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.hero-note span {
  display: inline-block;
  width: 2.6rem;
  height: 1px;
  background: rgb(255 255 255 / 70%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
}

.section-title {
  max-width: 15ch;
  margin-bottom: 1.4rem;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-title--light {
  color: white;
}

.section-lead {
  max-width: 62ch;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.intro-copy p:not(.section-lead) {
  max-width: 66ch;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  margin-top: 0.6rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration-color: color-mix(in oklch, var(--blue) 42%, transparent);
}

.fact-line {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.7rem 2rem;
  color: var(--blue-deep);
  font-weight: 650;
}

.services-heading {
  display: flex;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.services-heading p {
  max-width: 32rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.service-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.service {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  background: var(--blue-deep);
  color: white;
  isolation: isolate;
}

.service--beach {
  grid-row: 1 / 3;
  min-height: 48rem;
}

.service img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 700ms var(--ease-out);
}

.service::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgb(3 34 58 / 82%) 0%, rgb(3 34 58 / 8%) 68%);
  content: "";
}

.service:hover img {
  scale: 1.025;
}

.service-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.service h3 {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.service p {
  max-width: 43ch;
  margin-bottom: 0;
  color: rgb(255 255 255 / 88%);
}

.service-details {
  display: grid;
  margin-top: 1rem;
  padding: clamp(1.7rem, 4vw, 2.7rem);
  border: 1px solid var(--border);
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--surface);
}

.service-detail {
  padding-inline: 1rem;
}

.service-detail + .service-detail {
  border-left: 1px solid var(--border);
}

.service-detail strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.service-detail span {
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 8vw, 6.5rem);
  background: var(--blue-deep);
  color: white;
}

.booking-band::after {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgb(255 255 255 / 3%), 0 0 0 8rem rgb(255 255 255 / 3%);
  content: "";
}

.booking-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.booking-copy h2 {
  max-width: 16ch;
  margin-bottom: 0.8rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.booking-copy p {
  max-width: 52ch;
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.story-image {
  position: relative;
  margin: 0;
}

.story-image::before {
  content: none;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-copy p {
  max-width: 62ch;
  color: var(--muted);
}

.gallery-heading {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-heading p {
  max-width: 32rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  display: block;
  grid-column: span 3;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--sky);
  cursor: zoom-in;
}


.gallery-item:nth-last-child(-n + 6) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 500ms var(--ease-out), filter 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.05);
  scale: 1.035;
}

.lightbox {
  position: fixed;
  z-index: var(--z-dialog);
  inset: 0;
  width: calc(100vw - 1rem);
  max-width: 80rem;
  height: calc(100vh - 1rem);
  height: calc(100dvh - 1rem);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.lightbox[open] {
  display: block;
}

.lightbox::backdrop {
  background: rgb(1 22 38 / 90%);
}

.lightbox figure {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  place-items: center;
  background: rgb(1 22 38 / 72%);
  color: white;
  font-size: 1.55rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
  background: rgb(1 22 38 / 72%);
  color: white;
  cursor: pointer;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgb(1 22 38 / 92%);
}

.lightbox-prev {
  left: 0.75rem;
}

.lightbox-next {
  right: 0.75rem;
}

.lightbox-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgb(1 22 38 / 76%);
  color: white;
  font-size: 0.875rem;
  line-height: 1;
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.contact-details {
  display: grid;
  gap: 1.2rem;
}

.contact-details a {
  color: var(--blue-deep);
  font-weight: 700;
}

.contact-item {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.contact-item span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-self: start;
  align-content: start;
  align-items: start;
}

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

.form-field--full,
.form-status {
  grid-column: 1 / -1;
}

.form-field--captcha {
  grid-column: 1;
  align-self: end;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
}

.form-field label {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.15rem;
  background: white;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  height: 3.35rem;
}

.form-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: color-mix(in oklch, var(--muted) 82%, white);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 0.22rem color-mix(in oklch, var(--blue) 18%, transparent);
}

.required-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid currentColor;
}

.form-status.is-visible {
  display: block;
}

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

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

.form-actions {
  grid-column: 2;
  display: flex;
  align-self: end;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  text-align: right;
}

.form-submit {
  min-width: 12.5rem;
  justify-content: center;
  box-shadow: 0 0.75rem 1.5rem rgb(5 73 116 / 16%);
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.map-wrap {
  position: relative;
  min-height: 27rem;
  overflow: hidden;
  background: var(--sky);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding-block: 3.5rem 2rem;
  background: var(--blue-dark);
  color: white;
}

.footer-main {
  display: flex;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  width: min(18rem, 60vw);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.6rem;
}

.footer-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.footer-links .footer-social {
  width: 2.75rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  flex: 0 0 2.75rem;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-social:hover {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--blue-dark);
  transform: translateY(-0.125rem);
}

.footer-bottom {
  display: flex;
  padding-top: 1.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-photo {
  from { opacity: 0.6; scale: 1.07; }
  to { opacity: 1; scale: 1.025; }
}

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 68rem) {
  .site-nav {
    gap: 1rem;
  }

  .nav-link:nth-of-type(2) {
    display: none;
  }

  .service-details {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail:nth-child(3) {
    border-left: 0;
  }

  .service-detail:nth-child(n + 3) {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 56rem) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -2;
    inset: 0;
    display: flex;
    padding: 7.5rem var(--page-pad) 2rem;
    background: var(--blue-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 280ms var(--ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .language-link {
    display: flex !important;
    min-height: 4rem;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
  }

  .language-link {
    margin-block: 1rem;
    padding-inline: 0;
    border: 0;
    border-radius: 0;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
  }

  .header-booking {
    width: 100%;
    margin-top: 0.5rem;
  }

  .intro-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 3.5rem;
  }

  .story-image {
    width: min(100%, 36rem);
  }

  .services-heading,
  .gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-mosaic {
    grid-template-columns: 1fr;
  }

  .service--beach {
    grid-row: auto;
    min-height: 32rem;
  }

  .service-details {
    grid-column: auto;
  }

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

  .booking-actions {
    justify-content: flex-start;
  }

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

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: auto;
  }

  .gallery-item:nth-last-child(-n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 21.4375rem) {
  .form-field--captcha {
    height: 4.4rem;
  }

  .g-recaptcha {
    width: 304px;
    max-width: none;
    transform: scale(0.9);
    transform-origin: left top;
  }
}

@media (max-width: 38rem) {
  :root {
    --page-pad: 1rem;
  }

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

  .brand {
    width: 10.7rem;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-inner {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .booking-actions .button {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-item:nth-child(n),
  .gallery-item:nth-last-child(-n + 6) {
    grid-column: span 1;
  }

  .service-detail {
    padding: 0;
  }

  .service-detail + .service-detail,
  .service-detail:nth-child(n + 2) {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

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

  .form-field,
  .form-field--full,
  .form-status,
  .form-actions {
    grid-column: 1;
  }

  .form-actions {
    align-items: flex-start;
    text-align: left;
  }

  .g-recaptcha {
    max-width: 100%;
    overflow: hidden;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
