:root {
  --teal: #3bbfb5;
  --teal-dark: #257f79;
  --teal-deep: #071b1b;
  --teal-ink: #102c2c;
  --gold: #c8956c;
  --gold-light: #e4c09e;
  --paper: #f7f7f3;
  --white: #fff;
  --ink: #142120;
  --muted: #64706e;
  --line: rgba(20, 33, 32, .14);
  --radius: 18px;
  --display: "Raleway", sans-serif;
  --body: "Lato", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--teal-deep); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

::selection { background: var(--teal); color: var(--white); }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  background: var(--teal-deep);
  color: var(--white);
  transition: opacity .7s ease, visibility .7s ease;
  animation: loader-fallback .7s ease 2.4s forwards;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: min(440px, 76vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.18));
}
.loader-line { width: min(260px, 55vw); height: 1px; overflow: hidden; background: rgba(255,255,255,.15); }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--gold); transform-origin: left; animation: load 1.25s cubic-bezier(.16,1,.3,1) both; }

@keyframes load { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes loader-fallback { to { opacity: 0; visibility: hidden; pointer-events: none; } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 48px);
  color: var(--white);
  transition: background .4s ease, color .4s ease, height .4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(247,247,243,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  width: 126px;
  height: 36px;
  justify-self: start;
  flex: 0 0 auto;
}
.brand img {
  width: 126px;
  height: 36px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.desktop-nav a,
.header-actions button,
.site-footer a,
.site-footer button {
  border: 0;
  background: none;
  color: inherit;
  text-decoration: none;
  font: 500 11px/1 var(--display);
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
}

.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; }
.lang { opacity: .5; padding: 8px 4px; }
.lang.active { opacity: 1; }
.booking-link { padding: 12px 18px !important; border: 1px solid currentColor !important; border-radius: 999px !important; }
.menu-toggle { display: none; width: 44px; height: 44px; position: relative; }
.menu-toggle span { position: absolute; left: 10px; width: 24px; height: 1px; background: currentColor; transition: transform .3s ease, top .3s ease; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle.active span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle.active span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  gap: 48px;
  padding: 100px 24px 40px;
  background: var(--teal-deep);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; gap: 8px; }
.mobile-menu nav a { padding: 10px 0; color: inherit; text-decoration: none; font: 300 clamp(2.2rem, 11vw, 4rem)/1.1 var(--display); }

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(420px, .85fr) 1.15fr;
  background:
    radial-gradient(circle at 38% 30%, rgba(59,191,181,.17), transparent 30%),
    var(--teal-deep);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(28px, 6vw, 110px) 48px;
}

.hero-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--teal);
  font: 600 10px/1.3 var(--display);
  letter-spacing: .28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font: 300 clamp(3.35rem, 6.2vw, 7rem)/.96 var(--display);
  letter-spacing: -.055em;
}

.hero h1 .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero h1 .line > span { display: block; }

.hero-intro {
  max-width: 460px;
  margin: 30px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  line-height: 1.6;
}

.hero-ctas,
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font: 600 10px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}
.button:active { transform: scale(.98); }
.button-primary { border-color: var(--teal); background: var(--teal); color: var(--white); }
.button-primary:hover { border-color: var(--white); background: var(--white); color: var(--teal-deep); }
.button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.button-dark { background: var(--teal-deep); color: var(--white); }
.button-dark:hover { background: var(--teal); }
.button-light { background: var(--white); color: var(--teal-deep); }
.button-light:hover { background: var(--gold-light); }

.hero-meta {
  position: absolute;
  left: clamp(28px, 6vw, 110px);
  right: clamp(28px, 6vw, 110px);
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.46);
  font: 400 10px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-meta a { color: inherit; text-decoration: none; }

.hero-visual {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: #102827;
}

