:root {
  --ink: #160f0a;
  --brass: #d2a74a;
  --ember: #b94d2e;
  --foam: #f5e7c8;
  --deep: #051113;
  --teal: #0f5556;
  --logbook-zoom: 1;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  color: var(--foam);
  background: #030607;
  font-family: Georgia, "Times New Roman", serif;
}

button {
  font: inherit;
}

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

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

.gate {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(16, 92, 88, 0.22), transparent 34rem),
    linear-gradient(140deg, #020304 0%, #061719 48%, #0a0705 100%);
}

.sea-haze {
  position: absolute;
  inset: -18vmax;
  background:
    repeating-conic-gradient(from 12deg, rgba(222, 178, 83, 0.07) 0deg 7deg, transparent 7deg 18deg),
    radial-gradient(circle, transparent 0 22%, rgba(3, 7, 8, 0.84) 67%);
  filter: blur(18px);
  opacity: 0.58;
  animation: slow-drift 28s linear infinite;
}

.abyss-wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(31, 142, 155, 0.2), transparent 28rem),
    linear-gradient(140deg, rgba(2, 16, 28, 0.86), rgba(2, 39, 54, 0.74) 52%, rgba(0, 6, 15, 0.9));
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(0.65, 0, 0.15, 1);
}

.map-stage {
  position: relative;
  display: grid;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  min-height: 620px;
  place-items: center;
}

.map-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at center, transparent 0 34%, rgba(2, 4, 4, 0.18) 49%, rgba(0, 0, 0, 0.75) 82%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 24% 76%, rgba(0, 0, 0, 0.44));
}

.map-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: filter 1200ms ease;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
  user-select: none;
  filter: saturate(0.9) contrast(1.08);
}

.map-disc-button {
  position: relative;
  z-index: 4;
  display: grid;
  grid-area: 1 / 1;
  width: clamp(230px, 28vw, 390px);
  aspect-ratio: 1;
  padding: 0;
  color: var(--foam);
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
  touch-action: manipulation;
  transition: opacity 600ms ease, transform 900ms cubic-bezier(0.65, 0, 0.15, 1);
}

.map-disc-button:focus-visible {
  outline: 3px solid var(--foam);
  outline-offset: 12px;
}

.map-disc-button::before {
  position: absolute;
  inset: -24%;
  content: "";
  border-radius: 50%;
}

.disc-flip,
.disc-map,
.ship-scene {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.disc-flip {
  display: grid;
  overflow: hidden;
  border: 2px solid rgba(246, 222, 158, 0.82);
  box-shadow:
    inset 0 0 32px rgba(19, 8, 4, 0.72),
    inset 0 0 0 12px rgba(30, 16, 8, 0.2),
    0 0 0 1px rgba(18, 8, 4, 0.86),
    0 22px 62px rgba(0, 0, 0, 0.66);
  place-items: center;
  transform-origin: center;
  transition: transform 1100ms cubic-bezier(0.62, 0, 0.18, 1);
  will-change: transform;
}

.disc-map {
  background-image:
    radial-gradient(circle, rgba(245, 231, 200, 0.05) 0 42%, rgba(11, 35, 35, 0.24) 58%, rgba(13, 7, 3, 0.56) 100%),
    url("assets/maelstrom-pirate-map.webp");
  background-position: 40% 50%;
  background-size: auto 118vh;
  filter: contrast(1.08) saturate(0.96);
}

.disc-map::after {
  position: absolute;
  inset: 12%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 63, 67, 0.26), transparent 64%);
  border: 1px solid rgba(245, 231, 200, 0.24);
}

.disc-lettering {
  position: absolute;
  inset: -19%;
  z-index: 4;
  width: 138%;
  height: 138%;
  overflow: visible;
  fill: #f5df9c;
  font-family: "Old English Text MT", "Blackletter", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  pointer-events: none;
  text-shadow: 0 2px 0 #120804, 0 0 12px rgba(0, 0, 0, 0.88);
  transform-origin: center;
  transition: transform 1100ms cubic-bezier(0.62, 0, 0.18, 1);
  will-change: transform;
}

.ship-scene {
  z-index: 1;
  display: grid;
  width: 62%;
  height: 60%;
  margin: auto;
  place-items: center;
  transform: translateY(0);
}

.pirate-ship {
  position: relative;
  z-index: 3;
  width: 78%;
  height: auto;
  display: block;
  overflow: visible;
  mix-blend-mode: multiply;
  filter: contrast(1.35) brightness(0.72) drop-shadow(0 8px 7px rgba(0, 0, 0, 0.72));
  animation: ship-float 4.8s ease-in-out infinite;
  user-select: none;
}

.countdown {
  position: relative;
  z-index: 3;
  display: grid;
  grid-area: 1 / 1;
  width: 100vw;
  max-height: 100svh;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(28px) scale(0.94);
  transition: opacity 900ms ease 760ms, transform 900ms ease 760ms;
}

.kicker,
.date {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.kicker {
  color: #f0c96c;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
}

h1 {
  width: 100%;
  margin: 0.24em 0 0.16em;
  color: #fff0c4;
  font-size: clamp(3.1rem, 11vw, 8.8rem);
  line-height: 0.9;
  text-align: center;
  text-shadow:
    0 2px 0 #6f351d,
    0 16px 44px rgba(0, 0, 0, 0.84);
}

.countdown-logo {
  display: block;
  width: min(620px, calc(100vw - 72px));
  height: auto;
  margin: clamp(0.35rem, 1.2vw, 0.7rem) auto clamp(0.25rem, 1vw, 0.5rem);
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 18px rgba(146, 226, 232, 0.12));
  user-select: none;
}

.date {
  color: rgba(245, 231, 200, 0.86);
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
}

.time-grid {
  display: grid;
  width: min(680px, 100%);
  margin-top: clamp(0.9rem, 2.4vw, 1.7rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.6vw, 1rem);
}

