:root {
  --ink: #073b4c;
  --navy: #062b3a;
  --teal: #00a7a5;
  --aqua: #baf1e8;
  --sun: #ffb23e;
  --coral: #ff6849;
  --cream: #fffaf0;
  --white: #fff;
  --muted: #52717b;
  --line: #d8e7e7;
  --shadow: 0 18px 60px rgba(6, 43, 58, 0.14);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.55rem;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(7, 59, 76, 0.1);
}
.nav {
  width: min(1460px, calc(100% - 40px));
  height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  margin-right: auto;
  font-weight: 900;
  font-size: 0.96rem;
  letter-spacing: 0.075em;
  line-height: 1.05;
  white-space: nowrap;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(6, 43, 58, 0.1);
  object-fit: contain;
}
.nav-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(13px, 1.35vw, 21px);
  font-weight: 700;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
}
.nav-links a {
  position: relative;
  white-space: nowrap;
}
.nav-links > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: 0.2s ease;
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a:not(.btn):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-links .btn {
  padding: 12px 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid var(--coral);
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 104, 73, 0.25);
}
.btn.alt {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn.teal {
  background: var(--teal);
  border-color: var(--teal);
}
.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--ink);
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  background: url("assets/shore-hero.jpg") center/cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 31, 43, 0.84) 0%,
      rgba(3, 31, 43, 0.32) 62%,
      rgba(3, 31, 43, 0.08)
    ),
    linear-gradient(0deg, rgba(3, 31, 43, 0.65), transparent 55%);
}
.hero-inner {
  position: relative;
  padding: 90px 0 80px;
  max-width: 850px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 22px;
}
.hero h1 {
  margin-bottom: 22px;
}
.hero p {
  max-width: 680px;
  font-size: 1.25rem;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.proofbar {
  background: var(--sun);
  color: var(--navy);
  padding: 18px 0;
}
.proofgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  font-weight: 800;
}
.section {
  padding: 100px 0;
}
.section.white {
  background: #fff;
}
.section.navy {
  background: var(--navy);
  color: #fff;
}
.section.aqua {
  background: var(--aqua);
}
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.intro .lead {
  font-size: 1.27rem;
  color: var(--muted);
}
.navy .lead {
  color: #c7e3e5;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 59, 76, 0.08);
}
.card-body {
  padding: 28px;
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card .kicker {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.link {
  font-weight: 900;
  color: var(--teal);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split-media {
  background: url("assets/gallery-01.jpg") center/cover;
  min-height: 500px;
}
.split-copy {
  padding: 80px max(40px, calc((100vw - 1180px) / 2));
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  color: #fff;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.checklist li {
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sun);
  font-weight: 900;
}
.feature-home {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.feature-image {
  position: relative;
}
.feature-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.feature-image .badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 900;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.stat {
  background: #eff9f7;
  padding: 18px;
  border-radius: 16px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
}
.quote {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  border-left: 5px solid var(--sun);
  padding-left: 22px;
}
.cta {
  padding: 76px 0;
  background: var(--coral);
  color: #fff;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  margin: 0;
  max-width: 760px;
}
.page-hero {
  padding: 105px 0 70px;
  background: var(--navy);
  color: #fff;
}
.page-hero p {
  max-width: 760px;
  font-size: 1.2rem;
  color: #c8e1e4;
}
.property-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(4, 40, 54, 0.92), rgba(4, 40, 54, 0.45)),
    url("assets/shore-exterior.jpg") center 48% / cover;
}
.property-hero .wrap {
  position: relative;
  z-index: 1;
}
.photo-gallery-shell {
  position: relative;
}
.photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.photo-grid > button:not(.photo-count) {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: zoom-in;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-grid > button:first-child {
  grid-row: 1/3;
}
.photo-grid > button:hover img,
.photo-grid > button:focus-visible img {
  transform: scale(1.035);
}
.photo-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(0, 35, 49, 0.76);
  box-shadow: 0 8px 22px rgba(6, 43, 58, 0.18);
  color: #fff;
  font:
    800 0.78rem/1 Arial,
    sans-serif;
  cursor: pointer;
}
.mobile-gallery-hint {
  display: none;
}
.photo-video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(0, 35, 49, 0.76);
  box-shadow: 0 8px 22px rgba(6, 43, 58, 0.18);
  color: #fff;
  font: 800 0.78rem/1 Arial, sans-serif;
}
.photo-video-badge span { font-size: .68rem; }
.photo-video-badge:hover { background: rgba(0, 35, 49, .92); }
.mobile-photo-arrow {
  display: none;
}
.gallery-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 70px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.gallery-grid a {
  background: #fff;
  border: 1px solid rgba(7, 59, 76, 0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 43, 58, 0.06);
  transition: 0.2s ease;
}
.gallery-grid a:hover,
.gallery-grid a:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 12px 30px rgba(6, 43, 58, 0.14);
  transform: translateY(-3px);
}
.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.gallery-grid span {
  display: block;
  padding: 13px 15px;
  font-weight: 850;
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.property-gallery-source {
  display: none !important;
}
.video-tour {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 44px;
  align-items: center;
  margin-top: 76px;
  padding: 34px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
}
.video-copy p {
  color: #c5dadd;
}
.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  background: #021f2a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-lightbox {
  width: min(1180px, calc(100% - 34px));
  max-width: none;
  height: min(88vh, 900px);
  padding: 24px 76px 18px;
  border: 0;
  border-radius: 22px;
  background: #021f2a;
  color: #fff;
}
.gallery-lightbox::backdrop {
  background: rgba(0, 19, 27, 0.86);
  backdrop-filter: blur(5px);
}
.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}
.gallery-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 0;
}
.gallery-lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.gallery-lightbox figcaption {
  min-height: 34px;
  padding: 12px 40px 0;
  color: #d1e5e7;
  text-align: center;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(2, 31, 42, 0.78);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox-close {
  top: 16px;
  right: 16px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}
.lightbox-count {
  position: absolute;
  top: 21px;
  left: 22px;
  color: #d1e5e7;
  font-weight: 800;
}
.booking-center {
  margin-top: 54px;
  padding: 30px;
  background: var(--aqua);
  border-radius: 20px;
}
.booking-intro {
  max-width: 820px;
  margin-bottom: 28px;
}
.booking-intro h2,
.booking-intro p {
  margin-bottom: 8px;
}
.booking-widgets {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.booking-panel {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  min-width: 0;
  box-shadow: 0 8px 24px rgba(6, 43, 58, 0.08);
}
.booking-panel h3 {
  margin: 0 0 16px;
}
.review-panel {
  margin-top: 32px;
  padding: 24px;
  min-height: 160px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}
.pill {
  background: #e3f5f2;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
  font-size: 0.9rem;
}
.steps {
  counter-reset: s;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}
.step:before {
  counter-increment: s;
  content: "0" counter(s);
  display: block;
  color: var(--coral);
  font-weight: 900;
  margin-bottom: 18px;
}
.bio {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.portrait-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--teal), var(--navy));
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  display: flex;
  align-items: end;
}
.profile-photo {
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 18px 50px rgba(7, 59, 76, 0.16);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-credential {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 59, 76, 0.14);
  font-weight: 800;
}
.profile-section {
  padding-top: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 1.28fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(7, 59, 76, 0.1);
}
.team-card h3 {
  margin: 8px 0 10px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  font-weight: 800;
  font-size: 0.9rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #bdd1d3;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  margin-top: 6px;
}
.faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid rgba(7, 59, 76, 0.14);
  border-radius: 16px;
  padding: 0 22px;
  box-shadow: 0 8px 24px rgba(6, 43, 58, 0.05);
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 20px 34px 20px 0;
}
.faq details p {
  color: var(--muted);
  margin: 0 0 22px;
}
.form textarea {
  min-height: 140px;
}
.form .full {
  grid-column: 1/-1;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}
