:root {
  --navy: #0a253c;
  --navy-deep: #020b14;
  --navy-soft: #123754;
  --paper: #07192a;
  --foam: #0d2c45;
  --aqua: #79b9c8;
  --gold: #d8b46a;
  --coral: #c88952;
  --ink: #fff7e8;
  --muted: #b9c6cc;
  --line: rgba(216, 180, 106, 0.24);
  --panel: rgba(7, 25, 42, 0.86);
  --panel-soft: rgba(13, 44, 69, 0.72);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --page-bg: #07192a;
  --accent-current: var(--gold);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 360px),
    var(--page-bg);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  transition: background-color 520ms ease, color 520ms ease;
}

body.is-lightbox-open,
body.is-discount-open {
  overflow: hidden;
}

body[data-section="hero"],
body[data-section="quick"] {
  --page-bg: #061929;
  --accent-current: var(--gold);
}

body[data-section="experience"] {
  --page-bg: #081f34;
  --accent-current: var(--gold);
}

body[data-section="events"],
body[data-section="private"],
body[data-section="gallery"],
body[data-section="reviews"],
body[data-section="social"] {
  --page-bg: #071a2d;
  --accent-current: #9fc9d3;
}

body[data-section="menu"] {
  --page-bg: #0a2034;
  --accent-current: var(--gold);
}

body[data-section="location"] {
  --page-bg: #061524;
  --accent-current: var(--gold);
}

img,
svg,
iframe,
object {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 3px;
  background: linear-gradient(90deg, #8f6b2f, var(--gold), #fff2bf, var(--gold));
  box-shadow: 0 0 20px rgba(216, 180, 106, 0.48);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 120ms linear;
}

.floating-boat {
  position: fixed;
  left: -150px;
  bottom: 18px;
  z-index: 14;
  width: 118px;
  height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.86;
  cursor: pointer;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.44));
  transform-origin: center bottom;
  animation: boatDrift 30s linear infinite;
}

.floating-boat:hover,
.floating-boat:focus-visible {
  opacity: 1;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 14px rgba(216, 180, 106, 0.34));
}

.floating-boat:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.floating-boat::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 6px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 242, 191, 0.72), transparent);
  opacity: 0.8;
}

.floating-boat-hull,
.floating-boat-sail {
  position: absolute;
  display: block;
}

.floating-boat-hull {
  left: 18px;
  right: 8px;
  bottom: 10px;
  height: 20px;
  border: 1px solid rgba(255, 242, 191, 0.82);
  border-top: 0;
  background: linear-gradient(135deg, rgba(216, 180, 106, 0.94), rgba(133, 94, 37, 0.9));
  clip-path: polygon(0 0, 100% 0, 78% 100%, 18% 100%);
}

.floating-boat-sail {
  bottom: 31px;
  border-style: solid;
  border-color: transparent;
}

.floating-boat-sail-main {
  left: 44px;
  border-width: 0 0 44px 34px;
  border-left-color: rgba(255, 250, 240, 0.94);
}

.floating-boat-sail-small {
  left: 28px;
  border-width: 0 24px 34px 0;
  border-right-color: rgba(216, 180, 106, 0.88);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3.5rem);
  color: white;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(2, 11, 20, 0.93);
  border-bottom: 1px solid rgba(216, 180, 106, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 3px;
  box-shadow: 0 8px 22px rgba(2, 26, 41, 0.24);
}

.brand span {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.2rem);
  font-size: 0.94rem;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:not(.nav-reserve)::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0.2rem;
  background: var(--gold);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-reserve {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.78rem 1.08rem;
  border: 1px solid rgba(216, 180, 106, 0.72);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(216, 180, 106, 0.13), rgba(216, 180, 106, 0.04));
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 242, 191, 0.2), 0 10px 28px rgba(0, 0, 0, 0.18);
  opacity: 1;
  text-shadow: 0 0 18px rgba(216, 180, 106, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-reserve:hover,
.nav-reserve:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 242, 191, 0.86);
  background: linear-gradient(180deg, rgba(216, 180, 106, 0.2), rgba(216, 180, 106, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 242, 191, 0.28), 0 14px 34px rgba(0, 0, 0, 0.26);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 7.4rem clamp(1rem, 4vw, 3.5rem) 3.4rem;
  overflow: hidden;
  color: white;
}