.time-grid span {
  display: grid;
  min-width: 0;
  min-height: clamp(88px, 13vw, 124px);
  padding: clamp(0.62rem, 1.8vw, 1rem) 0.4rem;
  background: rgba(7, 14, 14, 0.58);
  border: 1px solid rgba(245, 231, 200, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 0 22px rgba(4, 77, 79, 0.22), 0 20px 44px rgba(0, 0, 0, 0.36);
  place-items: center;
}

.time-grid strong {
  color: #fff4cf;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.7rem, 5.2vw, 3.65rem);
  line-height: 1;
}

.time-grid small {
  color: rgba(245, 231, 200, 0.78);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(0.66rem, 1.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-preview-link {
  display: none;
  margin-top: 1rem;
  padding: 0.55rem 0.75rem;
  color: rgba(245, 231, 200, 0.62);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(3, 9, 10, 0.42);
  border: 1px solid rgba(245, 231, 200, 0.16);
  border-radius: 6px;
}

.admin-mode .admin-preview-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-preview-link:hover,
.admin-preview-link:focus-visible {
  color: #f0c96c;
  border-color: rgba(240, 201, 108, 0.46);
}

.gate.flipped .abyss-wash {
  opacity: 0.78;
}

.gate.spinning .abyss-wash {
  opacity: 0.92;
}

.gate.flipped .disc-flip {
  transform: rotate(180deg);
}

.gate.flipped .disc-lettering {
  transform: rotate(-180deg);
}

.gate.spinning .disc-flip {
  animation: disc-counter-whirlpool 3200ms cubic-bezier(0.42, 0, 0.08, 1) forwards;
}

.gate.spinning .disc-lettering {
  animation: lettering-whirlpool 3200ms cubic-bezier(0.42, 0, 0.08, 1) forwards;
}

.gate.revealed .map-disc-button {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.52);
}

.gate.revealed .countdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.full-site {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, #020808 0%, rgba(0, 0, 0, 0.88) 7%, rgba(0, 0, 0, 0.42) 18%, transparent 34%, transparent 66%, rgba(0, 0, 0, 0.42) 82%, rgba(0, 0, 0, 0.88) 93%, #020808 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 30%, rgba(0, 0, 0, 0.24) 66%, rgba(0, 0, 0, 0.66) 90%, #000 100%),
    url("assets/maelstrom-full-section-bg.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: clamp(760px, 54vw, 1040px) auto;
  background-attachment: scroll;
  background-color: #020808;
}

.logbook-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, #000 0%, #000 11%, rgba(0, 0, 0, 0.92) 20%, rgba(0, 0, 0, 0.58) 31%, rgba(0, 0, 0, 0.18) 41%, transparent 49%, transparent 51%, rgba(0, 0, 0, 0.18) 59%, rgba(0, 0, 0, 0.58) 69%, rgba(0, 0, 0, 0.92) 80%, #000 89%, #000 100%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.74) 8%, rgba(0, 0, 0, 0.2) 22%, rgba(0, 0, 0, 0.04) 56%, rgba(0, 0, 0, 0.58) 88%, #000 100%),
    url("assets/logbook-parchment.webp");
  background-color: #000;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: min(1120px, 74vw) auto;
}

.full-site[hidden] {
  display: none;
}

body.site-open {
  overflow: auto;
}

body.site-open .gate {
  display: none;
}

body.site-open .full-site {
  display: block;
}

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px clamp(18px, 4vw, 56px);
  pointer-events: none;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: #fff1c5;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  outline: none;
  filter:
    drop-shadow(0 0 10px rgba(164, 244, 255, 0.42))
    drop-shadow(0 0 18px rgba(240, 201, 108, 0.24));
  transform: translateY(-1px);
}

.brand-symbol {
  display: grid;
  width: clamp(46px, 4.6vw, 62px);
  aspect-ratio: 256 / 245;
  color: #fff4cf;
  background-image: url("assets/brand-porthole.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 0 7px rgba(0, 0, 0, 0.78);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.2vw, 0.9rem);
  color: #fff2c8;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(0.68rem, 0.92vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.site-nav a {
  display: grid;
  width: clamp(94px, 8.4vw, 132px);
  min-height: clamp(48px, 5vw, 68px);
  align-items: center;
  justify-items: center;
  padding: clamp(1.1rem, 2.2vw, 1.85rem) 0.42rem 0.5rem;
  background-image: url("assets/nav-signboard.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.52));
  text-align: center;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.94),
    0 0 8px rgba(0, 0, 0, 0.78),
    0 0 12px rgba(240, 201, 108, 0.2);
  transition: filter 180ms ease, transform 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #f7d77d;
  outline: none;
  filter:
    drop-shadow(0 0 10px rgba(240, 201, 108, 0.28))
    drop-shadow(0 12px 12px rgba(0, 0, 0, 0.56));
  transform: translateY(-2px);
}

.site-nav a[href$="logbook.html"] {
  width: clamp(118px, 10.4vw, 162px);
}

.language-switcher {
  position: absolute;
  top: clamp(26px, 2.8vw, 34px);
  left: clamp(78px, 8.8vw, 128px);
  z-index: 60;
  display: grid;
  justify-items: start;
  pointer-events: auto;
}

.language-toggle,
.language-options button {
  display: grid;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 10, 11, 0.66);
  border: 1px solid rgba(128, 241, 255, 0.24);
  border-radius: 50%;
  place-items: center;
  line-height: 1;
  box-shadow:
    0 0 16px rgba(0, 221, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.34);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.language-toggle {
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: 82px;
  height: 42px;
  gap: 0.18rem;
  padding: 0 1.1rem 0 0.56rem;
  font-size: 1.18rem;
  border-radius: 999px;
}

.language-toggle [data-current-language-flag] {
  display: none;
}

.language-toggle-flags {
  display: inline-flex;
  gap: 0.12rem;
  align-items: center;
  filter: drop-shadow(0 0 5px rgba(0, 221, 255, 0.32));
}

.language-toggle::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(128, 241, 255, 0.9);
  border-bottom: 2px solid rgba(128, 241, 255, 0.9);
  filter: drop-shadow(0 0 5px rgba(0, 221, 255, 0.85));
  transform: rotate(45deg);
  transition: transform 160ms ease, bottom 160ms ease;
}

.language-switcher.is-open .language-toggle::after {
  bottom: 5px;
  transform: rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 0.38rem);
  left: 0;
  display: grid;
  gap: 0.34rem;
  padding: 0.32rem;
  pointer-events: none;
  background: rgba(0, 10, 11, 0.72);
  border: 1px solid rgba(128, 241, 255, 0.18);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px) scale(0.96);
  transform-origin: top left;
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(8px);
}

.language-switcher.is-open .language-options {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-options button {
  grid-template-columns: auto auto;
  width: auto;
  min-width: 72px;
  height: 34px;
  gap: 0.34rem;
  padding: 0 0.62rem;
  color: #fff1c5;
  border-radius: 999px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-options button:hover,
.language-options button:focus-visible,
.language-options button.is-active {
  outline: none;
  border-color: rgba(128, 241, 255, 0.72);
  box-shadow: 0 0 12px rgba(0, 221, 255, 0.34);
  transform: translateY(-1px);
}

.site-hero {
  position: relative;
  display: grid;
  z-index: 2;
  min-height: clamp(430px, 46vw, 680px);
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
  place-items: center;
}

.site-map {
  display: none;
}

.site-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(95, 239, 255, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.03) 58%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.site-hero-content {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  display: grid;
  width: min(980px, calc(100vw - 32px));
  padding: clamp(56px, 10vh, 110px) 0;
  text-align: center;
  place-items: center;
  transform: translateY(clamp(18px, 2.6vw, 42px));
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 98%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, transparent 98%);
}

.site-hero-content::before {
  display: none;
}

.site-logo-title {
  position: relative;
  z-index: 1;
  display: block;
  width: min(860px, calc(100vw - 54px));
  height: auto;
  margin: 0 0 clamp(0.8rem, 2vw, 1.4rem);
  filter:
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.76))
    drop-shadow(0 0 4px rgba(217, 255, 255, 0.84))
    drop-shadow(0 0 12px rgba(76, 231, 255, 0.68))
    drop-shadow(0 0 24px rgba(12, 153, 198, 0.48))
    drop-shadow(0 0 42px rgba(3, 71, 116, 0.52));
  animation: logo-neon-breathe 3.8s ease-in-out infinite;
  user-select: none;
}

@keyframes logo-neon-breathe {
  0%,
  100% {
    filter:
      drop-shadow(0 14px 20px rgba(0, 0, 0, 0.76))
      drop-shadow(0 0 4px rgba(196, 252, 255, 0.78))
      drop-shadow(0 0 10px rgba(64, 219, 239, 0.58))
      drop-shadow(0 0 22px rgba(8, 123, 164, 0.42))
      drop-shadow(0 0 38px rgba(3, 61, 95, 0.48));
  }

  48% {
    filter:
      drop-shadow(0 14px 20px rgba(0, 0, 0, 0.78))
      drop-shadow(0 0 5px rgba(221, 255, 255, 0.9))
      drop-shadow(0 0 15px rgba(82, 236, 255, 0.76))
      drop-shadow(0 0 32px rgba(12, 153, 198, 0.58))
      drop-shadow(0 0 54px rgba(7, 93, 134, 0.6));
  }
}

.site-lede {
  width: min(650px, 100%);
  margin: 0;
  color: rgba(245, 231, 200, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.booking-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.booking-form button {
  color: #130905;
  background: linear-gradient(145deg, #ffe6a0, #c6943a);
  border: 1px solid rgba(255, 238, 184, 0.68);
}

.content-band {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(245, 231, 200, 0.12);
}

.abyss-map-block {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  background: transparent;
}

.abyss-map-block::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 32%, rgba(22, 150, 165, 0.14), transparent 34rem),
    linear-gradient(180deg, transparent 0%, transparent 72%, rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.44));
  pointer-events: none;
}

.abyss-map-block > .content-band {
  position: relative;
  z-index: 1;
  border-top: 0;
  background: transparent;
}

.intro-band {
  padding-top: clamp(22px, 3vw, 44px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.section-heading {
  display: grid;
  max-width: 840px;
  gap: 0.6rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.section-heading h2,
.booking-copy h2,
.contact-band h2 {
  margin: 0;
  color: #fff0c4;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-heading h2.page-title,
.page-title {
  color: #030707;
  text-shadow:
    0 1px 0 rgba(218, 255, 255, 0.56),
    0 0 4px rgba(222, 255, 255, 0.95),
    0 0 13px rgba(69, 228, 255, 0.7),
    0 0 28px rgba(8, 139, 188, 0.58),
    0 0 46px rgba(2, 68, 103, 0.62);
}

.intro-band .section-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.intro-band .section-heading h2 {
  width: 100%;
  max-width: min(1180px, calc(100vw - clamp(36px, 10vw, 144px)));
  margin-inline: auto;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 2.25rem);
  color: #020605;
  font-weight: 700;
  letter-spacing: 0.045em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  text-shadow:
    0 1px 0 rgba(201, 255, 255, 0.42),
    0 0 3px rgba(222, 255, 255, 1),
    0 0 10px rgba(112, 240, 255, 0.92),
    0 0 24px rgba(26, 174, 210, 0.78),
    0 0 48px rgba(3, 87, 133, 0.76),
    0 0 78px rgba(0, 38, 68, 0.72);
  text-transform: uppercase;
  transform-origin: center;
  white-space: nowrap;
}

.intro-band .section-heading h2:hover,
.intro-band .section-heading h2:focus-visible {
  animation: quote-flip 980ms cubic-bezier(0.45, 0, 0.18, 1);
}

.menu-panel,
.booking-form,
.social-panel {
  background: rgba(5, 16, 18, 0.68);
  border: 1px solid rgba(245, 231, 200, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 0 30px rgba(4, 77, 79, 0.12), 0 24px 52px rgba(0, 0, 0, 0.28);
}

.photo-carousel {
  position: relative;
  margin-inline: calc(clamp(18px, 5vw, 72px) * -0.35);
  overflow: hidden;
}

.photo-carousel::before,
.photo-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(36px, 10vw, 120px);
  pointer-events: none;
  content: "";
}

.photo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 8, 8, 0.92), transparent);
}

