:root {
  --ink: #11343b;
  --ink-soft: #486871;
  --paper: #fbf7ef;
  --paper-strong: #fffdf8;
  --sea: #0f5e6f;
  --sea-deep: #073946;
  --sea-soft: #d8f0f0;
  --sand: #e4c78f;
  --terracotta: #b76f4a;
  --line: rgba(17, 52, 59, 0.14);
  --shadow: 0 22px 60px rgba(7, 57, 70, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 240, 240, 0.85), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(228, 199, 143, 0.36), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, #f7eee0 58%, #f8f3ea 100%);
  font-family:
    "Aptos",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(183, 111, 74, 0.12) 0 1px, transparent 1.4px),
    radial-gradient(circle at 72% 66%, rgba(15, 94, 111, 0.075) 0 1px, transparent 1.5px),
    radial-gradient(circle at 45% 82%, rgba(228, 199, 143, 0.18) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 88% 28%, rgba(112, 83, 55, 0.07) 0 0.8px, transparent 1.2px);
  background-size:
    34px 34px,
    42px 42px,
    26px 26px,
    18px 18px;
  opacity: 0.58;
}

body.nav-open {
  overflow: hidden;
}

main,
.site-header,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 1;
}

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

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 180ms ease-out;
}

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

.swimming-fish {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.fish {
  position: absolute;
  left: -7rem;
  display: block;
  width: var(--fish-width, 3.8rem);
  height: calc(var(--fish-width, 3.8rem) * 0.38);
  color: var(--fish-color, rgba(216, 240, 240, 0.32));
  filter: drop-shadow(0 5px 10px rgba(7, 57, 70, 0.14));
  opacity: var(--fish-opacity, 0.32);
  transform-origin: center;
  animation:
    fish-swim-right var(--fish-speed, 22s) linear infinite,
    fish-bob 2.8s ease-in-out infinite;
}

.fish::before,
.fish::after {
  position: absolute;
  content: "";
}

.fish::before {
  inset: 18% 0 14% 16%;
  border-radius: 46% 58% 55% 48%;
  background:
    radial-gradient(circle at 78% 36%, currentColor 0 3px, transparent 3.5px),
    linear-gradient(90deg, currentColor, color-mix(in srgb, currentColor 72%, white 28%));
}

.fish::after {
  top: 50%;
  left: 0;
  width: 32%;
  height: 76%;
  background: currentColor;
  clip-path: polygon(100% 50%, 0 0, 28% 50%, 0 100%);
  transform: translateY(-50%);
  animation: fish-tail 780ms ease-in-out infinite alternate;
}

.fish-a {
  top: 16vh;
  --fish-width: 4.5rem;
  --fish-speed: 25s;
  --fish-color: rgba(216, 240, 240, 0.36);
}

.fish-b {
  top: 39vh;
  --fish-width: 3.15rem;
  --fish-speed: 31s;
  --fish-color: rgba(228, 199, 143, 0.34);
  animation-delay: -9s, -1.2s;
}

.fish-c {
  top: 61vh;
  --fish-width: 5.2rem;
  --fish-speed: 36s;
  --fish-color: rgba(15, 94, 111, 0.2);
  --fish-opacity: 0.24;
  animation-delay: -18s, -0.5s;
}

.fish-d {
  top: 76vh;
  --fish-width: 2.9rem;
  --fish-speed: 28s;
  --fish-color: rgba(255, 253, 248, 0.28);
  animation-delay: -14s, -1.8s;
}

.fish-e {
  top: 27vh;
  left: auto;
  right: -7rem;
  --fish-width: 3.7rem;
  --fish-speed: 30s;
  --fish-color: rgba(15, 94, 111, 0.24);
  animation-name: fish-swim-left, fish-bob;
  animation-delay: -21s, -0.9s;
}

.fish-f {
  top: 49vh;
  --fish-width: 2.4rem;
  --fish-speed: 34s;
  --fish-color: rgba(216, 240, 240, 0.24);
  --fish-opacity: 0.26;
  animation-delay: -24s, -1.4s;
}

.fish-g {
  top: 69vh;
  left: auto;
  right: -7rem;
  --fish-width: 4.2rem;
  --fish-speed: 38s;
  --fish-color: rgba(228, 199, 143, 0.22);
  --fish-opacity: 0.22;
  animation-name: fish-swim-left, fish-bob;
  animation-delay: -11s, -0.4s;
}

.fish-h {
  top: 84vh;
  --fish-width: 3.25rem;
  --fish-speed: 42s;
  --fish-color: rgba(15, 94, 111, 0.18);
  --fish-opacity: 0.2;
  animation-delay: -31s, -1.8s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  color: #fffdf8;
  transition:
    background 180ms ease-out,
    color 180ms ease-out,
    box-shadow 180ms ease-out;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 30px rgba(7, 57, 70, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.45rem);
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  opacity: 0.9;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.3rem auto;
  background: currentColor;
  transition:
    transform 160ms ease-out,
    opacity 160ms ease-out;
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdf8;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 28, 34, 0.78) 0%, rgba(4, 28, 34, 0.42) 42%, rgba(4, 28, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 28, 34, 0.32) 0%, rgba(4, 28, 34, 0.16) 45%, rgba(4, 28, 34, 0.72) 100%);
}

