:root {
  --bg: #eef8ff;
  --ink: #0f2d48;
  --ink-muted: #2f5f80;
  --miami-blue: #16b9ef;
  --accent: #59bde7;
  --accent-soft: #cdeeff;
  --sea: #1f8fc8;
  --card: rgba(255, 255, 255, 0.78);
  --stroke: rgba(255, 255, 255, 0.5);
  --header-bg: rgba(18, 92, 134, 0.6);
  --shadow-soft: 0 14px 45px rgba(22, 84, 124, 0.14);
  --shadow-strong: 0 30px 80px rgba(16, 66, 103, 0.28);
  --radius-xl: 30px;
  --radius-l: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 8% 12%, rgba(116, 202, 240, 0.3), transparent 60%),
    radial-gradient(900px 560px at 98% 8%, rgba(80, 180, 228, 0.24), transparent 55%),
    linear-gradient(180deg, #f7fcff 0%, #eef8ff 35%, #e9f4fc 100%);
  min-height: 100svh;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 0.55rem;
  left: 0.6rem;
  z-index: 2200;
  transform: translateY(-140%);
  background: #0d4f7f;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(156, 224, 249, 0.95);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

img[data-zoomable="true"] {
  cursor: zoom-in;
}

img[data-zoomable="true"]:focus-visible {
  outline: 3px solid rgba(123, 208, 241, 0.95);
  outline-offset: 2px;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
  line-height: 1.7;
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  width: min(44vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
  animation: float 22s ease-in-out infinite;
}

.ambient-one {
  top: -180px;
  right: -120px;
  background: radial-gradient(circle at 35% 35%, rgba(104, 196, 237, 0.92), rgba(58, 155, 210, 0.2) 68%, transparent 72%);
}

.ambient-two {
  bottom: -220px;
  left: -120px;
  background: radial-gradient(circle at 55% 45%, rgba(78, 172, 221, 0.84), rgba(18, 112, 170, 0.24) 68%, transparent 74%);
  animation-delay: -9s;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 2rem));
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(8, 25, 40, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: #fff;
}

.brand img {
  width: auto;
  height: 44px;
}

.brand span {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 0.3rem;
}

.site-nav a {
  color: #f4f8fc;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 0.55rem 0.92rem;
  border-radius: 999px;
  transition: background-color 220ms ease, color 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(22, 185, 239, 0.28);
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 0.55rem;
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.52rem 0.95rem;
  cursor: pointer;
}

.lang-switch select:focus-visible {
  outline: 3px solid rgba(156, 224, 249, 0.95);
  outline-offset: 2px;
}

.lang-switch select option {
  color: #0e3352;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(173, 239, 255, 0.65);
  background: rgba(22, 185, 239, 0.26);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 0.7rem;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(22, 185, 239, 0.38);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  margin: 4px 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  padding-top: 5.7rem;
}

.hero-slider {
  position: relative;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: min(86svh, 760px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 680ms ease, transform 900ms ease;
  pointer-events: none;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 21, 34, 0.68) 8%, rgba(7, 21, 34, 0.3) 44%, rgba(7, 21, 34, 0.15) 78%),
    linear-gradient(0deg, rgba(7, 21, 34, 0.5), rgba(7, 21, 34, 0.08));
  z-index: 1;
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.13)) scale(1.04);
  transition: transform 420ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide.is-active img {
  transform: translateY(calc(var(--scroll-shift, 0px) * -0.13)) scale(1);
}

.hero-copy {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4.4rem);
  bottom: clamp(1.8rem, 8vw, 4.5rem);
  z-index: 2;
  max-width: min(680px, 92%);
  color: #f9fcff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease 220ms, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms;
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #d8f2ff;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 214, 246, 0), rgba(142, 214, 246, 1));
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2rem, 6.3vw, 4.4rem);
  font-weight: 700;
  line-height: 0.92;
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 52ch;
  color: rgba(243, 250, 255, 0.92);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.84rem 1.35rem;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.btn-solid {
  background: linear-gradient(135deg, #8ad6f5, #59bde7);
  color: #083250;
  box-shadow: 0 8px 22px rgba(67, 165, 214, 0.38);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #f5fbff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-controls {
  position: absolute;
  right: clamp(1rem, 3.5vw, 2rem);
  bottom: clamp(1rem, 3.5vw, 1.8rem);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: width 250ms ease, background-color 250ms ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #8cd8f7 0%, #5abfe8 100%);
  animation: heroProgress 6.5s linear infinite;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 0.65rem;
}

.section-title,
.intro-panel h2,
.contact-content h2 {
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  line-height: 1.03;
  color: #10233a;
  margin-bottom: 1rem;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.25rem;
  align-items: stretch;
}

.intro-panel {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  gap: 1rem;
}

.intro-panel p {
  color: var(--ink-muted);
}

.stats {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 233, 244, 0.8);
  border-radius: 16px;
  padding: 0.85rem 0.7rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2.05rem);
  color: #11263f;
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4d6b8a;
  font-weight: 600;
}