.photo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 8, 8, 0.92), transparent);
}

.photo-carousel .carousel-cue {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: clamp(34px, 4vw, 46px);
  aspect-ratio: 1;
  padding: 0;
  color: rgba(255, 235, 173, 0.72);
  cursor: pointer;
  background: rgba(3, 8, 8, 0.5);
  border: 1px solid rgba(240, 201, 108, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(240, 201, 108, 0.12), 0 10px 26px rgba(0, 0, 0, 0.42);
  place-items: center;
  text-shadow: 0 0 10px rgba(240, 201, 108, 0.5);
  transform: translateY(-50%);
}

.photo-carousel .carousel-cue::before {
  content: "";
  width: 34%;
  aspect-ratio: 1;
  border-color: currentColor;
  border-style: solid;
  border-width: 0 3px 3px 0;
}

.carousel-cue-left {
  left: clamp(10px, 2vw, 24px);
}

.carousel-cue-left::before {
  transform: rotate(135deg) translate(-5%, -5%);
}

.carousel-cue-right {
  right: clamp(10px, 2vw, 24px);
}

.carousel-cue-right::before {
  transform: rotate(-45deg) translate(-5%, -5%);
}

.photo-carousel:hover .carousel-cue {
  color: rgba(255, 243, 203, 0.94);
  border-color: rgba(240, 201, 108, 0.55);
  box-shadow: 0 0 22px rgba(240, 201, 108, 0.22), 0 10px 26px rgba(0, 0, 0, 0.42);
}

.photo-carousel .carousel-cue:hover,
.photo-carousel .carousel-cue:focus-visible {
  color: #fff3cb;
  outline: none;
  transform: translateY(-50%) scale(1.06);
}

.photo-track {
  display: flex;
  width: max-content;
  gap: clamp(0.85rem, 2vw, 1.4rem);
  padding: 0 clamp(18px, 5vw, 72px) 0.8rem;
  transform: translateX(var(--carousel-offset, 0px));
  transition: transform 360ms cubic-bezier(0.22, 0.75, 0.24, 1);
  will-change: transform;
}

.photo-carousel.is-gliding .photo-track {
  transition: none;
}

.photo-placeholder {
  position: relative;
  flex: 0 0 var(--frame-width, clamp(220px, 24vw, 340px));
  aspect-ratio: var(--frame-ratio, 650 / 975);
  min-height: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.44));
  transform: translateY(var(--frame-y, 0)) rotate(var(--frame-rotate, 0deg));
  transition: filter 180ms ease, transform 180ms ease;
}

.photo-placeholder:hover,
.photo-placeholder:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 18px rgba(240, 201, 108, 0.24)) drop-shadow(0 22px 26px rgba(0, 0, 0, 0.46));
  transform: translateY(calc(var(--frame-y, 0px) - 4px)) rotate(var(--frame-rotate, 0deg));
}

.photo-placeholder::before {
  position: absolute;
  inset: var(--photo-inset, 12.4% 17.5% 12.4%);
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(245, 231, 200, 0.16), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(22, 105, 112, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(4, 12, 13, 0.9), rgba(20, 12, 7, 0.86)),
    url("assets/parchment-background.webp");
  background-position: center;
  background-size: cover;
  border-radius: 2px;
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.56);
}

.photo-placeholder::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background-image: var(--frame-image, url("assets/frame-gold-ornate.webp"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.photo-placeholder img {
  position: absolute;
  inset: var(--photo-inset, 12.4% 17.5% 12.4%);
  z-index: 1;
  width: var(--photo-width, 65%);
  height: var(--photo-height, 75.2%);
  object-fit: cover;
}

.photo-placeholder span {
  position: absolute;
  left: 50%;
  bottom: var(--label-bottom, 15.4%);
  z-index: 3;
  color: rgba(245, 231, 200, 0.68);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.frame-green {
  --frame-image: url("assets/frame-green.webp");
  --frame-width: clamp(220px, 23vw, 330px);
  --frame-ratio: 674 / 960;
  --photo-inset: 23% 22% 13%;
  --photo-width: 56%;
  --photo-height: 64%;
}

.frame-gold {
  --frame-image: url("assets/frame-gold-ornate.webp");
  --frame-width: clamp(230px, 24vw, 350px);
  --frame-ratio: 650 / 975;
  --photo-inset: 15% 18% 13%;
  --photo-width: 64%;
  --photo-height: 72%;
}

.frame-dark-wood {
  --frame-image: url("assets/frame-dark-wood.webp");
  --frame-width: clamp(225px, 23vw, 340px);
  --frame-ratio: 736 / 1067;
  --photo-inset: 12% 17% 14%;
  --photo-width: 66%;
  --photo-height: 74%;
}

.frame-red {
  --frame-image: url("assets/frame-red-wood.webp");
  --frame-width: clamp(190px, 19vw, 280px);
  --frame-ratio: 382 / 500;
  --photo-inset: 13.2% 15.8% 14.2%;
  --photo-width: 68.4%;
  --photo-height: 72.6%;
  --label-bottom: 14.8%;
}

.frame-dark-gold {
  --frame-image: url("assets/frame-dark-gold.webp");
  --frame-width: clamp(225px, 23vw, 340px);
  --frame-ratio: 604 / 700;
  --photo-inset: 15% 17% 15%;
  --photo-width: 66%;
  --photo-height: 70%;
}

.frame-dark-gold-landscape {
  --frame-image: url("assets/frame-dark-gold-landscape.webp");
  --frame-width: clamp(330px, 35vw, 520px);
  --frame-ratio: 700 / 604;
  --photo-inset: 17% 12.5% 15%;
  --photo-width: 75%;
  --photo-height: 68%;
}

.frame-dark-wood-landscape {
  --frame-image: url("assets/frame-dark-wood-landscape.webp");
  --frame-width: clamp(335px, 36vw, 540px);
  --frame-ratio: 1104 / 736;
  --photo-inset: 20% 15% 20%;
  --photo-width: 70%;
  --photo-height: 60%;
}

.tilt-left {
  --frame-rotate: -1.8deg;
}

.tilt-right {
  --frame-rotate: 1.4deg;
}

.lift-small {
  --frame-y: -10px;
}

.lift-large {
  --frame-y: -18px;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  padding: max(22px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 42%, rgba(18, 91, 99, 0.18), transparent 30rem),
    rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
  place-items: center;
}

.photo-lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.lightbox-frame {
  flex: none;
  width: min(72vw, 620px);
  max-width: calc(100vw - 42px);
  max-height: calc(100svh - 62px);
  cursor: default;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.72));
  transform: none;
}

.lightbox-frame.landscape {
  width: min(86vw, 880px);
}

.lightbox-frame:hover,
.lightbox-frame:focus-visible {
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.72));
  transform: none;
}

.lightbox-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 42;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  color: rgba(255, 235, 173, 0.86);
  cursor: pointer;
  background: rgba(3, 8, 8, 0.72);
  border: 1px solid rgba(240, 201, 108, 0.4);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: #fff3cb;
  outline: none;
  box-shadow: 0 0 22px rgba(240, 201, 108, 0.24), 0 12px 28px rgba(0, 0, 0, 0.48);
}

body.lightbox-open {
  overflow: hidden;
}

.menu-panel h3,
.social-panel h3 {
  margin: 0 0 0.8rem;
  color: #f0c96c;
  font-size: 1.1rem;
}

.booking-copy p,
.contact-band p {
  margin: 0;
  color: rgba(245, 231, 200, 0.76);
  line-height: 1.7;
}