.hero-frame { position: absolute; margin: 0; overflow: hidden; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-frame-main { inset: 0 30% 0 0; }
.hero-frame-main::after,
.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,27,27,.48), transparent 35%);
  pointer-events: none;
}
.hero-frame-main img { object-position: 51% 42%; }
.hero-frame-top { top: 0; right: 0; width: 30%; height: 50%; border-left: 4px solid var(--teal-deep); border-bottom: 2px solid var(--teal-deep); }
.hero-frame-bottom { bottom: 0; right: 0; width: 30%; height: 50%; border-left: 4px solid var(--teal-deep); border-top: 2px solid var(--teal-deep); }
.hero-sun {
  position: absolute;
  right: calc(30% - 34px);
  top: 34%;
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 14px rgba(200,149,108,.13);
  mix-blend-mode: screen;
}

.section-pad { padding: clamp(90px, 11vw, 170px) clamp(22px, 6vw, 100px); }

.manifesto {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 7vw;
  align-items: start;
  background: var(--paper);
}
.manifesto .section-label { padding-top: 14px; }
.manifesto h2,
.section-heading h2,
.menu-feature h2,
.story h2,
.contact h2,
.booking-panel h2 {
  margin: 0;
  font: 300 clamp(2.8rem, 6.1vw, 6.8rem)/.98 var(--display);
  letter-spacing: -.055em;
}
.manifesto h2 { grid-column: 2; max-width: 980px; }
.manifesto > p:last-child { grid-column: 2; max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }

.sunset-live {
  --sun-progress: 0;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  overflow: hidden;
  background: var(--teal-deep);
  color: var(--white);
}
.sunset-live-visual {
  position: relative;
  min-height: clamp(390px, 54vw, 650px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 76%, rgba(200,149,108,.38), transparent 27%),
    linear-gradient(180deg, #071b1b 0%, #164240 56%, #c8956c 135%);
}
.sunset-live-sky { position: absolute; inset: 0; }
.sunset-live-horizon {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 21%;
  height: 1px;
  background: rgba(255,255,255,.42);
}
.sunset-live-horizon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 70px;
  background: linear-gradient(180deg, rgba(59,191,181,.22), transparent);
}
.sunset-live-sun {
  position: absolute;
  left: calc(27% + (var(--sun-progress) * .46%));
  top: calc(16% + (var(--sun-progress) * .61%));
  width: clamp(76px, 9vw, 132px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 18px rgba(228,192,158,.1), 0 0 70px rgba(228,192,158,.3);
  transform: translate(-50%, -50%);
  transition: left 1s cubic-bezier(.16,1,.3,1), top 1s cubic-bezier(.16,1,.3,1);
}
.sunset-live-place {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(255,255,255,.56);
  font: 500 9px/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.sunset-live-copy { max-width: 720px; }
.sunset-live-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.sunset-live-heading h2 {
  max-width: 520px;
  margin: 0;
  font: 300 clamp(2.9rem, 5.8vw, 6.2rem)/.94 var(--display);
  letter-spacing: -.04em;
}
.sunset-live-heading > time {
  color: var(--gold-light);
  font: 300 clamp(2.2rem, 4vw, 4.5rem)/1 var(--display);
  letter-spacing: -.03em;
  white-space: nowrap;
}
.sunset-live-message {
  min-height: 2.8em;
  max-width: 620px;
  margin: 25px 0 30px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}
.sunset-timeline { margin-bottom: 30px; }
.sunset-timeline-track {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,.18);
}
.sunset-timeline-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--sun-progress) * 1%);
  background: var(--gold-light);
  transition: width 1s cubic-bezier(.16,1,.3,1);
}
.sunset-timeline-track i {
  position: absolute;
  left: calc(var(--sun-progress) * 1%);
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(228,192,158,.13);
  transform: translate(-50%, -50%);
  transition: left 1s cubic-bezier(.16,1,.3,1);
}
.sunset-timeline-labels {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 15px;
}
.sunset-timeline-labels span { display: grid; gap: 6px; }
.sunset-timeline-labels span:last-child { text-align: right; }
.sunset-timeline-labels b {
  color: rgba(255,255,255,.46);
  font: 500 9px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.sunset-timeline-labels time { color: var(--white); font: 300 1.2rem/1 var(--display); }
.sunset-story-cta {
  position: relative;
  width: max-content;
  max-width: 100%;
}
.sunset-story-button { gap: 10px; text-decoration: none; }
.sunset-story-button svg { width: 19px; height: 19px; flex: 0 0 auto; }
.sunset-story-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 2;
  width: max-content;
  max-width: min(330px, calc(100vw - 36px));
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-deep);
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .25s ease, transform .25s ease;
}
.sunset-story-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 6px solid transparent;
  border-top-color: var(--white);
  transform: translateX(-50%);
}
.sunset-story-tooltip.show { opacity: 1; transform: translate(-50%, 0); }
.sunset-live-note {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
  line-height: 1.4;
}
.sunset-live.phase-golden .sunset-live-message { color: var(--gold-light); }
.sunset-live.phase-night .sunset-live-sun { opacity: .32; }