.intro-image {
  overflow: hidden;
  min-height: 340px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.intro-image:hover img {
  transform: scale(1.06);
}

.host-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.25rem;
  align-items: stretch;
}

.host-photo {
  overflow: hidden;
  min-height: 360px;
  margin: 0;
}

.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(233, 246, 255, 0.92));
}

.host-head-copy {
  min-width: 0;
  margin-bottom: 0.75rem;
}

.host-card h2 {
  margin-bottom: 0.2rem;
}

.host-intro {
  font-size: 1.02rem;
  color: #1e4d74;
  margin-bottom: 0.95rem;
}

.host-meta {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.host-meta p {
  color: #2a628a;
}

.host-source {
  font-size: 0.84rem;
  color: #456c8e;
}

.host-source a {
  color: #195f92;
  font-weight: 700;
  text-decoration-color: rgba(25, 95, 146, 0.35);
  text-underline-offset: 3px;
}

.cards {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 230, 241, 0.84);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 0.5rem;
}

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(19, 48, 72, 0.17);
}

.bike-activities {
  margin-top: 1.15rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(231, 246, 255, 0.92));
}

.bike-activities h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  color: #12395b;
  margin-bottom: 0.45rem;
}

.bike-activities p {
  color: #2f6288;
  margin-bottom: 0.85rem;
}

.bike-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0;
}

.activity-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  color: #0f5585;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.52rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 182, 226, 0.42);
  background: rgba(168, 224, 248, 0.24);
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.activity-link:hover,
.activity-link:focus-visible {
  background: rgba(123, 207, 242, 0.36);
  color: #083a5e;
  transform: translateY(-1px);
}

.price-note {
  color: var(--ink-muted);
}

.price-shell {
  margin-top: 1.1rem;
  padding: clamp(1rem, 2.5vw, 1.6rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(233, 246, 255, 0.94));
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0d4b78;
  border: 1px solid rgba(84, 178, 223, 0.34);
  background: rgba(195, 235, 254, 0.45);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(170, 213, 237, 0.66);
  background: rgba(255, 255, 255, 0.82);
}

.price-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.87rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid rgba(168, 208, 232, 0.42);
  vertical-align: top;
}

.price-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #235e88;
  background: rgba(214, 240, 253, 0.66);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table td {
  color: #214f73;
}

.price-live-link {
  color: #1a6397;
  font-weight: 700;
  text-decoration-color: rgba(26, 99, 151, 0.35);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.price-live-link:hover,
.price-live-link:focus-visible {
  color: #0e4f7c;
}

.price-disclaimer {
  margin-top: 0.8rem;
  color: #3b6688;
  font-size: 0.82rem;
}

.price-source {
  margin-top: 0.45rem;
  color: #3f6687;
  font-size: 0.84rem;
}

.price-source a {
  color: #1a6397;
  font-weight: 700;
  text-decoration-color: rgba(26, 99, 151, 0.35);
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .price-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .price-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .price-table tbody tr {
    display: block;
    margin-bottom: 0.75rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(170, 213, 237, 0.66);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(24, 88, 126, 0.08);
  }

  .price-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .price-table tbody td {
    display: grid;
    grid-template-columns: minmax(84px, 42%) minmax(0, 1fr);
    gap: 0.45rem 0.7rem;
    align-items: start;
    width: 100%;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(152, 199, 226, 0.5);
    font-size: 0.88rem;
  }

  .price-table tbody td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .price-table tbody td::before {
    content: attr(data-label);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2b5f86;
  }

  .price-live-link {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.faq-grid {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: linear-gradient(154deg, rgba(255, 255, 255, 0.97), rgba(233, 246, 255, 0.94));
}

.faq-item h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  color: #113a5d;
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: #2b6187;
}

.gallery-note {
  color: var(--ink-muted);
}

.booking-wall {
  margin-top: 1.25rem;
  column-count: 4;
  column-gap: 0.85rem;
}

.booking-photo {
  position: relative;
  break-inside: avoid;
  margin-bottom: 0.85rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 230, 241, 0.84);
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(18px);
  animation: tileIn 520ms ease forwards;
  animation-delay: var(--tile-delay, 0ms);
}

.booking-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 180px;
  touch-action: manipulation;
  transition: transform 560ms ease;
}

.booking-photo:hover img {
  transform: scale(1.06);
}