.hero-bg,
.hero-overlay,
.hero-sheen {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/images/optimized/guadalupe-hero.webp?v=2");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  will-change: transform;
  animation: heroPan 24s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 50%, rgba(216, 180, 106, 0.18), transparent 26rem),
    linear-gradient(90deg, rgba(2, 11, 20, 0.96), rgba(2, 11, 20, 0.84) 47%, rgba(2, 11, 20, 0.64)),
    linear-gradient(180deg, rgba(2, 11, 20, 0.18), rgba(2, 11, 20, 0.88));
}

.hero-sheen {
  z-index: 1;
  opacity: 0.28;
  background:
    linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, 0.16) 28%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 110px);
  mix-blend-mode: screen;
  transform: translateX(-22%);
  animation: heroSheen 13s ease-in-out infinite alternate;
}

.hero-waterline {
  position: absolute;
  inset: auto 0 0;
  height: 78px;
  overflow: hidden;
  opacity: 0.78;
}

.hero-waterline::after {
  content: "";
  position: absolute;
  left: -24%;
  bottom: 20px;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 242, 191, 0.84), transparent);
  animation: waterGlint 8.5s ease-in-out infinite;
}

.hero-waterline span {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 60px;
  border-top: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 45% 45% 0 0;
  animation: wave 7s ease-in-out infinite alternate;
}

.hero-waterline span:first-child {
  bottom: 12px;
}

.hero-waterline span:last-child {
  bottom: 0;
  border-color: rgba(81, 183, 179, 0.72);
  animation-delay: -1.8s;
}

.hero-waterline span:nth-child(3) {
  bottom: 26px;
  border-color: rgba(216, 180, 106, 0.42);
  animation-duration: 9.5s;
  animation-delay: -3.1s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 500px);
  gap: clamp(2.2rem, 5vw, 5.2rem);
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  width: min(620px, 100%);
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 800;
  overflow-wrap: normal;
  white-space: nowrap;
  color: #fffaf0;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42), 0 0 34px rgba(216, 180, 106, 0.13);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.35rem, 6.4vw, 6rem);
  line-height: 0.96;
  white-space: normal;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  color: var(--ink);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: var(--ink);
}

.section-copy h2,
.section-heading h2,
.location-copy h2 {
  position: relative;
}