.experience { background: #eef8f6; }
.section-heading { max-width: 1050px; margin-bottom: clamp(48px, 7vw, 90px); }
.section-heading > p:last-child { max-width: 640px; color: var(--muted); line-height: 1.7; }

.moment-stack { position: relative; }
.moment-card {
  position: sticky;
  top: 84px;
  min-height: calc(100dvh - 110px);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-deep);
  color: var(--white);
  transform-origin: top center;
  box-shadow: 0 -18px 50px rgba(7,27,27,.09);
}
.moment-card + .moment-card { margin-top: 18vh; }
.moment-card:nth-child(2) { background: #173b39; }
.moment-card:nth-child(3) { background: #b7825c; }
.moment-card:nth-child(4) { background: #13292f; }
.moment-card img { height: 100%; min-height: calc(100dvh - 110px); object-fit: cover; }
.moment-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(32px, 5vw, 78px); }
.moment-copy > span { color: var(--gold-light); font: 600 11px/1 var(--display); letter-spacing: .24em; }
.moment-copy h3 { margin: 18px 0 14px; font: 300 clamp(2.5rem, 4.5vw, 5.4rem)/1 var(--display); letter-spacing: -.05em; }
.moment-copy p { max-width: 430px; margin: 0; color: rgba(255,255,255,.7); line-height: 1.7; }

.menu-feature {
  min-height: 86dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--gold-light);
}
.menu-feature-media { overflow: hidden; }
.menu-feature-media img { height: 100%; object-fit: cover; }
.menu-feature-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(50px, 7vw, 120px); }
.menu-feature h2 { max-width: 760px; font-size: clamp(2.7rem, 5vw, 5.8rem); }
.menu-feature-copy > p:not(.section-label) { max-width: 540px; margin: 26px 0 34px; color: rgba(20,33,32,.66); line-height: 1.75; }

.gallery { background: var(--paper); }
.gallery-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.gallery-heading a { color: var(--teal-dark); font: 600 10px/1 var(--display); letter-spacing: .18em; text-transform: uppercase; text-underline-offset: 6px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 7vw;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: #dfe8e6;
  cursor: zoom-in;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 6; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 5; }
.gallery-item:nth-child(4) { grid-column: 6 / span 3; grid-row: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 5; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 6; }
.gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; grid-row: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.02); }
.gallery-item::after {
  content: "Instagram";
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7,27,27,.72);
  color: var(--white);
  font: 600 8px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.tonight {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--teal-deep);
  color: var(--white);
}
.tonight-media { position: relative; min-height: 82vh; overflow: hidden; }
.tonight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(7,27,27,.52));
  pointer-events: none;
}
.tonight-media img { width: 100%; height: 100%; object-fit: cover; }
.tonight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(64px, 7vw, 120px);
}
.tonight-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.62);
  font: 600 9px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tonight-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(59,191,181,.14);
  animation: tonight-pulse 2.4s ease-in-out infinite;
}
@keyframes tonight-pulse {
  50% { box-shadow: 0 0 0 10px rgba(59,191,181,0); }
}
.tonight h2 {
  max-width: 650px;
  margin: 0;
  font: 300 clamp(3rem, 5.8vw, 6rem)/.98 var(--display);
  letter-spacing: -.04em;
  text-wrap: balance;
}
.tonight-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.tonight-facts { display: flex; gap: clamp(34px, 5vw, 72px); margin-bottom: 38px; }
.tonight-facts span { display: grid; gap: 8px; }
.tonight-facts small { color: rgba(255,255,255,.45); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.tonight-facts b { color: var(--gold-light); font: 400 1.35rem/1 var(--display); }
.tonight-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.nights { background: var(--teal-deep); color: var(--white); }
.nights .section-heading > p:last-child { color: rgba(255,255,255,.54); }
.events-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 14px; }
.event-card { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); color: var(--white); text-decoration: none; }
.event-card:not(:first-child) { min-height: 460px; margin-top: 80px; }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.event-card:hover img { transform: scale(1.04); }
.event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78)); }
.event-info { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; }
.event-info span { font: 600 9px/1 var(--display); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); }
.event-info h3 { margin: 10px 0 0; font: 400 clamp(1.5rem, 2.5vw, 2.7rem)/1.1 var(--display); }