.reviews {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-summary {
  margin-top: 0.35rem;
  color: #2a5f87;
  font-size: 0.95rem;
}

.reviews-source {
  margin-top: 0.35rem;
  font-size: 0.84rem;
}

.reviews-source a {
  color: #23679a;
  font-weight: 600;
  text-decoration-color: rgba(35, 103, 154, 0.28);
  text-underline-offset: 3px;
}

.review-card {
  margin: 0;
  border-radius: var(--radius-l);
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.95));
  border: 1px solid rgba(184, 214, 234, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  min-height: 248px;
  opacity: 0;
  transform: translateY(14px);
  animation: reviewIn 500ms ease forwards;
  animation-delay: var(--review-delay, 0ms);
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.review-title {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
  color: #0f4068;
  font-weight: 700;
}

.review-score {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4db4e0, #2c83bc);
  color: #fff;
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}

.review-text {
  color: #1f4c73;
  font-size: 0.9rem;
  line-height: 1.6;
}

.review-disliked {
  margin-top: -0.08rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(116, 168, 202, 0.35);
  color: #4e6f90;
  font-size: 0.82rem;
  line-height: 1.5;
}

.review-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.reviewer {
  font-size: 0.84rem;
  color: #1b4f78;
  font-weight: 700;
}

.review-details,
.review-date {
  font-size: 0.76rem;
  color: #587a9a;
  line-height: 1.45;
}

.reviews-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.reviews-more {
  min-width: 260px;
}

.contact-shell {
  max-width: 760px;
  margin-inline: auto;
}

.contact-content {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.contact-content p {
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.contact-content a {
  color: #0d4f7f;
  font-weight: 600;
}

.site-footer {
  padding: 1.4rem 1rem 2.4rem;
  text-align: center;
  color: #496787;
  font-size: 0.83rem;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(6, 20, 33, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(1500px, 96vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.image-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2110;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(22, 185, 239, 0.4);
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  background: rgba(22, 185, 239, 0.58);
}

.image-lightbox-nav:focus-visible {
  outline: 3px solid rgba(156, 224, 249, 0.95);
  outline-offset: 2px;
}

.image-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.image-lightbox-nav-prev {
  left: max(1rem, env(safe-area-inset-left));
}

.image-lightbox-nav-next {
  right: max(1rem, env(safe-area-inset-right));
}

.image-lightbox-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 2110;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #6dc9ec 0%, #38a8da 100%);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 0.95rem;
  cursor: pointer;
  touch-action: manipulation;
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(156, 224, 249, 0.95);
  outline-offset: 2px;
}

.image-lightbox-hint {
  display: none;
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 2110;
  margin: 0;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(11, 35, 52, 0.72);
  color: #e9f6ff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 680px) {
  .image-lightbox-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .image-lightbox.is-open .image-lightbox-hint {
    animation: lightboxHintFade 2.8s ease forwards;
  }

  .image-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@keyframes lightboxHintFade {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
  16% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  65% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
}

.booking-direct {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, #66c6ea 0%, #2f9fd5 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 18px 40px rgba(28, 113, 161, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.booking-direct:hover,
.booking-direct:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(28, 113, 161, 0.42);
  filter: brightness(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 640ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes heroProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes tileIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .site-header {
    top: 0.75rem;
    padding: 0.65rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand img {
    height: 36px;
  }

  .brand span {
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: inline-block;
    grid-column: 3;
    justify-self: end;
  }

  .lang-switch {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }

  .lang-switch select {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    padding: 0.48rem 0.72rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    background: linear-gradient(165deg, rgba(20, 177, 233, 0.95), rgba(17, 130, 191, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    max-height: min(70svh, 460px);
    overflow-y: auto;
    z-index: 2;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 10px;
    width: 100%;
  }

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

  .intro-image {
    min-height: 270px;
  }

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

  .host-photo {
    min-height: 280px;
  }

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

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

  .booking-wall {
    column-count: 3;
  }

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

}

@media (max-width: 800px) {
  .skip-link {
    display: none;
  }

  .hero {
    padding-top: 5.1rem;
  }

  .hero-slider {
    min-height: 72svh;
    border-radius: 24px;
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .hero-copy p {
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .btn {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

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

  .cards,
  .reviews {
    grid-template-columns: 1fr;
  }

  .reviews-more {
    width: 100%;
    min-width: 0;
  }

  .booking-wall {
    column-count: 2;
  }

  .booking-photo img {
    min-height: 200px;
  }

  /* Mobile/Safari reliability: keep gallery tiles visible even if animations are skipped. */
  .booking-photo {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .booking-direct {
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    border-radius: 14px;
    padding: 0.9rem 1rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 1rem);
    padding: 0.58rem;
  }

  .brand span {
    display: none;
  }

  .lang-switch {
    margin: 0;
  }

  .lang-switch select {
    font-size: 0.66rem;
    padding: 0.44rem 0.62rem;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    padding: 0.78rem;
  }

  .booking-wall {
    column-count: 1;
  }

}

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

  .hero-progress span {
    animation: none;
  }
}

.contact-direct-note {
  font-weight: 600;
  color: #11466f;
}

.whatsapp-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.3;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex: 0 0 16px;
  line-height: 1;
  overflow: hidden;
}

.whatsapp-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
}

.taxi-line {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.7rem;
  color: #174d74;
  line-height: 1.55;
}

.taxi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex: 0 0 16px;
  margin-top: 0.12rem;
}

.taxi-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .taxi-icon {
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    max-width: 13px;
    max-height: 13px;
    flex: 0 0 13px;
  }

  .taxi-icon svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    max-width: 13px;
    max-height: 13px;
    flex: 0 0 13px;
  }

  .whatsapp-icon svg {
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    max-width: 13px;
    max-height: 13px;
  }
}