.section-copy h2::after,
.section-heading h2::after,
.location-copy h2::after {
  content: "";
  display: block;
  width: min(140px, 45%);
  height: 2px;
  margin-top: 1rem;
  background: linear-gradient(90deg, transparent, var(--gold), #fff2bf, transparent);
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 620ms ease;
  opacity: 0.62;
}

.section-shift.is-section-active .section-copy h2::after,
.section-shift.is-section-active .section-heading h2::after,
.section-shift.is-section-active .location-copy h2::after {
  transform: scaleX(1);
  opacity: 1;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 1rem 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-meta {
  display: flex;
  justify-content: flex-start;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(216, 180, 106, 0.28);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.46);
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-reserve {
  min-width: min(370px, 100%);
  min-height: 74px;
  padding: 1.12rem clamp(1.5rem, 3vw, 2.6rem);
  border-radius: 8px;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  letter-spacing: 0.05em;
}

.hero-reserve svg {
  width: 24px;
  height: 24px;
}

.hero-instagram {
  min-height: 58px;
  padding-inline: 1.2rem;
  border-color: rgba(216, 180, 106, 0.52);
  background: rgba(2, 11, 20, 0.58);
  color: #f6d98e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.22);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.hero-instagram:hover,
.hero-instagram:focus-visible {
  border-color: rgba(246, 217, 142, 0.86);
  background: rgba(10, 37, 60, 0.72);
  color: #fff2bf;
}

.hero-menu-link {
  color: rgba(255, 250, 240, 0.88);
  font-weight: 800;
  text-decoration-color: rgba(216, 180, 106, 0.5);
  text-underline-offset: 0.35rem;
}

.hero-menu-link:hover,
.hero-menu-link:focus-visible {
  color: var(--gold);
}

.hero-video-panel {
  position: relative;
  display: grid;
  gap: 0.78rem;
  justify-self: end;
  width: min(470px, 100%);
}

.hero-video-kicker {
  justify-self: start;
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 74svh;
  border: 1px solid rgba(216, 180, 106, 0.62);
  border-radius: 8px;
  background: #020b14;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.58), 0 0 0 10px rgba(216, 180, 106, 0.06);
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 11, 20, 0.08), transparent 28%, transparent 72%, rgba(2, 11, 20, 0.3)),
    linear-gradient(90deg, rgba(255, 242, 191, 0.12), transparent 12%, transparent 88%, rgba(216, 180, 106, 0.12));
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-frame span {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  top: 0.9rem;
  padding: 0.44rem 0.7rem;
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.76);
  color: #fffaf0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-caption {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  gap: 0.22rem;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(216, 180, 106, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(2, 11, 20, 0.84), rgba(7, 25, 42, 0.62));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.hero-video-caption strong {
  color: #fffaf0;
  font-size: 1.02rem;
}

.hero-video-caption span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.icon-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.34) 50%, transparent 70% 100%);
  transform: translateX(-120%);
  transition: transform 540ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button-primary {
  background: linear-gradient(135deg, #f6d98e, var(--gold) 55%, #a9782f);
  color: var(--navy-deep);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero .button-primary {
  animation: reservePulse 3.8s ease-in-out infinite;
}

.button-secondary {
  border: 1px solid rgba(216, 180, 106, 0.45);
  background: rgba(7, 25, 42, 0.5);
  color: white;
}

.quick-strip {
  background: linear-gradient(180deg, #061929, #04111d);
  color: white;
  border-top: 1px solid rgba(216, 180, 106, 0.22);
  border-bottom: 1px solid rgba(216, 180, 106, 0.18);
}

.quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-strip p {
  margin: 0;
  padding: 1.25rem clamp(0.9rem, 2vw, 1.4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

.quick-strip p:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--gold);
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.video-story {
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(216, 180, 106, 0.12), transparent 28%),
    linear-gradient(135deg, #061929, #020b14 72%);
  border-top: 1px solid rgba(216, 180, 106, 0.18);
  border-bottom: 1px solid rgba(216, 180, 106, 0.2);
  color: white;
}

.video-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 390px);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.video-copy {
  max-width: 680px;
}

.video-copy h2 {
  color: #fffaf0;
}

.video-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.video-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(216, 180, 106, 0.46);
  border-radius: 8px;
  background: #020b14;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42), 0 0 0 10px rgba(255, 255, 255, 0.03);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.72);
  color: #fffaf0;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

#experience,
#menu,
#events,
#private-booking,
#reviews,
#instagram,
#location {
  scroll-margin-top: 90px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.location-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p:not(.eyebrow) {
  margin: 1.2rem 0 0;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(216, 180, 106, 0.22);
  box-shadow: var(--shadow);
}

.stack-main {
  width: 82%;
  height: 470px;
  transform: rotate(-1.2deg);
}

.stack-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 300px;
  border: 8px solid var(--navy-deep);
  transform: rotate(2.4deg);
  transition: transform 260ms ease;
}

.image-stack:hover .stack-float {
  transform: rotate(0.8deg) translateY(-8px);
}

.experiences {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(13, 44, 69, 0.78), rgba(6, 21, 36, 0.98)),
    linear-gradient(90deg, rgba(216, 180, 106, 0.04), transparent 38%, rgba(121, 185, 200, 0.04));
  border-top: 1px solid rgba(216, 180, 106, 0.16);
  border-bottom: 1px solid rgba(216, 180, 106, 0.12);
}

.private-booking {
  width: 100%;
  background:
    linear-gradient(110deg, rgba(2, 11, 20, 0.98), rgba(8, 31, 52, 0.9)),
    url("assets/images/optimized/guadalupe-deck.webp?v=2") center / cover;
  border-top: 1px solid rgba(216, 180, 106, 0.18);
  border-bottom: 1px solid rgba(216, 180, 106, 0.18);
  color: white;
}

.private-booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.private-copy {
  max-width: 760px;
}

.private-copy h2,
.instagram-band h2 {
  color: white;
}

.private-copy p,
.instagram-band p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.private-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.private-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(216, 180, 106, 0.3);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(7, 25, 42, 0.9), rgba(2, 11, 20, 0.92));
  box-shadow: var(--shadow);
}