.story {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 9vw, 150px);
  align-items: center;
  background: var(--paper);
}
.story-copy p:last-child { max-width: 580px; margin: 30px 0 0; color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.story-image { overflow: hidden; border-radius: var(--radius); }
.story-image img { aspect-ratio: 4 / 5; object-fit: cover; }

.reviews { background: #e3f3f0; }
.reviews-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; margin-bottom: clamp(48px, 7vw, 90px); }
.reviews-heading .section-heading { margin-bottom: 0; }
.google-reviews-link {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid rgba(20,33,32,.22);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font: 600 10px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.google-reviews-link:hover { border-color: var(--teal); background: rgba(255,255,255,.7); transform: translateY(-2px); }
.review-platform-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.review-platform-star { fill: var(--gold); stroke: none; }
.external-link-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease;
}
.google-reviews-link:hover .external-link-icon { transform: translate(2px, -2px); }
.review-track { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
blockquote { margin: 0; padding: clamp(28px, 4vw, 55px); border-radius: var(--radius); background: rgba(255,255,255,.66); }
blockquote p { margin: 0 0 28px; font: 300 clamp(1.35rem, 2.2vw, 2.2rem)/1.35 var(--display); letter-spacing: -.025em; }
blockquote footer { color: var(--teal-dark); font: 600 9px/1 var(--display); letter-spacing: .16em; text-transform: uppercase; }

.contact {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  background: var(--teal-deep);
  color: var(--white);
}
.contact-image { position: relative; min-height: 100dvh; overflow: hidden; }
.contact-image img { height: 100%; object-fit: cover; }
.contact-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(50px, 7vw, 115px); }
.contact-logo { width: min(260px, 65%); margin-bottom: 45px; filter: drop-shadow(0 8px 30px rgba(0,0,0,.25)); }
.contact-copy > p { max-width: 520px; margin: 26px 0 34px; color: rgba(255,255,255,.62); line-height: 1.7; }
.contact address { margin-top: 50px; color: rgba(255,255,255,.56); font-style: normal; line-height: 1.8; }
.arrival-card {
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(180px,.72fr);
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow: hidden;
}
.arrival-address { display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 20px 22px; }
.arrival-address > span { color: var(--gold); font: 600 8px/1 var(--display); letter-spacing: .17em; text-transform: uppercase; }
.arrival-address strong { color: var(--white); font: 500 1rem/1.25 var(--display); }
.arrival-address small { color: rgba(255,255,255,.55); font-size: .72rem; }
.arrival-action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  min-height: 82px;
  padding: 18px 20px;
  border: 0;
  background: var(--teal);
  color: var(--teal-deep);
  cursor: pointer;
  text-align: left;
  transition: background .25s ease;
}
.arrival-action:hover { background: #6dd8cf; }
.arrival-action span { font: 650 .78rem/1.2 var(--display); letter-spacing: .025em; }
.arrival-action small { color: inherit; opacity: .68; font-size: .66rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.contact-links a,
.contact-links button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--teal);
  font: 600 9px/1 var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  cursor: pointer;
}

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 80px);
  background: #041313;
  color: rgba(255,255,255,.45);
  font: 400 9px/1.5 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-footer a { margin-left: auto; }