.menu-band {
  background:
    radial-gradient(circle at 15% 10%, rgba(173, 57, 33, 0.12), transparent 28rem),
    rgba(0, 0, 0, 0.16);
}

.reservations-page {
  background:
    linear-gradient(90deg, #000 0%, #000 12%, rgba(0, 0, 0, 0.94) 20%, rgba(0, 0, 0, 0.64) 30%, transparent 45%, transparent 55%, rgba(0, 0, 0, 0.64) 70%, rgba(0, 0, 0, 0.94) 80%, #000 88%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.68) 100%),
    url("assets/maelstrom-full-section-bg.webp");
  background-color: #000;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: clamp(760px, 54vw, 1040px) auto;
}

.reservations-band {
  display: grid;
  min-height: calc(100svh - 104px);
  align-content: center;
  gap: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(173, 57, 33, 0.12), transparent 28rem),
    rgba(0, 0, 0, 0.16);
  background-size: cover;
}

.reservation-heading {
  max-width: none;
  justify-items: center;
  margin-bottom: 0;
  margin-inline: auto;
  text-align: center;
}

.reservation-heading h2 {
  text-transform: uppercase;
}

.reservation-heading p {
  max-width: 680px;
  margin: 0.7rem auto 0;
  color: rgba(245, 231, 200, 0.74);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.55;
}

.reservation-heading .reservation-oracle-kicker {
  color: #9df6ff;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 221, 255, 0.72), 0 0 18px rgba(0, 139, 188, 0.5);
}

.divination-notes small {
  color: rgba(164, 244, 255, 0.66);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.reservation-time-guidance {
  color: rgba(164, 244, 255, 0.66);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.divination-addon {
  padding: 0.9rem;
  background: radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.1), transparent 75%), rgba(0, 14, 17, 0.7);
  border: 1px solid rgba(128, 241, 255, 0.3);
  border-radius: 7px;
  box-shadow: inset 0 0 28px rgba(0, 44, 52, 0.3), 0 0 16px rgba(0, 221, 255, 0.12);
}

.divination-addon-choice {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem !important;
  cursor: pointer;
}

.divination-addon-choice input {
  width: 19px;
  min-width: 19px;
  height: 19px;
  min-height: 19px;
  padding: 0;
  accent-color: #38e8ff;
  cursor: pointer;
}

.divination-addon-choice strong,
.divination-addon-choice small {
  display: block;
}

.divination-addon-choice strong {
  color: #c9fbff;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.42);
}

.divination-addon-choice small {
  margin-top: 0.3rem;
  color: rgba(164, 244, 255, 0.72);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.divination-addon-fields {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 0.9rem;
  padding-top: 1rem;
  margin-top: 0.9rem;
  border-top: 1px solid rgba(128, 241, 255, 0.16);
}

.divination-addon-fields > label:first-child,
.divination-time-slots {
  grid-column: 1 / -1;
}

.divination-time-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.divination-person-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.9rem;
  background: rgba(0, 7, 9, 0.72);
  border: 1px solid rgba(128, 241, 255, 0.18);
  border-radius: 6px;
}

.divination-person-card h3,
.divination-person-card .divination-notes {
  grid-column: 1 / -1;
}

.divination-person-card h3 {
  margin: 0;
  color: #c9fbff;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.34);
}

.divination-addon-fields[hidden],
.divination-addon[hidden] {
  display: none;
}

.reservation-form {
  display: grid;
  width: min(860px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-inline: auto;
  background:
    radial-gradient(circle at 86% 0%, rgba(0, 221, 255, 0.08), transparent 8rem),
    linear-gradient(145deg, rgba(0, 6, 8, 0.97), rgba(0, 4, 5, 0.95)),
    url("assets/parchment-background.webp");
  background-blend-mode: normal, normal, multiply;
  background-size: cover;
  border: 1px solid rgba(128, 241, 255, 0.18);
  border-radius: 6px;
  box-shadow:
    inset 0 0 56px rgba(0, 0, 0, 0.8),
    0 18px 30px rgba(0, 0, 0, 0.44);
}

.reservation-form label {
  display: grid;
  gap: 0.38rem;
  color: #fff0c4;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.78rem;
  color: #fff4cf;
  background: rgba(0, 4, 6, 0.86);
  border: 1px solid rgba(128, 241, 255, 0.16);
  border-radius: 6px;
  font: 500 0.95rem/1.35 "Trebuchet MS", Arial, sans-serif;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.52);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 244, 207, 0.46);
}

.reservation-form select {
  color-scheme: dark;
  cursor: pointer;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-newsletter-opt-in {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 244, 207, 0.82);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reservation-newsletter-opt-in input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: #38e8ff;
  cursor: pointer;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(128, 241, 255, 0.58);
  outline: none;
  box-shadow:
    0 0 18px rgba(0, 221, 255, 0.14),
    inset 0 0 18px rgba(0, 0, 0, 0.32);
}

.reservation-wide,
.reservation-submit,
.reservation-status {
  grid-column: 1 / -1;
}

.reservation-submit {
  justify-self: center;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  color: #9ef8ff;
  background:
    linear-gradient(180deg, rgba(9, 44, 50, 0.94), rgba(0, 8, 10, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.18), transparent 76%);
  border: 1px solid rgba(128, 241, 255, 0.42);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.62);
  box-shadow:
    0 0 22px rgba(0, 221, 255, 0.12),
    inset 0 0 16px rgba(0, 221, 255, 0.08);
}

.reservation-submit:hover,
.reservation-submit:focus-visible {
  color: #e9fdff;
  outline: none;
  box-shadow:
    0 0 26px rgba(0, 221, 255, 0.22),
    inset 0 0 18px rgba(0, 221, 255, 0.12);
}

.reservation-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.reservation-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(245, 231, 200, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.reservation-group-notice {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 241, 197, 0.86);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.12), transparent 78%),
    rgba(0, 7, 9, 0.72);
  border: 1px solid rgba(128, 241, 255, 0.28);
  border-radius: 6px;
  text-align: center;
  box-shadow:
    0 0 22px rgba(0, 221, 255, 0.1),
    inset 0 0 24px rgba(0, 0, 0, 0.36);
}

.reservation-group-notice[hidden] {
  display: none;
}

.reservation-group-notice h3,
.reservation-group-notice p {
  margin: 0;
}

.reservation-group-notice h3 {
  color: #9ef8ff;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.05rem;
  text-shadow: 0 0 12px rgba(0, 221, 255, 0.42);
}

.reservation-group-notice p {
  line-height: 1.45;
}

.reservation-group-notice a {
  justify-self: center;
  min-height: 38px;
  padding: 0.58rem 0.86rem;
  color: #071417;
  background: rgba(109, 231, 247, 0.92);
  border: 1px solid rgba(201, 253, 255, 0.78);
  border-radius: 999px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 12px rgba(0, 221, 255, 0.38),
    0 8px 18px rgba(0, 0, 0, 0.4);
}

.reservation-group-notice a:hover,
.reservation-group-notice a:focus-visible {
  outline: none;
  filter: brightness(1.12);
  transform: translateY(-1px);
}

body.reservation-confirmed {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(128, 241, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #020303 0%, #000 100%);
}

body.reservation-confirmed .reservations-page {
  display: none;
}

.reservation-thanks {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  min-height: 100svh;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(128, 241, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 50% 74%, rgba(240, 201, 108, 0.06), transparent 18rem),
    linear-gradient(180deg, rgba(1, 4, 5, 0.9), rgba(0, 0, 0, 0.98));
  place-items: center;
}

.reservation-thanks[hidden] {
  display: none;
}

.reservation-thanks::before {
  position: absolute;
  inset: -18vmax;
  content: "";
  background:
    repeating-conic-gradient(from 20deg, rgba(128, 241, 255, 0.045) 0deg 8deg, transparent 8deg 20deg),
    radial-gradient(circle, transparent 0 24%, rgba(0, 0, 0, 0.84) 68%);
  filter: blur(18px);
  opacity: 0.54;
  animation: reservation-thanks-drift 30s linear infinite;
}

.reservation-thanks-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, calc(100vw - 36px));
  max-height: calc(100svh - 36px);
  justify-items: center;
  text-align: center;
}

.reservation-thanks-logo {
  display: block;
  width: min(210px, 42vw);
  max-height: min(46svh, 430px);
  height: auto;
  margin-bottom: clamp(0.7rem, 2.4vw, 1rem);
  filter:
    invert(1)
    drop-shadow(0 0 14px rgba(164, 244, 255, 0.2))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.66));
  transform-origin: 50% 43%;
  animation: reservation-up-is-down-swing 2400ms cubic-bezier(0.44, 0, 0.18, 1) 260ms both;
  user-select: none;
}