.private-panel div {
  padding: 1rem;
  border: 1px solid rgba(216, 180, 106, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.private-panel span,
.review-feature span,
.review-card span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.private-panel strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.section-shift {
  position: relative;
  isolation: isolate;
}

.section-shift::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(0.8rem, 2vw, 1.4rem) auto auto 0;
  width: min(180px, 44vw);
  height: 3px;
  border-radius: 999px;
  background: var(--accent-current);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero.section-shift::before,
.quick-strip.section-shift::before,
.gallery.section-shift::before,
.location.section-shift::before {
  content: none;
}

.section-shift.is-section-active::before {
  opacity: 0.9;
  transform: scaleX(1);
}

.section-shift.is-section-active .section-heading h2,
.section-shift.is-section-active .section-copy h2,
.section-shift.is-section-active .location-copy h2 {
  text-shadow: 0 18px 42px rgba(216, 180, 106, 0.14);
}

.experiences > .section-heading,
.experience-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 850px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
}

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

.experience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 44, 69, 0.92), rgba(7, 25, 42, 0.95));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 180, 106, 0.64);
  box-shadow: var(--shadow);
}

.experience-card::after,
.menu-category::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 49%, transparent 60% 100%);
  transform: translateX(-130%);
  transition: transform 700ms ease;
}

.experience-card:hover::after,
.menu-category:hover::after {
  transform: translateX(130%);
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 560ms ease;
}

.experience-card:hover img {
  transform: scale(1.045);
}

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

.experience-card span,
.menu-highlights span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card p,
.menu-highlights p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.menu-intro {
  margin-top: 1rem;
  color: var(--muted);
}

.menu-intro p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
}

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

.menu-category {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 44, 69, 0.92), rgba(7, 25, 42, 0.97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.menu-category:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 178, 74, 0.65);
  box-shadow: var(--shadow);
}

.menu-category-large {
  grid-row: span 2;
}

.menu-category-head {
  padding: 1.2rem 1.2rem 0.8rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(216, 180, 106, 0.16), rgba(255, 247, 232, 0.035));
}

.menu-category-head span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-category-head h3 {
  margin-top: 0.35rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid rgba(216, 180, 106, 0.12);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item strong,
.menu-item b {
  color: var(--ink);
}

.menu-item strong {
  display: block;
  font-size: 0.98rem;
}

.menu-item p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.menu-item b {
  align-self: start;
  padding-top: 0.1rem;
  font-size: 0.98rem;
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 0.85rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(216, 180, 106, 0.18);
  border-radius: 8px;
  background: var(--panel);
  color: inherit;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease, clip-path 700ms ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(216, 180, 106, 0.36);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.78);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: scale(1.025);
  border-color: rgba(216, 180, 106, 0.54);
  box-shadow: var(--shadow);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:last-child {
  grid-column: 1 / -1;
}

.gallery-item:last-child.reveal,
.gallery-item:last-child:hover,
.gallery-item:last-child:focus-visible {
  transform: none;
}

.reviews-section {
  display: block;
  padding: clamp(2rem, 5vw, 3.4rem) 0;
}

.reviews-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(216, 180, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 44, 69, 0.9), rgba(7, 25, 42, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(216, 180, 106, 0.16), transparent 20rem);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.review-stars {
  margin: 0 0 0.3rem;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.reviews-compact h2 {
  color: white;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.reviews-compact .button {
  flex: 0 0 auto;
}

.review-feature,
.review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 44, 69, 0.92), rgba(7, 25, 42, 0.97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.review-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.review-feature::after,
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.14) 50%, transparent 64% 100%);
  transform: translateX(-140%);
  transition: transform 760ms ease;
}