.booking-modal { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.booking-modal.open { visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(1,10,10,.72); opacity: 0; transition: opacity .35s ease; }
.booking-modal.open .modal-backdrop { opacity: 1; }
.booking-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(520px, 100%);
  padding: clamp(70px, 8vw, 100px) clamp(26px, 5vw, 60px) 48px;
  background: var(--paper);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.booking-modal.open .booking-panel { transform: translateX(0); }
.modal-close { position: absolute; right: 20px; top: 20px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--white); font-size: 26px; cursor: pointer; }
.booking-panel h2 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.booking-panel > p:not(.section-label) { color: var(--muted); line-height: 1.7; }
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.booking-field { min-width: 0; }
.booking-field-wide { grid-column: 1 / -1; }
.booking-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font: 600 10px/1.2 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.booking-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: 400 16px/1.2 var(--body);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.booking-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(59,191,181,.14);
}
.booking-whatsapp {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  margin-top: 4px;
  padding: 16px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, transform .25s ease;
}
.booking-whatsapp:hover { background: var(--teal-dark); transform: translateY(-2px); }
.booking-whatsapp span { font: 600 .9rem/1.2 var(--display); }
.booking-whatsapp small { max-width: 120px; opacity: .72; font-size: .7rem; line-height: 1.3; text-align: right; }
.booking-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: -4px 0 0;
  color: var(--teal-dark);
  font-size: .78rem;
}
.booking-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.booking-divider::before,
.booking-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.booking-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  transition: transform .3s ease, border-color .3s ease;
}
.booking-option:hover { transform: translateX(5px); border-color: var(--teal); }