.hero-wash {
  position: absolute;
  right: -15vw;
  bottom: -14rem;
  z-index: -2;
  width: 70vw;
  height: 23rem;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255, 253, 248, 0.28), transparent 62%),
    repeating-radial-gradient(ellipse at 50% 40%, rgba(216, 240, 240, 0.24) 0 2px, transparent 2px 16px);
  filter: blur(5px);
  opacity: 0.74;
  transform: rotate(-5deg);
  animation: tide-drift 9s ease-in-out infinite alternate;
}

.hero-tide-line {
  position: absolute;
  right: -8vw;
  bottom: 7.2rem;
  z-index: -1;
  width: 68vw;
  height: 7rem;
  background:
    linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.32), transparent),
    radial-gradient(ellipse at 55% 100%, rgba(216, 240, 240, 0.44), transparent 64%);
  filter: blur(8px);
  transform: rotate(-4deg);
  animation: foam-line 7.8s ease-in-out infinite alternate;
}

.sea-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.sea-atmosphere span {
  position: absolute;
  bottom: -8vh;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.58);
  box-shadow: 0 0 18px rgba(216, 240, 240, 0.82);
  animation: sea-salt 14s linear infinite;
}

.sea-atmosphere span:nth-child(1) {
  left: 9%;
  animation-duration: 17s;
}

.sea-atmosphere span:nth-child(2) {
  left: 24%;
  width: 0.24rem;
  height: 0.24rem;
  animation-delay: -6s;
  animation-duration: 19s;
}

.sea-atmosphere span:nth-child(3) {
  left: 46%;
  animation-delay: -3s;
  animation-duration: 16s;
}

.sea-atmosphere span:nth-child(4) {
  left: 65%;
  width: 0.28rem;
  height: 0.28rem;
  animation-delay: -9s;
  animation-duration: 21s;
}

.sea-atmosphere span:nth-child(5) {
  left: 78%;
  animation-delay: -12s;
  animation-duration: 18s;
}

.sea-atmosphere span:nth-child(6) {
  left: 91%;
  width: 0.22rem;
  height: 0.22rem;
  animation-delay: -5s;
  animation-duration: 22s;
}

.hero-content {
  width: min(760px, calc(100% - 2rem));
  margin: 0 clamp(1rem, 6vw, 5rem) clamp(9rem, 16vh, 12rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--sea);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.1rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 500;
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  transition:
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    background 160ms ease-out;
}

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

.button.primary {
  color: #fffdf8;
  background: linear-gradient(135deg, var(--sea) 0%, #0c7987 58%, var(--terracotta) 100%);
  box-shadow: 0 15px 35px rgba(7, 57, 70, 0.2);
}

.hero .button.primary {
  color: var(--sea-deep);
  background: #fffdf8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.58);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, calc(100% - 2rem));
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 57, 70, 0.44);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 1rem;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 253, 248, 0.18);
}

.hero-panel span {
  display: block;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
}