.review-feature:hover::after,
.review-card:hover::after {
  transform: translateX(140%);
}

.review-feature h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.review-feature p,
.review-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.review-feature .button {
  align-self: flex-start;
  margin-top: 1.4rem;
}

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

.review-card {
  min-height: 220px;
  padding: 1.2rem;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 180, 106, 0.58);
  box-shadow: var(--shadow);
}

.instagram-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 1px solid rgba(216, 180, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 11, 20, 0.96), rgba(10, 37, 60, 0.86)),
    url("assets/images/optimized/guadalupe-drink.webp?v=2") center / cover;
  box-shadow: var(--shadow);
  color: white;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.location-copy {
  align-self: center;
}

.location-copy p {
  margin: 1rem 0;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0 1rem;
}

.contact-detail {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.contact-detail span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-detail p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 106, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.map-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(2, 26, 41, 0.22);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 3.5rem);
  background: #020b14;
  border-top: 1px solid rgba(216, 180, 106, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand,
.footer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-info {
  justify-content: flex-end;
  text-align: right;
}

.site-footer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  padding: 3px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration-color: rgba(216, 180, 106, 0.72);
  text-underline-offset: 4px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 999px;
  background: rgba(216, 180, 106, 0.08);
  color: var(--gold);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 106, 0.78);
  background: rgba(216, 180, 106, 0.16);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(2, 11, 20, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

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

.lightbox-frame {
  width: min(1040px, 100%);
  margin: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox-frame {
  transform: translateY(0) scale(1);
}

.lightbox-frame img {
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  border: 1px solid rgba(216, 180, 106, 0.36);
  border-radius: 8px;
  background: #020b14;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-frame figcaption {
  margin-top: 0.9rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 180, 106, 0.36);
  border-radius: 999px;
  background: rgba(7, 25, 42, 0.92);
  color: var(--gold);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.2rem;
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: scale(1.06);
  border-color: rgba(216, 180, 106, 0.72);
  background: rgba(10, 37, 60, 0.98);
}

.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 180, 106, 0.18), transparent 32%),
    rgba(2, 11, 20, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.discount-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.discount-card {
  position: relative;
  width: min(430px, 100%);
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 44, 69, 0.98), rgba(2, 11, 20, 0.98)),
    url("assets/images/optimized/guadalupe-drink.webp?v=2") center / cover;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.52);
  color: var(--ink);
  text-align: center;
  transform: translateY(16px) scale(0.96);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discount-modal.is-open .discount-card {
  transform: translateY(0) scale(1);
}

.discount-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(255, 242, 191, 0.16), transparent 42%, rgba(121, 185, 200, 0.1));
  pointer-events: none;
}

.discount-card > * {
  position: relative;
  z-index: 1;
}