.form-status.success { color: #087b6c; }
.form-status.error { color: #a52a1f; }
.form-status a { color: inherit; text-decoration: underline; }
.form button:disabled { cursor: wait; opacity: .7; }
.footer {
  background: #021f2a;
  color: #d1e5e7;
  padding: 65px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}
.footer .brand {
  color: #fff;
}
.fine {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 45px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #8fb0b6;
}
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1280px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 26px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: 680px;
  }
  .proofgrid {
    grid-template-columns: 1fr 1fr;
  }
  .intro,
  .feature-home,
  .bio {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-copy {
    padding: 60px 30px;
  }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px;
  }
  .photo-grid > button:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-heading,
  .booking-widgets,
  .video-tour {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cta .wrap {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form .full {
    grid-column: auto;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 26px, 1180px);
  }
  .nav {
    height: 74px;
  }
  .brand img {
    width: 55px;
    height: 55px;
  }
  .hero {
    min-height: 620px;
  }
  .hero-inner {
    padding: 70px 0 50px;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .section {
    padding: 72px 0;
  }
  .proofgrid {
    font-size: 0.9rem;
  }
  .photo-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border-radius: 18px;
  }
  .photo-grid::-webkit-scrollbar { display: none; }
  .photo-grid > button:not(.photo-count) {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .photo-grid img {
    height: min(72vw, 390px);
  }
  .photo-count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
  }
  .photo-video-badge {
    left: 14px;
    bottom: 14px;
  }
  .mobile-photo-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0 0 4px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(0, 35, 49, .72);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
    color: #fff;
    font: 700 2rem/1 Arial, sans-serif;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .mobile-photo-prev { left: 12px; }
  .mobile-photo-next { right: 12px; }
  .mobile-photo-arrow:focus-visible {
    outline: 3px solid #ffc44d;
    outline-offset: 2px;
  }
  .mobile-gallery-hint {
    display: block;
    width: min(100% - 26px, 1180px);
    margin: 12px auto 0;
    color: #52646b;
    font-size: .9rem;
    font-weight: 750;
    text-align: center;
  }
  .gallery-grid img {
    height: 180px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .video-tour {
    margin-top: 56px;
    padding: 22px;
  }
  .gallery-lightbox {
    height: 82vh;
    padding: 62px 10px 52px;
    border-radius: 16px;
  }
  .gallery-lightbox figcaption {
    padding-right: 50px;
    padding-left: 50px;
    font-size: 0.88rem;
  }
  .booking-center,
  .review-panel {
    padding: 18px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .site-header .btn {
    display: none;
  }
  .team-grid,
  .team-card {
    grid-template-columns: 1fr;
  }
  .team-photo {
    max-width: 260px;
  }
}
.rental-search-shell {
  background: var(--navy);
  padding: 0 24px 34px;
}

.island-now {
  background: #eef8f7;
}

.island-now-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.3fr);
  gap: 24px;
}

.live-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(0, 73, 88, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 52, 66, .09);
}