.hero-panel strong {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.weather-card {
  position: absolute;
  top: 7rem;
  right: clamp(1rem, 4vw, 3.5rem);
  width: min(260px, calc(100% - 2rem));
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 57, 70, 0.34);
  padding: 1rem;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.weather-card span {
  display: block;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.weather-card strong {
  display: block;
  margin: 0.24rem 0 0.36rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.weather-card p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.9rem;
}

.section {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.sand-section {
  position: relative;
}

.sand-section::before {
  position: absolute;
  inset: clamp(0.25rem, 2vw, 1rem) -1.25rem auto;
  height: 12rem;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 8% 60%, rgba(183, 111, 74, 0.15) 0 1.5px, transparent 2px),
    radial-gradient(circle at 42% 30%, rgba(228, 199, 143, 0.3) 0 2px, transparent 2.5px),
    radial-gradient(circle at 78% 55%, rgba(15, 94, 111, 0.09) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 58% 72%, rgba(112, 83, 55, 0.1) 0 0.9px, transparent 1.4px),
    linear-gradient(90deg, transparent, rgba(228, 199, 143, 0.22), rgba(255, 253, 248, 0.34), transparent);
  background-size:
    22px 22px,
    38px 38px,
    29px 29px,
    17px 17px,
    100% 100%;
  border-radius: 50%;
  filter: blur(0.2px);
}

.intro-grid,
.section-heading,
.booking-section,
.footer-main,
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.intro h2 {
  margin-bottom: 0;
  color: var(--sea-deep);
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.detail-list span {
  border: 1px solid rgba(15, 94, 111, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
  color: var(--sea-deep);
  padding: 0.5rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-band {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdf8;
}

.feature-band img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(7, 57, 70, 0.08) 0%, rgba(7, 57, 70, 0.72) 100%);
}

.dock-notes {
  position: absolute;
  top: clamp(5.5rem, 11vw, 8rem);
  right: clamp(1rem, 5vw, 4rem);
  display: grid;
  gap: 0.55rem;
  width: min(280px, calc(100% - 2rem));
}

.dock-notes span {
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(7, 57, 70, 0.42);
  color: rgba(255, 253, 248, 0.88);
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.feature-card {
  width: min(560px, calc(100% - 2rem));
  margin: 0 0 clamp(2rem, 7vw, 5rem) clamp(1rem, 7vw, 6rem);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 57, 70, 0.5);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  backdrop-filter: blur(18px);
}

.feature-card h2 {
  margin-bottom: 1rem;
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading h2,
.review-intro h2 {
  margin-bottom: 0;
  color: var(--sea-deep);
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.dish-highlight {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

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

.dish-highlight div {
  padding: 1.2rem;
}

.dish-highlight span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dish-highlight h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.dish-highlight p,
.menu-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.menu-list {
  display: grid;
  gap: 0.8rem;
}

.menu-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0 1rem;
}

.menu-list h3 {
  margin-bottom: 0.2rem;
  color: var(--sea-deep);
}

.menu-list strong {
  color: var(--sea);
  font-size: 1.15rem;
}

.menu-list strong::before {
  content: "\20AC";
}

.menu-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.menu-notes article {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.62)),
    radial-gradient(circle at 100% 0%, rgba(216, 240, 240, 0.6), transparent 13rem);
  padding: 1.2rem;
}

.menu-notes article::after {
  position: absolute;
  right: -2rem;
  bottom: -2.8rem;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 1px solid rgba(15, 94, 111, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 0.6rem rgba(228, 199, 143, 0.1),
    inset 0 0 0 1.2rem rgba(15, 94, 111, 0.05);
}

.menu-notes span {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 900;
}

.menu-notes h3 {
  margin: 0.6rem 0 0.5rem;
  color: var(--sea-deep);
}

.menu-notes p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.tide-section {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fffdf8;
  isolation: isolate;
}

.tide-section img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tide-section::before,
.tide-section::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.tide-section::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 57, 70, 0.66), rgba(7, 57, 70, 0.16)),
    radial-gradient(circle at 15% 65%, rgba(255, 253, 248, 0.22), transparent 22rem);
}

.tide-section::after {
  bottom: -1.8rem;
  z-index: -1;
  height: 7rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 253, 248, 0.75), transparent 55%),
    radial-gradient(ellipse at 70% 15%, rgba(216, 240, 240, 0.62), transparent 50%);
  filter: blur(10px);
  animation: foam-line 7s ease-in-out infinite alternate;
}