.reservation-thanks h2 {
  max-width: min(14ch, 100%);
  margin: 0.1rem 0 0.65rem;
  color: #fff0c4;
  font-size: clamp(2rem, 6.4vw, 3.8rem);
  line-height: 0.94;
  text-shadow:
    0 2px 0 rgba(111, 53, 29, 0.9),
    0 0 28px rgba(240, 201, 108, 0.2),
    0 18px 38px rgba(0, 0, 0, 0.72);
}

.reservation-thanks-content > p:not(.site-kicker) {
  max-width: 34rem;
  margin: 0;
  color: rgba(245, 231, 200, 0.78);
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  line-height: 1.55;
}

.reservation-home-link {
  min-height: 42px;
  padding: 0.7rem 1.1rem;
  margin-top: clamp(0.95rem, 3vw, 1.35rem);
  color: #9ef8ff;
  background:
    linear-gradient(180deg, rgba(9, 44, 50, 0.92), rgba(0, 8, 10, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.18), transparent 72%);
  border: 1px solid rgba(128, 241, 255, 0.38);
  border-radius: 999px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(0.62rem, 2.2vw, 0.74rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.58);
  box-shadow:
    0 0 22px rgba(0, 221, 255, 0.12),
    inset 0 0 16px rgba(0, 221, 255, 0.08);
}

.reservation-home-link:hover,
.reservation-home-link:focus-visible {
  color: #e9fdff;
  outline: none;
  box-shadow:
    0 0 28px rgba(0, 221, 255, 0.22),
    inset 0 0 18px rgba(0, 221, 255, 0.12);
}

.simple-gallery-band {
  min-height: calc(100svh - 104px);
  background:
    radial-gradient(circle at 82% 12%, rgba(16, 84, 96, 0.18), transparent 30rem),
    radial-gradient(circle at 18% 88%, rgba(91, 36, 22, 0.14), transparent 24rem),
    rgba(0, 0, 0, 0.2);
}

.logbook-band {
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: clamp(112px, 12vw, 150px);
  padding-bottom: clamp(34px, 6vw, 74px);
  overflow-x: auto;
  background: transparent;
}

.gallery-page .section-heading {
  max-width: none;
  justify-items: center;
  text-align: center;
}

.gallery-page .section-heading h2 {
  text-transform: uppercase;
}

.simple-gallery {
  display: grid;
  width: min(1280px, 100%);
  margin-inline: auto;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 18vw, 240px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.7vw, 1.15rem);
}

.simple-photo {
  position: relative;
  display: grid;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 231, 200, 0.14), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(22, 105, 112, 0.34), transparent 18rem),
    linear-gradient(145deg, rgba(3, 12, 14, 0.96), rgba(18, 11, 7, 0.9)),
    url("assets/parchment-background.webp");
  background-position: center;
  background-size: cover;
  border-radius: 3px;
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.5),
    0 18px 36px rgba(0, 0, 0, 0.34);
  place-items: end start;
}

.simple-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.simple-photo span {
  position: relative;
  z-index: 1;
  padding: 1rem;
  color: rgba(245, 231, 200, 0.78);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.simple-photo-large {
  grid-column: span 2;
  grid-row: span 2;
}

.simple-photo-wide {
  grid-column: span 2;
}

.simple-photo-tall {
  grid-row: span 2;
}

.menu-band .section-heading {
  max-width: none;
  justify-items: center;
  margin-bottom: 0;
  text-align: center;
}

.menu-band .section-heading h2 {
  text-transform: uppercase;
}

.logbook-book {
  position: relative;
  display: grid;
  width: min(820px, calc(100vw - 36px));
  gap: clamp(0.9rem, 2vw, 1.2rem);
  margin: 0 auto;
  place-items: center;
}

.logbook-sheet {
  position: relative;
  display: grid;
  align-items: stretch;
  width: min(660px, 100%);
  aspect-ratio: 0.72 / 1;
  overflow: hidden;
  zoom: var(--logbook-zoom);
  --logbook-page-x: 50%;
  --logbook-page-y: 50%;
  background:
    linear-gradient(135deg, rgba(255, 245, 207, 0.16), transparent 36%),
    url("assets/logbook-parchment.webp");
  background-position: center, var(--logbook-page-x) var(--logbook-page-y);
  background-size: cover;
  border: 1px solid rgba(68, 34, 13, 0.15);
  border-radius: 8px;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
  box-shadow:
    inset 0 0 74px rgba(0, 0, 0, 0.22),
    inset 0 0 44px rgba(79, 36, 10, 0.12),
    inset 0 0 1px rgba(255, 248, 220, 0.3);
}

.logbook-sheet::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08) 12%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.08) 88%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 16%, transparent 82%, rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 50% 44%, transparent 42%, rgba(73, 34, 11, 0.16)),
    linear-gradient(180deg, rgba(255, 250, 220, 0.06), transparent 22%, transparent 80%, rgba(64, 28, 7, 0.08));
  pointer-events: none;
}

.logbook-sheet.is-logbook-cover {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 190, 112, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 18%, transparent 80%, rgba(0, 0, 0, 0.54)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 18%, transparent 84%, rgba(0, 0, 0, 0.62)),
    url("assets/logbook-cover.webp");
  background-position: center;
  background-size: cover;
  border-color: rgba(94, 45, 28, 0.72);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 207, 144, 0.08),
    inset 0 0 46px rgba(0, 0, 0, 0.72);
}

.logbook-sheet.is-logbook-cover::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 17%, transparent 78%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 50% 42%, transparent 48%, rgba(0, 0, 0, 0.24));
}

.logbook-cover-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
  text-align: center;
}

.logbook-cover-content img {
  width: min(105%, 560px);
  max-height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter:
    sepia(0.9)
    saturate(0.85)
    contrast(1.26)
    brightness(0.72)
    drop-shadow(0 1px 0 rgba(214, 151, 82, 0.16))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.24));
  opacity: 0.78;
}

.logbook-entry {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.45rem, 3vw, 2.7rem);
  overflow-y: auto;
  color: rgba(28, 15, 7, 0.9);
  font-family: "Ink Free", "Segoe Script", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: clamp(0.82rem, 1.13vw, 1.02rem);
  font-weight: 500;
  line-height: 1.42;
  text-align: left;
  text-shadow: 0 0.4px 0 rgba(64, 32, 12, 0.24);
  scrollbar-color: rgba(57, 29, 10, 0.34) transparent;
  scrollbar-width: thin;
}

.logbook-entry time {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(38, 18, 6, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logbook-entry p {
  margin: 0 0 0.72rem;
}

.logbook-entry p:last-child {
  margin-bottom: 0;
}

.logbook-entry-illustration-wrap {
  position: relative;
  display: block;
  width: min(86%, 460px);
  margin: clamp(0.55rem, 1.4vw, 0.9rem) auto 0;
  isolation: isolate;
  pointer-events: none;
}

.logbook-entry-illustration-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background-image: url("assets/logbook-parchment.webp");
  background-position: center;
  background-size: 340px auto;
  mix-blend-mode: soft-light;
  opacity: 0.26;
  -webkit-mask-image: var(--illustration-mask);
  mask-image: var(--illustration-mask);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.logbook-entry-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
  filter:
    sepia(0.08)
    saturate(1.22)
    contrast(1.12)
    brightness(1.05);
  opacity: 0.9;
}

.logbook-entry-illustration-wrap.logbook-entry-illustration-portrait {
  width: min(60%, 300px);
}

.logbook-entry-illustration-portrait .logbook-entry-illustration {
  filter:
    sepia(0.1)
    saturate(1.16)
    contrast(1.18)
    brightness(1.02);
  opacity: 0.9;
}

.logbook-entry-illustration-wrap.logbook-entry-illustration-face {
  width: min(68%, 340px);
  margin-top: clamp(0.25rem, 1vw, 0.55rem);
}

.logbook-entry-illustration-face .logbook-entry-illustration {
  filter:
    sepia(0.08)
    saturate(1.2)
    contrast(1.18)
    brightness(1.04);
  opacity: 0.92;
}

.logbook-entry-illustration-wrap.logbook-entry-illustration-coast {
  width: min(96%, 540px);
  margin-top: clamp(0.75rem, 1.7vw, 1rem);
}

.logbook-entry-illustration-coast .logbook-entry-illustration {
  filter:
    sepia(0.06)
    saturate(1.2)
    contrast(1.12)
    brightness(1.04);
  opacity: 0.92;
}

.logbook-entry-with-side-art {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 34%);
  column-gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: start;
  padding-right: clamp(1.1rem, 2vw, 1.65rem);
}

