:root {
  --ink: #103a43;
  --muted: #5b7378;
  --teal: #087f8c;
  --teal-dark: #075864;
  --aqua: #45cad2;
  --foam: #f2fbf9;
  --sand: #f5eddc;
  --sun: #f6d66b;
  --white: #fff;
  --coral: #ff7f68;
  --shadow: 0 18px 55px rgba(15, 66, 75, .10);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffdfa;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(22px, 5vw, 76px);
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 116px;
  height: 70px;
  object-fit: contain;
  filter: brightness(1.13) saturate(.85);
}
.brand-association {
  max-width: 100px;
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.desktop-nav a { text-decoration: none; }
.desktop-nav > a:not(.nav-button) { padding: 10px 0; border-bottom: 1px solid transparent; }
.desktop-nav > a:not(.nav-button):hover { border-color: currentColor; }
.nav-button {
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
}
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  height: min(88vh, 900px);
  overflow: hidden;
  color: var(--white);
  background-color: var(--teal-dark);
  background-image: url("assets/aqua-hero.jpg");
  background-image: -webkit-image-set(url("assets/aqua-hero.webp") type("image/webp"), url("assets/aqua-hero.jpg") type("image/jpeg"));
  background-image: image-set(url("assets/aqua-hero.webp") type("image/webp"), url("assets/aqua-hero.jpg") type("image/jpeg"));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 45, 55, .79) 0%, rgba(2, 61, 71, .50) 38%, rgba(3, 62, 72, .08) 70%),
    linear-gradient(0deg, rgba(3, 47, 56, .35) 0%, transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, 82%);
  margin-left: clamp(24px, 9vw, 142px);
  padding-top: 48px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.light { color: #d7f7f4; }
.hero h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.045em;
}
.hero h1 {
  max-width: 980px;
  font-size: clamp(50px, 6vw, 88px);
  line-height: .95;
}
.hero h1 span { font-size: .68em; line-height: 1.04; }
.hero-intro {
  max-width: 610px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: 700 14px/1 var(--sans);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sun { color: var(--ink); background: var(--sun); }
.button-sun:hover { background: #ffe384; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 5px 0;
  color: var(--teal-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}
.light-link { color: var(--white); }
.hero-status {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 18px 24px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-status-item { display: flex; align-items: center; gap: 13px; min-width: 155px; }
.hero-status-item small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-status-item strong { display: block; max-width: 180px; font-size: 14px; }
.status-icon { font-size: 30px; color: #e7af27; }
.status-divider { width: 1px; height: 38px; margin: 0 22px; background: #d8e4e3; }
.mini-flag { width: 30px; height: 21px; background: #e8c84e; border-radius: 2px 3px 3px 2px; box-shadow: -3px 0 0 var(--ink); }

.events-section {
  padding: 104px 0 96px;
  overflow: hidden;
  background: var(--foam);
}
.events-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 44px;
}
.events-heading h2 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .95;
}
.events-heading-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.events-heading-side > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.events-controls { display: none; gap: 8px; flex: 0 0 auto; }
.events-arrow,
.events-pause {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #d6e5e3;
  border-radius: 50%;
  font: 700 16px/1 var(--sans);
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.events-arrow:hover,
.events-pause:hover {
  color: var(--white);
  background: var(--teal);
  transform: translateY(-2px);
}
.events-viewport {
  overflow: visible;
}
.events-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.event-card {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(10, 70, 80, .10);
  text-decoration: none;
  scroll-snap-align: start;
  isolation: isolate;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,35,42,.03) 20%, rgba(3,35,42,.88) 100%),
    var(--event-image, linear-gradient(145deg, var(--aqua), var(--teal-dark))) center / cover no-repeat;
  transition: transform .5s ease;
}
.event-card:hover::before { transform: scale(1.045); }
.event-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 26px;
}
.event-card-top {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
}
.event-date {
  display: grid;
  min-width: 64px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 7px 20px rgba(0,0,0,.12);
}
.event-date span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-date strong { font: 700 24px/1.05 var(--serif); }
.event-category {
  max-width: 180px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(7, 55, 65, .72);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: right;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.event-card h3 {
  margin: 0 0 12px;
  font: 600 28px/1.08 var(--serif);
  letter-spacing: -.025em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-card-loading {
  display: grid;
  place-items: center;
  min-height: 330px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid #e3ecea;
}
.events-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.section-shell { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.intro-section { padding: 112px 0 118px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}
.section-heading h2, .safety-heading h2, .stay-copy h2, .owner-inner h2 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .95;
}
.section-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.conditions-grid {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 22px;
}
.widget {
  min-width: 0;
  padding: 32px;
  background: var(--white);
  border: 1px solid #e3ecea;
  border-radius: 24px;
  box-shadow: 0 12px 38px rgba(10, 70, 80, .06);
}
.weather-widget { grid-row: span 2; }
.widget-topline { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.widget-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.widget h3 { margin: 0; font: 600 28px/1.1 var(--serif); letter-spacing: -.025em; }
.widget-source {
  padding: 7px 9px;
  color: var(--teal);
  background: var(--foam);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.weather-now { display: flex; align-items: center; gap: 26px; margin: 38px 0 34px; }
.weather-glyph { display: grid; place-items: center; width: 112px; height: 112px; flex: 0 0 auto; color: #eba82c; background: #fff7dc; border-radius: 50%; font-size: 58px; }
.big-number { display: block; font: 600 clamp(54px, 6vw, 78px)/.9 var(--serif); letter-spacing: -.05em; }
.weather-now p { margin: 10px 0 0; color: var(--muted); }
.weather-details { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 20px 0; border-top: 1px solid #e2ecea; border-bottom: 1px solid #e2ecea; }
.weather-details div + div { border-left: 1px solid #e2ecea; padding-left: 22px; }
.weather-details dt { margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.weather-details dd { margin: 0; font-weight: 700; }
.forecast-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.forecast-day { padding: 14px; background: var(--foam); border-radius: 14px; text-align: center; }
.forecast-day span { display: block; color: var(--muted); font-size: 11px; }
.forecast-day strong { display: block; margin: 8px 0; font-size: 22px; }
.forecast-day small { display: block; min-height: 30px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.widget-error { margin: 18px 0 0; color: #8d3b31; font-size: 13px; line-height: 1.5; }

.tide-widget { overflow: hidden; }
.tide-visual { height: 82px; margin: 22px -32px -4px; }
.tide-visual svg { width: 100%; height: 100%; overflow: visible; }
.tide-area { fill: url(#tide-fill); }
.tide-line { fill: none; stroke: var(--aqua); stroke-width: 3; vector-effect: non-scaling-stroke; }
.tide-list { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tide-event { padding: 12px 8px; background: #f8fcfb; border-radius: 12px; text-align: center; }
.tide-event .tide-type { display: inline-block; margin-bottom: 6px; color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tide-event strong { display: block; font-size: 15px; }
.tide-event small { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.tide-note, .flag-source-note { margin: 16px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.loading-line { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }

.flag-widget { color: var(--white); background: var(--teal-dark); border-color: var(--teal-dark); }
.flag-current { display: flex; align-items: center; gap: 24px; margin-bottom: 26px; }
.flag-current .widget-kicker, .flag-source-note { color: #bfe5e3; }
.flag-current h3 { font-size: 31px; }
.flag-current p:last-child { margin: 10px 0 0; color: #d7efed; font-size: 13px; line-height: 1.5; }
.flag-art { position: relative; width: 70px; height: 86px; flex: 0 0 auto; }
.flag-pole { position: absolute; left: 12px; top: 0; width: 4px; height: 86px; background: #dce9e7; border-radius: 4px; }
.flag-shape { position: absolute; z-index: 2; left: 15px; top: 7px; width: 51px; height: 34px; background: #e8c84e; border-radius: 1px 4px 4px 1px; box-shadow: 0 6px 14px rgba(0,0,0,.14); }
.flag-art.red .flag-shape { background: #dc4138; }
.flag-art.green .flag-shape { background: #40a664; }
.flag-art.purple .flag-shape { background: #8a62a8; }
.flag-art.double-red .flag-shape { background: linear-gradient(to bottom, #dc4138 0 42%, transparent 42% 57%, #dc4138 57% 100%); }
.button-dark { color: var(--ink); background: var(--sun); }
.full-width { width: 100%; }

.safety-section { padding: 112px 0 104px; background: var(--sand); }
.safety-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 70px; }
.alert-callout { display: flex; align-items: center; gap: 16px; padding: 19px 22px; background: rgba(255,255,255,.58); border: 1px solid rgba(15,58,67,.1); border-radius: 15px; }
.alert-callout > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; color: var(--teal-dark); background: var(--sun); border-radius: 50%; }
.alert-callout p { margin: 0; line-height: 1.55; }
.flag-legend { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 52px; }
.legend-card { min-width: 0; padding: 22px 18px; background: rgba(255,255,255,.68); border-radius: 16px; }
.legend-swatch { display: block; width: 42px; height: 27px; margin-bottom: 26px; background: #e8c84e; border-radius: 2px; }
.legend-swatch.red { background: #dc4138; }
.legend-swatch.green { background: #40a664; }
.legend-swatch.purple { background: #8a62a8; }
.legend-swatch.double-red { display: flex; flex-direction: column; gap: 4px; height: auto; background: none; }
.legend-swatch.double-red i { display: block; width: 42px; height: 13px; background: #dc4138; border-radius: 2px; }
.legend-card h3 { margin: 0 0 8px; font-size: 15px; }
.legend-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.safety-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(15,58,67,.14); }
.safety-footer p { max-width: 650px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.stay-section { padding: 116px 0; }
.stay-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(69,202,210,.7), transparent 32%),
    linear-gradient(135deg, #087f8c, #075864);
  border-radius: 30px;
}
.stay-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -145px;
  width: 420px;
  height: 230px;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.05), 0 0 0 58px rgba(255,255,255,.035);
  transform: rotate(-12deg);
}
.stay-copy { position: relative; z-index: 2; }
.stay-copy p:last-child { max-width: 460px; margin: 28px 0 0; color: #d2edeb; line-height: 1.7; }
.booking-links { position: relative; z-index: 2; display: grid; gap: 14px; align-content: center; }
.booking-card { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 24px 26px; color: var(--ink); background: var(--white); border-radius: 16px; text-decoration: none; transition: transform .2s ease; }
.booking-card:hover { transform: translateX(4px); }
.booking-card > span:last-child { display: flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 700; }
.booking-name { color: #2959c7; font-size: 29px; font-weight: 700; letter-spacing: -.06em; }
.booking-name.airbnb-name { color: #ff5a5f; }

.owner-section { padding: 102px 0; background: var(--foam); }
.owner-inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.owner-inner h2 { font-size: clamp(45px, 5vw, 70px); }
.owner-inner > div:last-child > p { margin: 0 0 28px; color: var(--muted); line-height: 1.7; }
.button-teal { color: var(--white); background: var(--teal); }
.button-teal:hover { background: var(--teal-dark); }

.location-section {
  padding: 82px 0;
  color: var(--white);
  background: #0a5260;
}
.location-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}
.location-copy .eyebrow { color: #9de6e6; }
.location-copy h2 { max-width: 650px; font-size: clamp(38px, 4vw, 56px); }
.location-copy > p:last-of-type {
  max-width: 570px;
  margin: 28px 0 0;
  color: #d1e9e8;
  line-height: 1.75;
}
.location-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.location-map {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(164deg, transparent 0 63%, rgba(255,255,255,.74) 63.2% 64%, transparent 64.2%),
    linear-gradient(20deg, transparent 0 34%, rgba(255,255,255,.58) 34.2% 35%, transparent 35.2%),
    #dff1e8;
  border: 9px solid rgba(255,255,255,.14);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(1,31,38,.25);
}
.location-map::before {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -26%;
  width: 125%;
  height: 53%;
  background: #43c7d1;
  border-radius: 48% 52% 0 0;
  transform: rotate(-5deg);
  box-shadow: inset 0 12px 0 rgba(255,255,255,.16);
}
.location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(#087f8c 1px, transparent 1px);
  background-size: 22px 22px;
}
.map-gulf, .map-pier, .map-label, .map-pin { position: absolute; z-index: 3; }
.map-gulf {
  right: 10%;
  bottom: 10%;
  color: rgba(255,255,255,.86);
  font: italic 600 17px/1 var(--serif);
}
.map-road {
  position: absolute;
  z-index: 2;
  display: block;
  background: #fff;
  border: 1px solid rgba(8,127,140,.15);
  border-radius: 999px;
}
.map-road-main { top: 42%; left: -8%; width: 118%; height: 17px; transform: rotate(-8deg); }
.map-road-cross-one { top: 5%; left: 25%; width: 12px; height: 68%; transform: rotate(18deg); }
.map-road-cross-two { top: 8%; right: 25%; width: 10px; height: 58%; transform: rotate(-18deg); }
.map-pier {
  top: 20%;
  left: 10%;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: rgba(255,255,255,.8);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
}
.map-pin {
  top: 39%;
  left: 46%;
  width: 52px;
  height: 52px;
  background: var(--coral);
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -82%) rotate(-45deg);
  filter: drop-shadow(0 10px 10px rgba(4,67,76,.25));
}
.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.map-label {
  top: 43%;
  left: 46%;
  display: grid;
  min-width: 140px;
  transform: translateX(-50%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15,66,75,.15);
  text-align: center;
}
.map-label strong { font: 600 20px/1.1 var(--serif); }
.map-label small { margin-top: 4px; color: var(--muted); font-size: 9px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; padding: 44px clamp(22px, 5vw, 76px) 28px; color: #d3e9e7; background: #0a3540; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-logo {
  display: block;
  width: 92px;
  height: 56px;
  object-fit: contain;
  filter: brightness(1.13) saturate(.85);
}
.footer-brand > span:last-child { display: grid; }
.footer-brand strong { color: var(--white); font: 600 18px/1.2 var(--serif); }
.footer-brand small { margin-top: 5px; font-size: 10px; }
.footer-links { display: flex; gap: 24px; font-size: 12px; font-weight: 700; }
.footer-links a { text-underline-offset: 4px; }
.copyright { grid-column: 1 / -1; margin: 8px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #98bdba; font-size: 10px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: rgba(5, 62, 72, .5);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
  }
  .menu-button span { display: block; width: 20px; height: 2px; background: var(--white); }
  .mobile-nav {
    position: absolute;
    top: 78px;
    right: 22px;
    display: none;
    min-width: 210px;
    overflow: hidden;
    color: var(--ink);
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { padding: 15px 18px; text-decoration: none; font-size: 14px; font-weight: 700; }
  .mobile-nav a + a { border-top: 1px solid #e4eceb; }
  .conditions-grid { grid-template-columns: 1fr; }
  .weather-widget { grid-row: auto; }
  .flag-legend { grid-template-columns: repeat(3, 1fr); }
  .stay-panel, .owner-inner { gap: 40px; }
  .location-panel { grid-template-columns: 1fr; gap: 52px; }
  .location-map { min-height: 380px; }
  .events-heading { gap: 40px; }
  .events-heading-side { align-items: flex-start; flex-direction: column; }
  .events-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .site-header { padding: 16px 20px; }
  .brand-logo { width: 92px; height: 56px; }
  .brand-association { max-width: 80px; font-size: 7px; }
  .hero { min-height: 700px; height: 92vh; align-items: flex-start; background-position: 61% center; }
  .hero {
    background-image: url("assets/aqua-hero-mobile.jpg");
    background-image: -webkit-image-set(url("assets/aqua-hero-mobile.webp") type("image/webp"), url("assets/aqua-hero-mobile.jpg") type("image/jpeg"));
    background-image: image-set(url("assets/aqua-hero-mobile.webp") type("image/webp"), url("assets/aqua-hero-mobile.jpg") type("image/jpeg"));
  }
  .hero-shade { background: linear-gradient(90deg, rgba(1,45,55,.76), rgba(2,61,71,.28)), linear-gradient(0deg, rgba(3,47,56,.55), transparent 55%); }
  .hero-content { width: calc(100% - 40px); margin: 0 20px; padding-top: 165px; }
  .hero h1 { font-size: clamp(43px, 12.2vw, 56px); line-height: .98; }
  .hero h1 span { font-size: .68em; line-height: 1.1; }
  .hero-intro { margin-top: 24px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; margin-top: 28px; }
  .hero-status { right: 20px; bottom: 20px; left: 20px; padding: 15px 17px; }
  .hero-status-item { flex: 1; min-width: 0; }
  .hero-status-item strong { font-size: 12px; }
  .status-divider { margin: 0 14px; }
  .status-icon { font-size: 25px; }
  .events-section { padding: 78px 0 72px; }
  .events-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .events-heading h2 { font-size: 49px; }
  .events-heading-side { gap: 20px; }
  .events-heading-side > p { font-size: 14px; }
  .events-controls { display: flex; order: 2; }
  .events-viewport {
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--aqua) transparent;
  }
  .events-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(268px, 82vw);
    grid-auto-flow: column;
    gap: 14px;
  }
  .event-card { min-height: 330px; border-radius: 20px; }
  .event-card-content { padding: 22px; }
  .event-card h3 { font-size: 26px; }
  .events-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
  .section-shell { width: min(100% - 32px, 1180px); }
  .intro-section, .safety-section, .stay-section, .owner-section { padding-top: 80px; padding-bottom: 80px; }
  .location-section { padding-top: 64px; padding-bottom: 64px; }
  .section-heading, .safety-heading, .stay-panel, .owner-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .safety-heading h2, .stay-copy h2, .owner-inner h2 { font-size: 49px; }
  .section-heading > p { font-size: 15px; }
  .widget { padding: 23px; border-radius: 20px; }
  .weather-now { gap: 19px; margin: 30px 0; }
  .weather-glyph { width: 82px; height: 82px; font-size: 43px; }
  .big-number { font-size: 56px; }
  .weather-now p { font-size: 13px; }
  .weather-details div + div { padding-left: 12px; }
  .weather-details dd { font-size: 12px; }
  .forecast-day { padding: 11px 5px; }
  .tide-visual { margin-right: -23px; margin-left: -23px; }
  .flag-legend { grid-template-columns: 1fr 1fr; }
  .legend-card:last-child { grid-column: 1 / -1; }
  .safety-footer { align-items: flex-start; flex-direction: column; }
  .stay-panel { padding: 36px 23px; border-radius: 22px; }
  .booking-card { min-height: 78px; padding: 19px; }
  .booking-name { font-size: 25px; }
  .booking-card > span:last-child { font-size: 11px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .location-copy h2 { font-size: 40px; }
  .location-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .location-map { min-height: 320px; border-width: 6px; border-radius: 22px; }
  .map-pin { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .events-viewport { scroll-behavior: auto; }
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #7ea6a3;
  font-size: 10px;
  letter-spacing: .02em;
}