.reef-fish {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.reef-fish span {
  position: absolute;
  left: -9rem;
  width: 5.2rem;
  height: 1.7rem;
  color: rgba(255, 253, 248, 0.36);
  filter: blur(0.2px) drop-shadow(0 8px 18px rgba(7, 57, 70, 0.24));
  animation: reef-swim 18s linear infinite;
}

.reef-fish span::before,
.reef-fish span::after {
  position: absolute;
  content: "";
}

.reef-fish span::before {
  inset: 16% 0 14% 22%;
  border-radius: 48% 62% 58% 48%;
  background: currentColor;
}

.reef-fish span::after {
  top: 50%;
  left: 0;
  width: 34%;
  height: 88%;
  background: currentColor;
  clip-path: polygon(100% 50%, 0 0, 24% 50%, 0 100%);
  transform: translateY(-50%);
  animation: fish-tail 700ms ease-in-out infinite alternate;
}

.reef-fish span:nth-child(1) {
  top: 26%;
  animation-duration: 20s;
}

.reef-fish span:nth-child(2) {
  top: 42%;
  width: 3.6rem;
  height: 1.15rem;
  color: rgba(228, 199, 143, 0.4);
  animation-delay: -7s;
  animation-duration: 16s;
}

.reef-fish span:nth-child(3) {
  top: 57%;
  width: 4.3rem;
  height: 1.35rem;
  animation-delay: -12s;
  animation-duration: 23s;
}

.reef-fish span:nth-child(4) {
  top: 70%;
  width: 2.8rem;
  height: 0.95rem;
  color: rgba(255, 253, 248, 0.24);
  animation-delay: -4s;
  animation-duration: 15s;
}

.reef-fish span:nth-child(5) {
  top: 33%;
  right: -8rem;
  left: auto;
  width: 3.1rem;
  height: 1rem;
  color: rgba(216, 240, 240, 0.28);
  animation-name: reef-swim-left;
  animation-delay: -10s;
  animation-duration: 21s;
}

.reef-fish span:nth-child(6) {
  top: 63%;
  width: 3.4rem;
  height: 1.08rem;
  color: rgba(228, 199, 143, 0.26);
  animation-delay: -17s;
  animation-duration: 27s;
}

.tide-content {
  width: min(760px, calc(100% - 2rem));
  margin-right: auto;
  margin-left: clamp(1rem, 7vw, 6rem);
}

.tide-content h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
}

.tide-content p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
}

.catch-section {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.catch-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: stretch;
}

.catch-card,
.harbor-board,
.experience-strip > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 45px rgba(7, 57, 70, 0.08);
}

.catch-card {
  overflow: hidden;
}

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

.catch-card div {
  padding: 1.2rem;
}

.catch-card span,
.board-row span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catch-card h3 {
  margin: 0.45rem 0 0.65rem;
  color: var(--sea-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.catch-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.harbor-board {
  display: grid;
  padding: clamp(0.85rem, 2vw, 1.2rem);
}

.board-row {
  display: grid;
  grid-template-columns: 7.5rem 7rem 1fr;
  gap: 1rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.board-row:first-child {
  padding-top: 0;
}

.board-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.board-row strong {
  color: var(--sea-deep);
}

.board-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.experience-strip {
  width: min(1160px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  padding-bottom: clamp(4.5rem, 9vw, 7rem);
}

.experience-strip > div {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}

.experience-strip > div::before {
  position: absolute;
  inset: auto -2rem -2.5rem auto;
  width: 8rem;
  height: 8rem;
  content: "";
  border-radius: 48% 52% 50% 50%;
  background:
    radial-gradient(circle at 35% 36%, rgba(255, 253, 248, 0.72), transparent 0.55rem),
    radial-gradient(circle at 45% 45%, rgba(228, 199, 143, 0.28), transparent 4rem);
  opacity: 0.72;
}

.shell-mark {
  display: block;
  width: 2.3rem;
  height: 2rem;
  margin-bottom: 0.9rem;
  border-radius: 55% 55% 48% 48%;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(183, 111, 74, 0.32) 0 2px, transparent 2px 8px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(228, 199, 143, 0.55));
  clip-path: polygon(50% 0, 100% 72%, 78% 100%, 22% 100%, 0 72%);
}

.experience-strip h3 {
  margin-bottom: 0.45rem;
  color: var(--sea-deep);
}

.experience-strip p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sea-soft);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease-out;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--sea-deep);
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.reviews-section {
  width: min(1280px, calc(100% - 2rem));
}

.review-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  padding: 1.25rem;
}

blockquote p {
  color: var(--ink-soft);
}

blockquote cite {
  color: var(--sea-deep);
  font-style: normal;
  font-weight: 800;
}

.booking-section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto clamp(4.5rem, 8vw, 7rem);
  align-items: center;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 57, 70, 0.96), rgba(15, 94, 111, 0.92)),
    radial-gradient(circle at 20% 15%, rgba(228, 199, 143, 0.34), transparent 28rem);
  color: #fffdf8;
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.booking-copy h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
}

.contact-strip {
  margin-top: 1.5rem;
}

.contact-strip a {
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 999px;
  padding: 0.62rem 0.86rem;
  background: rgba(255, 253, 248, 0.08);
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.1);
  padding: clamp(1rem, 3vw, 1.5rem);
  backdrop-filter: blur(16px);
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  color: #fffdf8;
  background: rgba(7, 57, 70, 0.38);
  padding: 0.75rem 0.82rem;
  outline: none;
}