.discount-kicker {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discount-card h2 {
  margin-top: 0.55rem;
  color: white;
  font-size: clamp(2rem, 6vw, 3rem);
}

.discount-card p {
  margin: 0.9rem auto 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.discount-card strong {
  color: var(--gold);
}

.discount-code {
  margin: 1.2rem auto 1rem;
  padding: 0.8rem 1rem;
  border: 1px dashed rgba(216, 180, 106, 0.68);
  border-radius: 8px;
  background: rgba(2, 11, 20, 0.58);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(216, 180, 106, 0.34);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.72);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.discount-close:hover,
.discount-close:focus-visible {
  transform: scale(1.06);
  border-color: rgba(216, 180, 106, 0.72);
  background: rgba(10, 37, 60, 0.96);
}

.discount-dismiss {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item.reveal {
  clip-path: inset(14% 0 14% 0 round 8px);
}

.gallery-item.reveal.is-visible {
  clip-path: inset(0 round 8px);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes wave {
  from {
    transform: translateX(-2%) translateY(0);
  }

  to {
    transform: translateX(2%) translateY(10px);
  }
}

@keyframes heroPan {
  from {
    background-position: 50% 48%;
  }

  to {
    background-position: 54% 52%;
  }
}

@keyframes waterGlint {
  0%,
  18% {
    transform: translateX(0);
    opacity: 0;
  }

  44% {
    opacity: 0.8;
  }

  72%,
  100% {
    transform: translateX(450%);
    opacity: 0;
  }
}

@keyframes boatDrift {
  0% {
    transform: translateX(-12vw) translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateX(54vw) translateY(7px) rotate(1.2deg);
  }

  100% {
    transform: translateX(118vw) translateY(-2px) rotate(-0.6deg);
  }
}

@keyframes heroSheen {
  from {
    transform: translateX(-24%);
  }

  to {
    transform: translateX(18%);
  }
}

@keyframes reservePulse {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(2, 26, 41, 0.22);
  }

  50% {
    box-shadow: 0 18px 36px rgba(240, 178, 74, 0.36);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(2, 26, 41, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .nav-reserve {
    margin-top: 0.35rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.2rem;
    padding-bottom: 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.9rem;
  }

  .hero-content {
    width: min(760px, 100%);
    text-align: center;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .quick-strip-inner,
  .split,
  .section-heading,
  .video-story-inner,
  .private-booking-inner,
  .reviews-layout,
  .location {
    grid-template-columns: 1fr;
  }

  .quick-strip-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-strip p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }

  .hero-video-panel {
    justify-self: center;
    width: min(390px, 100%);
  }

  .hero-video-frame {
    max-height: 60svh;
  }

  .hero-video-kicker,
  .hero-video-caption {
    justify-self: center;
    text-align: center;
  }

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

  .video-story-inner {
    justify-items: start;
  }

  .video-frame {
    width: min(340px, 100%);
  }

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

  .reviews-compact {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .stack-main,
  .stack-float {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border: 0;
  }

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

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

  .menu-category-large {
    grid-row: span 1;
  }

  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .instagram-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.75rem 1rem;
  }

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

  .hero {
    min-height: auto;
    padding: 6.8rem 1rem 2.8rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 11, 20, 0.58), rgba(2, 11, 20, 0.9)),
      linear-gradient(90deg, rgba(2, 11, 20, 0.78), rgba(10, 37, 60, 0.44));
  }

  .floating-boat {
    width: 88px;
    height: 58px;
    bottom: 14px;
    animation-duration: 26s;
  }

  .floating-boat-hull {
    left: 12px;
    height: 15px;
  }

  .floating-boat-sail-main {
    left: 32px;
    border-width: 0 0 32px 25px;
  }

  .floating-boat-sail-small {
    left: 20px;
    border-width: 0 18px 25px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 12.5vw, 3.1rem);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.2vw, 3.45rem);
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .video-actions,
  .private-actions,
  .button,
  .video-actions .button,
  .private-actions .button,
  .instagram-band .button {
    width: 100%;
  }

  .video-story {
    padding: 3.7rem 1rem;
  }

  .video-frame {
    justify-self: center;
    width: min(300px, 92vw);
  }

  .hero-reserve {
    min-height: 68px;
  }

  .hero-menu-link {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-video-panel {
    width: min(320px, 92vw);
  }

  .hero-video-frame {
    max-height: 52svh;
  }

  .hero-video-caption {
    text-align: center;
    border-left: 0;
    border-top: 2px solid rgba(216, 180, 106, 0.75);
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .private-panel,
  .review-feature,
  .review-card,
  .instagram-band {
    padding: 1rem;
  }

  .lightbox {
    padding: 4.5rem 0.85rem 1.25rem;
  }

  .lightbox-frame img {
    max-height: 68vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    width: 46px;
    height: 46px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-info {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Video-first hero refresh */
.hero {
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(6.5rem, 9vh, 8rem) clamp(1rem, 4vw, 3.5rem) clamp(2.4rem, 5vh, 4rem);
  background: #020b14;
  color: white;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020b14;
}

.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 48%, rgba(216, 180, 106, 0.2), transparent 27rem),
    linear-gradient(90deg, rgba(2, 11, 20, 0.96) 0%, rgba(2, 11, 20, 0.86) 42%, rgba(2, 11, 20, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 11, 20, 0.32), rgba(2, 11, 20, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 510px) minmax(250px, 390px);
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: 100%;
  text-align: left;
}

.hero .eyebrow {
  margin-bottom: 1rem;
  color: #f0c96d;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(4.4rem, 9vw, 7rem);
  line-height: 0.88;
  white-space: normal;
}

.hero-subtitle {
  margin: 0.6rem 0 0;
  color: #f6d98e;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy {
  width: min(520px, 100%);
  margin: 1.2rem 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-meta {
  display: flex;
  justify-content: flex-start;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  padding: 0.62rem 0.86rem;
  border: 1px solid rgba(246, 217, 142, 0.35);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.48);
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2.15rem;
}

.hero-reserve {
  min-width: min(480px, 100%);
  min-height: 88px;
  padding: 1.3rem clamp(1.8rem, 4vw, 3.2rem);
  border-radius: 8px;
  font-size: clamp(1.24rem, 2.1vw, 1.58rem);
  letter-spacing: 0.07em;
}

.hero-reserve svg {
  width: 28px;
  height: 28px;
}

.hero-instagram {
  min-height: 54px;
  border-color: rgba(216, 180, 106, 0.5);
  background: rgba(2, 11, 20, 0.62);
  color: #f6d98e;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.hero-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.05rem;
  border: 1px solid rgba(216, 180, 106, 0.42);
  border-radius: 8px;
  background: rgba(2, 11, 20, 0.42);
  color: #fffaf0;
  text-decoration: none;
  font-weight: 900;
}

.hero-menu-link:hover,
.hero-menu-link:focus-visible {
  border-color: rgba(246, 217, 142, 0.78);
  color: #f6d98e;
  transform: translateY(-2px);
}

.hero-video-panel {
  justify-self: end;
  width: auto;
}

.hero-video-frame {
  position: relative;
  overflow: hidden;
  width: min(470px, 38vw);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(246, 217, 142, 0.54);
  border-radius: 14px;
  background: #020b14;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.62), 0 0 0 10px rgba(216, 180, 106, 0.06);
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 10px;
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 11, 20, 0.04), transparent 62%, rgba(2, 11, 20, 0.22));
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-instagram {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 217, 142, 0.58);
  border-radius: 999px;
  background: rgba(2, 11, 20, 0.72);
  color: #fffaf0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-video-instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-video-instagram:hover,
.hero-video-instagram:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 217, 142, 0.9);
  background: rgba(216, 180, 106, 0.2);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding: 6.6rem 1rem 2.2rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 11, 20, 0.46), rgba(2, 11, 20, 0.96)),
      linear-gradient(90deg, rgba(2, 11, 20, 0.78), rgba(2, 11, 20, 0.46));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.35rem;
  }

  .hero-content {
    max-width: 680px;
    text-align: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(3.5rem, 12vw, 5.4rem);
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }

  .hero-video-panel {
    justify-self: center;
    order: -1;
  }

  .hero-video-frame {
    width: min(390px, 82vw);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 6.1rem 1rem 2rem;
  }

  .hero-video-panel {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 18vw, 4.55rem);
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-reserve,
  .hero-menu-link,
  .hero-instagram {
    width: 100%;
  }
}

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