.logbook-entry-with-side-art time,
.logbook-entry-with-side-art > div {
  grid-column: 1;
}

.logbook-entry-illustration-wrap.logbook-entry-illustration-side {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: stretch;
  width: 100%;
  max-width: 220px;
  height: 100%;
  min-height: 430px;
  margin: 0 0 0 auto;
}

.logbook-entry-illustration-side .logbook-entry-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter:
    sepia(0.07)
    saturate(1.18)
    contrast(1.14)
    brightness(1.04);
  opacity: 0.9;
}

.logbook-entry::-webkit-scrollbar {
  width: 6px;
}

.logbook-entry::-webkit-scrollbar-track {
  background: transparent;
}

.logbook-entry::-webkit-scrollbar-thumb {
  background: rgba(57, 29, 10, 0.32);
  border-radius: 999px;
}

.logbook-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.logbook-zoom-controls {
  order: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.28rem;
  background: rgba(5, 5, 5, 0.66);
  border: 1px solid rgba(245, 231, 200, 0.18);
  border-radius: 999px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.26),
    inset 0 0 14px rgba(255, 244, 207, 0.04);
}

.logbook-zoom-button,
.logbook-zoom-value {
  min-width: 42px;
  min-height: 38px;
  padding: 0 0.72rem;
  color: #fff1c5;
  cursor: pointer;
  background: rgba(255, 244, 207, 0.06);
  border: 1px solid rgba(245, 231, 200, 0.12);
  border-radius: 999px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.logbook-zoom-value {
  min-width: 64px;
  color: #f7d77d;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.logbook-zoom-button:hover,
.logbook-zoom-button:focus-visible,
.logbook-zoom-value:hover,
.logbook-zoom-value:focus-visible {
  color: #f7d77d;
  border-color: rgba(245, 231, 200, 0.34);
  outline: none;
  box-shadow: 0 0 16px rgba(240, 201, 108, 0.13);
}

.logbook-zoom-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.logbook-mobile-arrow {
  display: none;
}

.logbook-turn-button {
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  color: #fff1c5;
  cursor: pointer;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(245, 231, 200, 0.18);
  border-radius: 999px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.5),
    inset 0 0 16px rgba(255, 244, 207, 0.035);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.logbook-turn-button:hover,
.logbook-turn-button:focus-visible {
  color: #f7d77d;
  border-color: rgba(245, 231, 200, 0.34);
  outline: none;
  box-shadow:
    0 0 20px rgba(240, 201, 108, 0.14),
    0 14px 24px rgba(0, 0, 0, 0.32),
    inset 0 0 16px rgba(255, 244, 207, 0.05);
  transform: translateY(-1px);
}


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

.menu-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.menu-panel ul {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-panel li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 231, 200, 0.12);
}

.menu-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-panel span {
  color: #fff0c4;
  font-size: 1.08rem;
  font-weight: 700;
}

.menu-panel strong {
  color: rgba(245, 231, 200, 0.68);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signature-menu {
  grid-template-columns: 1fr;
}

.signature-menu-panel {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.signature-menu-panel > p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(245, 231, 200, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.55;
  text-align: center;
}

.signature-cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.signature-cocktail-card {
  position: relative;
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 0.7rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  color: #fff0c4;
  background:
    radial-gradient(circle at 86% 0%, rgba(0, 221, 255, 0.12), transparent 8rem),
    linear-gradient(145deg, rgba(0, 13, 15, 0.88), rgba(6, 22, 23, 0.76)),
    url("assets/parchment-background.webp");
  background-size: cover;
  border: 1px solid rgba(128, 241, 255, 0.18);
  border-radius: 6px;
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.48),
    0 18px 28px rgba(0, 0, 0, 0.34);
}

.signature-cocktail-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 244, 207, 0.06), transparent 36%, rgba(0, 0, 0, 0.24));
  mix-blend-mode: screen;
}

.signature-cocktail-card h4,
.signature-cocktail-card p,
.signature-cocktail-card a {
  position: relative;
  z-index: 1;
}

.signature-cocktail-card h4 {
  margin: 0;
  color: #fff1c5;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.04;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32), 0 0 12px rgba(0, 221, 255, 0.16);
}

.signature-cocktail-card p {
  margin: 0;
  color: rgba(245, 231, 200, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.signature-cocktail-card a {
  justify-self: start;
  min-height: 38px;
  padding: 0.62rem 0.86rem;
  color: #9ef8ff;
  background:
    linear-gradient(180deg, rgba(9, 44, 50, 0.92), rgba(0, 8, 10, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.24), transparent 70%);
  border: 1px solid rgba(120, 241, 255, 0.68);
  border-radius: 999px;
  box-shadow:
    0 0 8px rgba(0, 221, 255, 0.38),
    0 0 18px rgba(0, 96, 128, 0.36),
    inset 0 0 14px rgba(0, 221, 255, 0.08);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.signature-cocktail-card a:hover,
.signature-cocktail-card a:focus-visible {
  outline: none;
  color: #d9fdff;
  border-color: rgba(189, 253, 255, 0.94);
  filter: brightness(1.14);
  box-shadow:
    0 0 12px rgba(0, 221, 255, 0.72),
    0 0 28px rgba(0, 145, 190, 0.58),
    inset 0 0 18px rgba(128, 241, 255, 0.16);
  transform: translateY(-2px);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: #f0c96c;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  color: #fff0c4;
  background: rgba(1, 7, 8, 0.82);
  border: 1px solid rgba(245, 231, 200, 0.2);
  border-radius: 6px;
}

.booking-form button {
  width: 100%;
  cursor: not-allowed;
}

.contact-band {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 42vw, 520px);
  place-items: center;
}

.contact-band::before,
.contact-band::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.7));
}

.contact-band::before {
  left: max(-88px, -5vw);
  bottom: -10px;
  width: clamp(160px, 25vw, 340px);
  aspect-ratio: 647 / 1096;
  background-image: url("assets/contact-corner-books.webp");
  background-position: left bottom;
}

.contact-band::after {
  right: max(-70px, -4vw);
  bottom: 0;
  width: clamp(150px, 22vw, 300px);
  aspect-ratio: 515 / 808;
  background-image: url("assets/contact-corner-map.webp");
  background-position: right bottom;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, calc(100vw - 80px));
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(0.18rem, 0.7vw, 0.42rem);
}

.social-links {
  display: flex;
  min-height: clamp(116px, 15vw, 160px);
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.4rem);
}

.google-review-panel {
  max-width: 300px;
  color: rgba(255, 241, 197, 0.9);
  text-align: center;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.68));
}

.contact-language-note {
  max-width: min(420px, 86vw);
  margin: 0;
  color: rgba(164, 244, 255, 0.78) !important;
  font-size: clamp(0.78rem, 1.15vw, 0.94rem);
  line-height: 1.35 !important;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 199, 235, 0.28), 0 2px 8px rgba(0, 0, 0, 0.82);
}

.review-kicker {
  margin: 0 0 0.36rem;
  color: #101717;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  text-shadow:
    0 0 5px rgba(135, 241, 255, 0.82),
    0 0 12px rgba(12, 201, 235, 0.62),
    0 0 24px rgba(6, 105, 140, 0.64),
    0 2px 0 rgba(255, 241, 197, 0.22);
}

.google-review-panel p:not(.review-kicker) {
  margin: 0 0 0.8rem;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  line-height: 1.45;
}