.booking-form select option {
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.48);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 3px rgba(228, 199, 143, 0.2);
}

.form-button {
  width: 100%;
  margin-top: 0.2rem;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.35rem;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 253, 248, 0.78);
  background: #062f39;
  padding: 3rem clamp(1rem, 5vw, 4rem) 1.25rem;
}

.footer-main {
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand {
  color: #fffdf8;
  margin-bottom: 1rem;
}

.footer-main p {
  max-width: 34rem;
  margin-bottom: 0;
}

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

.footer-links a {
  color: #fffdf8;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  padding-top: 1.2rem;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.credit {
  justify-self: end;
  opacity: 0.6;
}

.credit a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@keyframes sea-salt {
  0% {
    transform: translate3d(0, 0, 0) scale(0.75);
    opacity: 0;
  }
  12% {
    opacity: 0.72;
  }
  100% {
    transform: translate3d(2.2rem, -112vh, 0) scale(1.16);
    opacity: 0;
  }
}

@keyframes fish-swim-right {
  from {
    translate: -8rem 0;
  }
  to {
    translate: calc(100vw + 14rem) 0;
  }
}

@keyframes fish-swim-left {
  from {
    translate: 8rem 0;
    scale: -1 1;
  }
  to {
    translate: calc(-100vw - 14rem) 0;
    scale: -1 1;
  }
}

@keyframes fish-bob {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: 0.62rem;
  }
}

@keyframes fish-tail {
  from {
    transform: translateY(-50%) skewY(-8deg);
  }
  to {
    transform: translateY(-50%) skewY(9deg);
  }
}

@keyframes reef-swim {
  from {
    transform: translateX(-8rem);
  }
  to {
    transform: translateX(calc(100vw + 12rem));
  }
}

@keyframes reef-swim-left {
  from {
    transform: translateX(8rem) scaleX(-1);
  }
  to {
    transform: translateX(calc(-100vw - 12rem)) scaleX(-1);
  }
}

@keyframes tide-drift {
  from {
    transform: translateX(-1.8rem) rotate(-5deg);
  }
  to {
    transform: translateX(1.4rem) rotate(-3deg);
  }
}

@keyframes foam-line {
  from {
    transform: translateX(-2rem) scaleX(1.02);
    opacity: 0.74;
  }
  to {
    transform: translateX(2rem) scaleX(1.08);
    opacity: 0.95;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    border: 1px solid rgba(17, 52, 59, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.8rem);
    transition:
      opacity 180ms ease-out,
      transform 180ms ease-out;
  }

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

  .main-nav a {
    padding: 0.9rem 1rem;
  }

  .nav-cta {
    border-width: 0;
    border-radius: 0;
    color: var(--sea);
    font-weight: 800;
  }

  .hero-content {
    margin-bottom: 12rem;
  }

  .weather-card {
    top: auto;
    right: 1rem;
    bottom: 15.6rem;
    width: min(340px, calc(100% - 2rem));
  }

  .hero-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 253, 248, 0.18);
    border-left: 0;
  }

  .intro-grid,
  .section-heading,
  .menu-layout,
  .catch-layout,
  .booking-section,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .feature-card,
  .tide-content {
    margin-left: 1rem;
  }

  .dock-notes {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 2rem);
    margin: clamp(5.5rem, 15vw, 7rem) 1rem 0 auto;
  }

  .menu-notes,
  .experience-strip,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .gallery-large {
    grid-row: auto;
  }

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

  .credit {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 12ch;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.67rem;
  }

  .hero {
    min-height: 1120px;
  }

  .hero-content {
    width: calc(100% - 2rem);
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 27rem;
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 0.96rem;
  }

  .weather-card {
    right: 1rem;
    bottom: 16.2rem;
    left: 1rem;
    width: auto;
    padding: 0.85rem;
  }

  .weather-card strong {
    font-size: 1.15rem;
  }

  .weather-card p {
    font-size: 0.84rem;
  }

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

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

  .booking-section {
    width: calc(100% - 1rem);
  }

  .section {
    width: calc(100% - 1.25rem);
  }

  .experience-strip {
    width: calc(100% - 1.25rem);
  }

  .fish-c,
  .fish-d,
  .fish-g,
  .fish-h {
    display: none;
  }
}

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

  .swimming-fish,
  .reef-fish {
    display: none;
  }
}