.directions-modal { position: fixed; inset: 0; z-index: 320; visibility: hidden; }
.directions-modal.open { visibility: visible; }
.directions-modal.open .modal-backdrop { opacity: 1; }
.directions-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: clamp(52px, 7vw, 68px) clamp(22px, 5vw, 42px) 34px;
  border-radius: 14px;
  background: var(--paper);
  overflow-y: auto;
  opacity: 0;
  transform: translate(-50%, -46%) scale(.98);
  transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1);
}
.directions-modal.open .directions-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.directions-panel h2 { font-size: clamp(2.1rem, 7vw, 3.7rem); }
.directions-panel > p:not(.section-label) { margin-top: 14px; color: var(--muted); line-height: 1.65; }
.directions-address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
  padding: 15px 17px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.58);
}
.directions-address strong { color: var(--teal-dark); font: 600 .82rem/1.2 var(--display); }
.directions-address span { color: var(--muted); font-size: .74rem; line-height: 1.4; }
.directions-options { display: grid; gap: 9px; margin-top: 26px; }
.directions-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}
.directions-options a:first-child { background: var(--teal); color: var(--white); border-color: var(--teal); }
.directions-options a:hover { border-color: var(--teal); transform: translateX(4px); }
.directions-options span { font: 600 .85rem/1.2 var(--display); }
.directions-options small { color: inherit; opacity: .62; font-size: .7rem; text-align: right; }
.booking-option span { font-size: 1.15rem; }
.booking-option small { opacity: .65; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  background: rgba(1,10,10,.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(82vw, 1100px); max-height: 86dvh; width: auto; height: auto; justify-self: center; border-radius: 10px; }
.lightbox button { border: 0; background: transparent; color: var(--white); font-size: 26px; cursor: pointer; }
.lightbox-close { position: absolute; right: 20px; top: 18px; width: 48px; height: 48px; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .booking-link { display: none; }
  .hero { grid-template-columns: .88fr 1.12fr; }
  .hero-frame-main { right: 0; }
  .hero-frame-top, .hero-frame-bottom, .hero-sun { display: none; }
  .events-grid { grid-template-columns: 1.2fr .8fr; }
  .event-card:nth-child(3) { grid-column: 2; }
  .review-track { grid-template-columns: 1fr; }
  blockquote { max-width: 760px; }
}

@media (max-width: 767px) {
  .site-header { height: 66px; padding: 0 16px; }
  .brand,
  .brand img { width: 112px; height: 32px; }
  .header-actions { gap: 6px; }
  .lang-switch { margin-right: 2px; }
  .hero { min-height: 100vh; min-height: 100svh; display: block; position: relative; }
  .hero-visual { position: absolute; inset: 0; min-height: 100vh; min-height: 100svh; }
  .hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,27,27,.15), rgba(7,27,27,.86) 76%, var(--teal-deep)); }
  .hero-frame-main { inset: 0; }
  .hero-frame-main::after { display: none; }
  .hero-frame-main img { object-position: 48% 35%; }
  .hero-copy { min-height: 100vh; min-height: 100svh; justify-content: flex-end; padding: 110px 20px 34px; }
  .hero-kicker { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5.2rem); }
  .hero-intro { margin: 20px 0 24px; font-size: .98rem; }
  .hero-ctas { gap: 9px; }
  .hero-ctas .button { flex: 1; padding: 0 14px; letter-spacing: .11em; }
  .hero-meta { position: static; margin-top: 30px; font-size: 8px; }
  .section-pad { padding: 86px 18px; }
  .manifesto { display: block; }
  .manifesto h2 { margin-top: 34px; }
  .manifesto > p:last-child { margin-top: 22px; }
  .sunset-live { display: flex; flex-direction: column; align-items: stretch; gap: 46px; }
  .sunset-live-visual { min-height: 72vw; }
  .sunset-live-heading { display: block; }
  .sunset-live-heading > time { display: block; margin-top: 18px; }
  .sunset-live-message { margin-bottom: 26px; }
  .sunset-story-cta,
  .sunset-live-copy .button { width: 100%; }
  .manifesto h2,
  .section-heading h2,
  .menu-feature h2,
  .story h2,
  .contact h2 { font-size: clamp(2.7rem, 13vw, 4.6rem); }
  .moment-stack { display: grid; gap: 18px; }
  .moment-card {
    position: relative;
    top: auto;
    min-height: 0;
    display: flex;
    flex-direction: column-reverse;
    transform: none !important;
    opacity: 1 !important;
  }
  .moment-card + .moment-card { margin-top: 0; }
  .moment-card img { min-height: 0; height: auto; aspect-ratio: 4 / 5; }
  .moment-copy { min-height: 0; padding: 28px 24px 34px; }
  .moment-copy h3 { font-size: 2.7rem; }
  .menu-feature { display: flex; flex-direction: column; }
  .menu-feature-media img { height: 72vh; height: 72svh; }
  .menu-feature-copy { padding: 72px 22px 80px; }
  .gallery-heading { display: block; }
  .gallery-heading a { display: inline-block; margin-top: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 42vw; gap: 7px; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: span 2; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-item::after { display: none; }
  .tonight { display: flex; flex-direction: column; min-height: 0; }
  .tonight-media { min-height: 64vh; min-height: 64svh; }
  .tonight-media::after { background: linear-gradient(180deg, transparent 55%, var(--teal-deep)); }
  .tonight-copy { padding: 64px 22px 86px; }
  .tonight h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .tonight-actions { width: 100%; }
  .tonight-actions .button { flex: 1; padding: 0 14px; letter-spacing: .1em; }
  .events-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 -18px; padding: 0 18px 14px; }
  .event-card,
  .event-card:not(:first-child) { flex: 0 0 82vw; min-height: 520px; margin: 0; scroll-snap-align: start; }
  .story { display: flex; flex-direction: column; align-items: stretch; }
  .story-image { order: -1; }
  .reviews-heading { display: block; margin-bottom: 42px; }
  .reviews-heading .section-heading { margin-bottom: 26px; }
  .contact { display: block; }
  .contact-image { min-height: 72vh; min-height: 72svh; }
  .contact-copy { padding: 72px 22px; }
  .contact-logo { margin-bottom: 36px; }
  .arrival-card { grid-template-columns: 1fr; }
  .arrival-action { min-height: 74px; }
  .contact address { margin-top: 28px; }
  .site-footer { align-items: flex-start; flex-wrap: wrap; }
  .site-footer a { margin-left: 0; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-field-wide,
  .booking-whatsapp,
  .booking-status { grid-column: 1; }
  .booking-whatsapp small { display: none; }
  .lightbox { grid-template-columns: 46px 1fr 46px; }
  .lightbox img { max-width: 76vw; }
}

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