.live-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.live-panel-heading span:not(.live-badge) {
  display: block;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.live-panel-heading h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.live-icon {
  flex: 0 0 auto;
  display: grid !important;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff0bc;
  color: #c77700 !important;
  font-size: 1.45rem !important;
}

.webcam-heading { align-items: end; }
.webcam-link { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 8.25; border-radius: 14px; color: #fff; }
.webcam-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.webcam-link-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,35,49,.78), rgba(0,35,49,.18)); }
.webcam-link-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; }
.webcam-link-content strong { margin-top: 14px; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.25rem); }
.webcam-link-content small { margin-top: 6px; font-size: .95rem; }
.webcam-play { display: grid; place-items: center; width: 58px; height: 58px; padding-left: 4px; border: 2px solid rgba(255,255,255,.85); border-radius: 50%; background: rgba(0,174,174,.9); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.webcam-link:hover img { transform: scale(1.035); }
.webcam-link:focus-visible { outline: 4px solid #ffc44d; outline-offset: 3px; }
.live-note { margin: 16px 0 10px; color: #52646b; }
.text-link { color: var(--teal); font-weight: 800; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b42318;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.live-badge i { width: 8px; height: 8px; border-radius: 50%; background: #df2e20; box-shadow: 0 0 0 4px rgba(223, 46, 32, .12); }

.footer-social { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.footer-social a { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: .84rem; font-weight: 800; }
.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-social-simple { justify-content: center; }

.footer-destinations {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.footer-destinations > strong {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-destination-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-destination-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
}
.footer-destination-links a:hover { background: rgba(255,255,255,.1); }

@media (max-width: 800px) {
  .island-now-grid { grid-template-columns: 1fr; }
  .live-panel { padding: 18px; }
  .webcam-heading { align-items: flex-start; flex-direction: column; }
  .webcam-link-content { padding: 22px; }
  .webcam-play { width: 48px; height: 48px; }
  .footer-destinations { align-items: flex-start; flex-direction: column; }
}

.rental-search {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(145px, .72fr)) auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 35, 49, .2);
  transform: translateY(1px);
}

.rental-search-heading strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.rental-search-heading span {
  display: block;
  margin-top: 6px;
  color: #52646b;
  font-size: .9rem;
}

.rental-search label > span {
  display: block;
  margin: 0 0 7px;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rental-search input,
.rental-search select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid #bfd2d8;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.rental-search .btn {
  min-height: 48px;
  border: 0;
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .rental-search {
    grid-template-columns: repeat(3, 1fr);
  }
  .rental-search-heading {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .rental-search-shell { padding: 0 16px 24px; }
  .rental-search { grid-template-columns: 1fr; padding: 18px; }
  .rental-search-heading { grid-column: auto; }
  .rental-search .btn { width: 100%; }
}
.analytics-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 70rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  color: #162d34;
  background: #fff;
  border: 1px solid rgba(22, 45, 52, 0.18);
  border-radius: 0.8rem;
  box-shadow: 0 0.9rem 2.6rem rgba(11, 42, 52, 0.2);
}

.analytics-consent p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.6rem;
}

.footer-privacy {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .analytics-consent {
    align-items: stretch;
    flex-direction: column;
  }

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