.google-review-link {
  display: inline-grid;
  min-height: 42px;
  align-items: center;
  padding: 0.6rem 0.92rem;
  color: #031214;
  background: rgba(109, 231, 247, 0.92);
  border: 1px solid rgba(201, 253, 255, 0.84);
  border-radius: 999px;
  box-shadow:
    0 0 10px rgba(0, 221, 255, 0.5),
    0 0 24px rgba(0, 130, 168, 0.42),
    0 12px 16px rgba(0, 0, 0, 0.48);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.google-review-link:hover,
.google-review-link:focus-visible {
  outline: none;
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.google-review-link.is-disabled {
  cursor: default;
  opacity: 0.68;
}

.google-review-link.is-disabled:hover,
.google-review-link.is-disabled:focus-visible {
  filter: none;
  transform: none;
}

.social-icon {
  display: grid;
  width: clamp(50px, 6vw, 76px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter:
    drop-shadow(0 0 7px rgba(111, 218, 232, 0.4))
    drop-shadow(0 0 18px rgba(28, 132, 160, 0.34))
    drop-shadow(0 12px 16px rgba(0, 0, 0, 0.62));
  place-items: center;
  transition: filter 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    invert(74%)
    sepia(60%)
    saturate(760%)
    hue-rotate(139deg)
    brightness(0.92)
    contrast(1.12);
  user-select: none;
}

.social-email {
  color: #071417;
  background: rgba(109, 231, 247, 0.92);
  border: 1px solid rgba(201, 253, 255, 0.78);
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 8px rgba(201, 253, 255, 0.58);
}

.social-contact {
  overflow: hidden;
  color: transparent;
  background: transparent;
  border: 0;
  text-shadow: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  outline: none;
  filter:
    drop-shadow(0 0 10px rgba(164, 244, 255, 0.82))
    drop-shadow(0 0 24px rgba(41, 177, 207, 0.68))
    drop-shadow(0 0 46px rgba(8, 76, 102, 0.72))
    drop-shadow(0 14px 16px rgba(0, 0, 0, 0.58));
  transform: translateY(-4px) scale(1.1);
}

.social-icon.is-disabled {
  cursor: default;
}

.social-icon.is-disabled:hover,
.social-icon.is-disabled:focus-visible {
  transform: none;
}

@keyframes compass-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes disc-counter-whirlpool {
  0% {
    transform: rotate(180deg) scale(1);
  }

  100% {
    transform: rotate(-540deg) scale(0.78);
  }
}

@keyframes lettering-whirlpool {
  0% {
    transform: rotate(-180deg) scale(1);
  }

  100% {
    transform: rotate(540deg) scale(0.78);
  }
}

@keyframes ship-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-8px) rotate(1.2deg);
  }
}

@keyframes slow-drift {
  to {
    transform: rotate(360deg);
  }
}

@keyframes quote-flip {
  0% {
    transform: scaleY(1);
  }

  38% {
    transform: scaleY(0.04);
  }

  50% {
    transform: scaleY(-1);
  }

  68% {
    transform: scaleY(-0.04);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes reservation-up-is-down-swing {
  0% {
    opacity: 0;
    transform: translateY(18px) rotate(0deg) scale(0.92);
  }

  18% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }

  42% {
    transform: rotate(188deg) scale(1);
  }

  58% {
    transform: rotate(172deg);
  }

  73% {
    transform: rotate(183deg);
  }

  86% {
    transform: rotate(178deg);
  }

  100% {
    opacity: 1;
    transform: rotate(180deg);
  }
}

@keyframes reservation-thanks-drift {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  html {
    min-height: 100svh;
  }

  body {
    min-height: 100svh;
    overflow: hidden;
  }

  body.site-open {
    min-height: 100%;
    overflow: auto;
  }

  .gate {
    min-height: 100svh;
  }

  .map-stage {
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
  }

  .map-orbit {
    inset: 0;
  }

  .map-image {
    object-position: 38% 50%;
  }

  .map-disc-button {
    width: clamp(190px, 62vw, 300px);
  }

  .map-disc-button::before {
    inset: -18%;
  }

  .disc-map {
    background-position: 38% 50%;
    background-size: auto 112svh;
  }

  .disc-lettering {
    inset: -17%;
    width: 134%;
    height: 134%;
    font-size: clamp(17px, 5.2vw, 21px);
    letter-spacing: 0.12em;
  }

  .pirate-ship {
    width: 82%;
  }

  .countdown {
    width: 100vw;
    padding: max(12px, env(safe-area-inset-top)) 16px max(14px, env(safe-area-inset-bottom));
  }

  .kicker,
  .date {
    max-width: calc(100vw - 36px);
    letter-spacing: 0.14em;
  }

  h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(2.35rem, 13.2vw, 4.45rem);
    line-height: 0.92;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .countdown-logo {
    width: min(76vw, 360px);
    margin-top: 0.25rem;
    margin-bottom: 0.2rem;
  }

  .time-grid {
    width: min(430px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: clamp(0.55rem, 2svh, 1rem);
  }

  .time-grid span {
    min-height: clamp(66px, 14svh, 88px);
    padding: 0.48rem 0.32rem;
  }

  .time-grid strong {
    font-size: clamp(1.65rem, 8.4vw, 2.45rem);
  }

  .time-grid small {
    font-size: clamp(0.62rem, 3.1vw, 0.78rem);
    letter-spacing: 0.1em;
  }

  .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: max(10px, env(safe-area-inset-top)) 14px 0;
  }

  .full-site {
    background-size: 96% auto;
  }

  .logbook-page {
    background-size: min(1020px, 92vw) auto;
  }

  .brand-mark {
    justify-content: center;
  }

  .language-switcher {
    position: absolute;
    top: max(12px, env(safe-area-inset-top));
    left: 12px;
  }

  .language-toggle {
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0 0.28rem 0 0;
    font-size: 0.94rem;
    border-radius: 50%;
  }

  .language-toggle [data-current-language-flag] {
    display: inline;
  }

  .language-toggle-flags {
    display: none;
  }

  .language-toggle::after {
    right: 4px;
    bottom: 5px;
    width: 6px;
    height: 6px;
    border-width: 1.5px;
  }

  .language-switcher.is-open .language-toggle::after {
    bottom: 4px;
  }

  .language-options {
    top: calc(100% + 0.32rem);
  }

  .language-options button {
    min-width: 66px;
    height: 32px;
    font-size: 0.62rem;
  }

  .site-nav {
    position: absolute;
    top: clamp(232px, 35svh, 318px);
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.38rem;
    font-size: 0.52rem;
    justify-items: center;
    letter-spacing: 0.04em;
  }

  .site-nav a {
    grid-column: span 2;
    width: min(100%, 126px);
    min-height: 36px;
    padding: 0.78rem 0.2rem 0.28rem;
  }

  .site-nav a[href$="logbook.html"] {
    width: min(100%, 144px);
    font-size: 0.48rem;
  }

  .menu-page .site-nav,
.reservations-page .site-nav,
.gallery-page .site-nav,
.logbook-page .site-nav,
.tasting-body .site-nav {
    top: max(38px, calc(env(safe-area-inset-top) + 30px));
  }

.menu-page .content-band,
.reservations-page .content-band,
.gallery-page .content-band,
.logbook-page .content-band {
    padding-top: max(150px, calc(env(safe-area-inset-top) + 138px));
  }

  .logbook-band {
    min-height: auto;
    align-content: start;
    padding-right: 14px;
    padding-bottom: max(42px, env(safe-area-inset-bottom));
    padding-left: 14px;
  }

  .logbook-book {
    width: min(94vw, 520px);
    gap: 0.75rem;
  }

  .logbook-sheet {
    width: 100%;
    min-height: min(120vw, 680px);
    aspect-ratio: auto;
    overflow: visible;
  }

  .logbook-entry {
    min-height: inherit;
    padding: 1.35rem 1.05rem;
    overflow: visible;
    border-right: 0;
    color: rgba(21, 10, 4, 0.94);
    font-family: "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", "Comic Sans MS", cursive;
    font-size: clamp(0.72rem, 3.15vw, 0.88rem);
    font-weight: 700;
    line-height: 1.34;
    text-shadow:
      0 0.35px 0 rgba(34, 16, 7, 0.5),
      0 0 0.65px rgba(34, 16, 7, 0.22);
    touch-action: pan-y;
  }

  .logbook-entry time {
    margin-bottom: 0.42rem;
    font-size: clamp(0.95rem, 4.2vw, 1.15rem);
  }

  .logbook-entry-illustration-wrap {
    width: min(92%, 330px);
    margin-top: 0.85rem;
  }

  .logbook-entry-illustration-wrap.logbook-entry-illustration-portrait {
    width: min(70%, 230px);
  }

  .logbook-entry-illustration-wrap.logbook-entry-illustration-face {
    width: min(76%, 250px);
  }

  .logbook-entry-illustration-wrap.logbook-entry-illustration-coast {
    width: min(96%, 360px);
  }

  .logbook-entry-with-side-art {
    display: block;
    padding-right: 1.05rem;
  }

  .logbook-entry-illustration-wrap.logbook-entry-illustration-side {
    width: min(72%, 210px);
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0.8rem auto 0;
  }

  .logbook-entry-illustration-side .logbook-entry-illustration {
    height: auto;
  }

  .logbook-controls {
    display: none;
  }

  .logbook-zoom-controls {
    gap: 0.28rem;
    padding: 0.22rem;
  }

  .logbook-zoom-button,
  .logbook-zoom-value {
    min-width: 38px;
    min-height: 34px;
    padding: 0 0.58rem;
  }

  .logbook-mobile-arrow {
    position: absolute;
    z-index: 3;
    top: min(52svh, 47%);
    display: grid;
    width: 2.1rem;
    height: 2.1rem;
    place-items: center;
    color: rgba(255, 238, 190, 0.92);
    cursor: pointer;
    background: rgba(9, 6, 3, 0.58);
    border: 1px solid rgba(255, 232, 172, 0.38);
    border-radius: 999px;
    box-shadow:
      0 0 16px rgba(0, 216, 229, 0.22),
      0 8px 18px rgba(0, 0, 0, 0.36),
      inset 0 0 10px rgba(255, 240, 180, 0.08);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .logbook-mobile-arrow-prev {
    left: -0.35rem;
  }

  .logbook-mobile-arrow-next {
    right: -0.35rem;
  }

  .logbook-turn-button {
    min-height: 40px;
    padding: 0.68rem 1rem;
    font-size: 0.66rem;
  }

  .site-hero {
    min-height: clamp(342px, 51svh, 460px);
    margin-bottom: 0;
    overflow: hidden;
    place-items: start center;
  }

  .site-map {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transform: scale(0.958);
  }

  .site-hero-content {
    min-height: 0;
    padding: max(54px, calc(env(safe-area-inset-top) + 48px)) 0 0;
    transform: none;
  }

  .site-hero h1 {
    font-size: clamp(3.05rem, 17vw, 5.2rem);
  }

  .site-logo-title {
    width: min(82vw, 480px);
    margin-bottom: 0.85rem;
  }

  .site-lede {
    font-size: 1rem;
  }

  .content-band {
    padding: 26px 18px;
  }

  .intro-band {
    padding-top: 8px;
  }

  .menu-columns,
  .booking-band,
  .reservation-form,
  .divination-addon-fields,
  .divination-time-slots,
  .divination-person-card {
    grid-template-columns: 1fr;
  }

  .divination-person-card h3,
  .divination-person-card .divination-notes {
    grid-column: auto;
  }

  .signature-cocktail-grid {
    grid-template-columns: 1fr;
  }

  .signature-cocktail-card {
    min-height: 172px;
  }

  .signature-cocktail-card a {
    justify-self: stretch;
    text-align: center;
  }

  .simple-gallery {
    grid-auto-rows: clamp(140px, 42vw, 220px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .simple-photo-large,
  .simple-photo-wide {
    grid-column: span 2;
  }

  .simple-photo-tall {
    grid-row: span 1;
  }

  .intro-band .section-heading h2 {
    display: none;
  }

  .intro-band .section-heading {
    margin-bottom: 0.8rem;
  }

  .photo-carousel {
    margin-inline: -18px;
  }

  .photo-track {
    gap: 0.85rem;
    padding-inline: 18px;
  }

  .photo-placeholder {
    flex-basis: var(--frame-mobile-width, min(58vw, 250px));
  }

  .frame-dark-gold-landscape {
    --frame-mobile-width: min(78vw, 330px);
  }

  .frame-dark-wood-landscape {
    --frame-mobile-width: min(80vw, 340px);
  }

  .booking-band,
  .contact-band {
    gap: 0.75rem;
  }

  .contact-band {
    min-height: 240px;
    margin-top: -28px;
    padding: 4px 18px 108px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.68) 62%, #000 100%);
    place-items: start center;
  }

  .social-links {
    width: min(92vw, 520px);
    min-height: 88px;
  }

  .contact-actions {
    width: min(92vw, 520px);
    grid-template-columns: 1fr;
    gap: 0.12rem;
    justify-items: center;
  }

  .google-review-panel {
    max-width: min(82vw, 320px);
    text-align: center;
  }

  .review-kicker {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .google-review-panel p:not(.review-kicker) {
    margin-bottom: 0.56rem;
    font-size: 0.78rem;
  }

  .google-review-link {
    min-height: 38px;
    padding: 0.54rem 0.78rem;
    font-size: 0.62rem;
  }

  .social-icon {
    width: clamp(34px, 10vw, 48px);
  }

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

  .reservations-band {
    align-content: start;
    min-height: 100svh;
    padding-bottom: max(34px, env(safe-area-inset-bottom));
  }

  .reservation-heading p {
    font-size: 0.86rem;
  }

  .reservation-form {
    padding: 1rem;
  }

  .reservation-thanks-content {
    width: min(390px, calc(100vw - 28px));
    max-height: calc(100svh - 28px);
  }

  .reservation-thanks-logo {
    width: min(168px, 46vw);
    max-height: 42svh;
    margin-bottom: 0.65rem;
  }

  .reservation-thanks h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .reservation-thanks-content > p:not(.site-kicker) {
    max-width: 18rem;
    font-size: 0.9rem;
  }

  .reservation-wide,
  .reservation-submit,
  .reservation-status {
    grid-column: auto;
  }
}

@media (max-width: 380px), (max-height: 660px) {
  .map-disc-button {
    width: clamp(168px, 56vw, 240px);
  }

  .disc-lettering {
    font-size: clamp(15px, 4.8vw, 18px);
  }

  h1 {
    font-size: clamp(2rem, 12.2vw, 3.6rem);
  }

  .countdown-logo {
    width: min(72vw, 320px);
  }

  .time-grid span {
    min-height: 64px;
  }

  .site-nav {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .site-logo-title {
    width: min(88vw, 420px);
  }
}

.newsletter-popover {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 90;
  width: min(360px, calc(100vw - 28px));
  padding: 1rem;
  color: #fff4cf;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 0%, rgba(0, 221, 255, 0.13), transparent 8rem),
    linear-gradient(145deg, rgba(0, 8, 10, 0.96), rgba(0, 3, 5, 0.95)),
    url("assets/parchment-background.webp");
  background-blend-mode: normal, normal, multiply;
  background-size: cover;
  border: 1px solid rgba(128, 241, 255, 0.24);
  border-radius: 8px;
  opacity: 0;
  box-shadow:
    0 0 28px rgba(0, 221, 255, 0.12),
    0 22px 48px rgba(0, 0, 0, 0.62),
    inset 0 0 40px rgba(0, 0, 0, 0.62);
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.newsletter-popover.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.newsletter-close {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 5, 7, 0.7);
  border: 1px solid rgba(128, 241, 255, 0.2);
  border-radius: 999px;
}

.newsletter-close::before,
.newsletter-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  background: rgba(255, 244, 207, 0.86);
  border-radius: 999px;
}

.newsletter-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.newsletter-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.newsletter-form {
  display: grid;
  gap: 0.72rem;
  padding-right: 1.75rem;
}

.newsletter-kicker {
  margin: 0;
  color: #9ef8ff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(0, 221, 255, 0.5);
}

.newsletter-form h2,
.newsletter-form p {
  margin: 0;
}

.newsletter-form h2 {
  color: #fff1c5;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 1;
  text-shadow: 0 0 12px rgba(0, 221, 255, 0.18);
}

.newsletter-form p:not(.newsletter-kicker):not(.newsletter-status) {
  color: rgba(245, 231, 200, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.newsletter-form input {
  width: 100%;
  min-height: 42px;
  padding: 0.66rem 0.76rem;
  color: #fff4cf;
  background: rgba(0, 4, 6, 0.86);
  border: 1px solid rgba(128, 241, 255, 0.18);
  border-radius: 6px;
  font: 600 0.9rem/1.35 "Trebuchet MS", Arial, sans-serif;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.48);
}

.newsletter-form input::placeholder {
  color: rgba(255, 244, 207, 0.48);
}

.newsletter-form input:focus {
  border-color: rgba(128, 241, 255, 0.64);
  outline: none;
  box-shadow:
    0 0 18px rgba(0, 221, 255, 0.14),
    inset 0 0 18px rgba(0, 0, 0, 0.32);
}

.newsletter-form button[type="submit"] {
  justify-self: start;
  min-height: 40px;
  padding: 0.62rem 0.92rem;
  color: #9ef8ff;
  background:
    linear-gradient(180deg, rgba(9, 44, 50, 0.94), rgba(0, 8, 10, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(0, 221, 255, 0.18), transparent 76%);
  border: 1px solid rgba(128, 241, 255, 0.42);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 221, 255, 0.62);
  box-shadow:
    0 0 22px rgba(0, 221, 255, 0.12),
    inset 0 0 16px rgba(0, 221, 255, 0.08);
}

.newsletter-form button[type="submit"]:hover,
.newsletter-form button[type="submit"]:focus-visible,
.newsletter-close:hover,
.newsletter-close:focus-visible {
  outline: none;
  filter: brightness(1.12);
}

.newsletter-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-status {
  min-height: 1.25em;
  color: rgba(158, 248, 255, 0.84);
  font-size: 0.8rem;
  line-height: 1.35;
}

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