:root {
  --night: #17122c;
  --night-soft: #241a3b;
  --navy: #101d50;
  --navy-2: #17296c;
  --cream: #fff4dc;
  --paper: #fbf6ef;
  --paper-2: #f4ecdf;
  --pink: #ff9dcc;
  --pink-strong: #ff79ba;
  --lavender: #bba5ff;
  --lavender-soft: #e6dcff;
  --yellow: #ffe27a;
  --green: #b8f0bf;
  --ink: #14204e;
  --muted: #625d70;
  --white: #fff;
  --display: "Fredoka", "Avenir Next Rounded", "Arial Rounded MT Bold", sans-serif;
  --body: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --shadow-sm: 0 12px 34px rgba(22, 15, 49, 0.1);
  --shadow-lg: 0 30px 90px rgba(13, 8, 31, 0.3);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --page: min(1280px, calc(100% - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

address {
  font-style: normal;
}

::selection {
  background: var(--pink);
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--pink-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--cream);
  color: var(--night);
  font-weight: 800;
  padding: 0.7rem 1rem;
  transition: transform 0.2s ease;
}

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

.status-bar {
  position: relative;
  z-index: 102;
  background: #0f0a21;
  color: rgba(255, 244, 220, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-bar-inner {
  width: var(--page);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.status-bar p {
  margin: 0;
}

.status-bar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.status-bar a:hover {
  color: var(--cream);
}

.live-status,
.visit-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(184, 240, 191, 0.12);
}

[data-open-status].closed .status-dot {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 157, 204, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(23, 18, 44, 0.88);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 244, 220, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(15, 10, 33, 0.94);
  box-shadow: 0 12px 36px rgba(8, 5, 20, 0.24);
}

.site-nav {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: inherit;
  font-family: var(--display);
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 244, 220, 0.7);
  border-radius: 50%;
  background: var(--cream);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-menu > a:not(.button) {
  position: relative;
  color: rgba(255, 244, 220, 0.78);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--pink);
  transition: transform 0.25s var(--ease);
}

.nav-menu > a:not(.button):hover,
.nav-menu > a:not(.button).active {
  color: var(--cream);
}

.nav-menu > a:not(.button):hover::after,
.nav-menu > a:not(.button).active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 244, 220, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

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

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  min-height: 44px;
  padding: 0.68rem 1.15rem;
  font-size: 0.88rem;
}

.button-pink {
  background: var(--pink);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(255, 121, 186, 0.22);
}

.button-pink:hover {
  background: #ffb1d5;
  box-shadow: 0 16px 38px rgba(255, 121, 186, 0.32);
}

.button-cream {
  background: var(--cream);
  color: var(--night);
}

.button-cream:hover {
  background: var(--pink);
}

.button-navy {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(16, 29, 80, 0.18);
}

.button-navy:hover {
  background: var(--navy-2);
}

.button-outline-light {
  border-color: rgba(255, 244, 220, 0.35);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline-light:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--night);
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.text-link span {
  transition: transform 0.2s var(--ease);
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link-light {
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 15%, rgba(187, 165, 255, 0.22), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(255, 157, 204, 0.16), transparent 27%),
    linear-gradient(135deg, #17122c 0%, #211638 55%, #15102a 100%);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 14% 22%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 39% 12%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 55% 68%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 8% 75%, white 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 45%, white 0 1px, transparent 1.5px);
  background-size: 240px 240px, 320px 320px, 280px 280px, 360px 360px, 300px 300px;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 244, 220, 0.1);
  border-radius: 50%;
}

.orbit-one {
  width: 620px;
  height: 620px;
  top: 8%;
  right: -250px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  bottom: -180px;
  left: 20%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: var(--page);
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 7rem) 0 5.6rem;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--pink);
}

.hero h1,
.section h2,
.visit-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(4rem, 7.2vw, 7.7rem);
  line-height: 0.86;
}

.hero h1 span {
  display: inline-block;
  margin-top: 0.22em;
  color: var(--pink);
  font-size: 0.48em;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero-lead {
  max-width: 600px;
  margin: 2rem 0 0;
  color: rgba(255, 244, 220, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

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

.hero-proof {
  margin-top: 2.3rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  border-top: 1px solid rgba(255, 244, 220, 0.14);
  color: rgba(255, 244, 220, 0.66);
  font-size: 0.88rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-proof span::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--pink);
}

.hero-proof b {
  color: var(--cream);
}

.hero-photos {
  position: relative;
  height: clamp(500px, 49vw, 630px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  grid-template-rows: minmax(0, 1.08fr) minmax(0, 0.72fr);
  gap: 1rem;
  transform: rotate(1.3deg);
}

.hero-photos::before {
  position: absolute;
  z-index: -1;
  width: 120px;
  height: 120px;
  top: -28px;
  left: 38%;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  filter: blur(54px);
  opacity: 0.45;
}

.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 244, 220, 0.18);
  border-radius: var(--radius-md);
  background: #2d2242;
  box-shadow: var(--shadow-lg);
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.45s var(--ease), border-color 0.25s ease;
}

.hero-photo:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--cream);
}

.hero-photo::after,
.drink-photo::after,
.passport-photo::after,
.insta-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(11, 7, 25, 0.7), transparent 40%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.hero-photo:hover img {
  transform: scale(1.045);
}

.hero-photo > span,
.insta-tile > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.2;
}

.hero-photo-main {
  grid-row: 1 / span 2;
}

.hero-photo-main img {
  object-position: 48% 50%;
}

.hero-photo-tall img {
  object-position: 50% 60%;
}

.hero-photo-small img {
  object-position: center;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
  color: rgba(255, 244, 220, 0.6);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  font-style: normal;
  animation: nudge-down 1.8s ease-in-out infinite;
}

@keyframes nudge-down {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 244, 220, 0.12);
  border-bottom: 1px solid rgba(255, 244, 220, 0.12);
  background: var(--pink);
  color: var(--navy);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  padding: 1.05rem 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(5.8rem, 9vw, 9rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.8rem, 5vw, 4.8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 3rem;
}

.section h2,
.visit-section h2 {
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.drink-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 78, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 40px rgba(23, 18, 44, 0.06);
  transition: transform 0.38s var(--ease), box-shadow 0.38s ease;
}

.drink-card:nth-child(even) {
  margin-top: 2rem;
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 56px rgba(23, 18, 44, 0.12);
}

.drink-photo {
  position: relative;
  height: clamp(320px, 31vw, 430px);
  display: block;
  overflow: hidden;
}

.drink-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.drink-card:hover img {
  transform: scale(1.04);
}

.drink-card:nth-child(1) .drink-photo img {
  object-position: 50% 56%;
}

.drink-card:nth-child(2) .drink-photo img {
  object-position: 50% 58%;
}

.drink-card:nth-child(4) .drink-photo img {
  object-position: 50% 36%;
}

.drink-copy {
  padding: 1.5rem 1.4rem 1.7rem;
}

.drink-tag {
  margin: 0 0 0.5rem;
  color: #7b4bb9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drink-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.04;
}

.drink-copy p:last-child {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 5% 15%, rgba(187, 165, 255, 0.18), transparent 24%),
    radial-gradient(circle at 92% 88%, rgba(255, 157, 204, 0.15), transparent 28%),
    var(--night);
  color: var(--cream);
}

.menu-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.menu-heading {
  position: sticky;
  top: 120px;
}

.menu-heading h2 {
  color: var(--cream);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
}

.menu-heading > p:not(.eyebrow) {
  max-width: 510px;
  margin: 1.6rem 0 0;
  color: rgba(255, 244, 220, 0.7);
}

.menu-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.menu-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.menu-tabs {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  border-bottom: 1px solid rgba(20, 32, 78, 0.1);
  scrollbar-width: thin;
}

.menu-tabs button {
  min-height: 46px;
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b6574;
  font-family: var(--display);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-tabs button:hover {
  background: rgba(187, 165, 255, 0.2);
  color: var(--navy);
}

.menu-tabs button[aria-selected="true"] {
  background: var(--pink);
  color: var(--navy);
}

.menu-panel {
  padding: 0 1.7rem;
}

.js .menu-panel:not(.active) {
  display: none;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  min-height: 84px;
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(20, 32, 78, 0.16);
}

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

.menu-list li > span {
  min-width: 0;
}

.menu-list b,
.menu-list small {
  display: block;
}

.menu-list b {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.2;
}

.menu-list small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.4;
}

.menu-list i {
  flex: 0 0 auto;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--navy);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.customise {
  margin: 0.5rem 1rem 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: var(--lavender-soft);
}

.customise p {
  margin: 0 0 0.8rem;
  color: var(--navy);
}

.customise > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.customise span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(20, 32, 78, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
}

.allergen-note {
  margin: 0;
  padding: 0.7rem 1.7rem 1.5rem;
  color: #6e6673;
  font-size: 0.76rem;
  line-height: 1.5;
}

.passport-section {
  width: 100%;
  max-width: none;
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  background: linear-gradient(180deg, var(--paper) 0%, #f2e9ff 100%);
}

.passport-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(2.4rem, 6vw, 6rem);
  border-radius: 52px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.6), transparent 20%),
    var(--pink);
  box-shadow: 0 28px 80px rgba(91, 54, 131, 0.16);
}

.passport-card::before {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  bottom: -340px;
  content: "";
  border: 1px solid rgba(16, 29, 80, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(16, 29, 80, 0.03), 0 0 0 110px rgba(16, 29, 80, 0.025);
}

.passport-copy {
  position: relative;
  z-index: 1;
}

.passport-copy h2 {
  font-size: clamp(3.1rem, 5.8vw, 5.8rem);
}

.passport-copy h2 span {
  color: var(--cream);
}

.passport-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: rgba(20, 32, 78, 0.76);
  font-size: 1.04rem;
}

.passport-stamps {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.passport-stamps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(16, 29, 80, 0.28);
  border-radius: 50%;
  background: rgba(255, 244, 220, 0.38);
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
}

.passport-stamps strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.passport-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.passport-wallets {
  margin-top: 1.35rem;
}

.passport-wallets > span {
  display: block;
  margin-bottom: 0.62rem;
  color: rgba(20, 32, 78, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.passport-wallet-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.passport-wallet-badges a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 6px;
  max-width: 100%;
}

.passport-wallet-badges img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
}

@media (max-width: 360px) {
  .passport-wallet-badges img {
    height: auto;
    max-height: 48px;
  }
}

.passport-photo {
  position: relative;
  z-index: 1;
  min-height: 480px;
  overflow: hidden;
  border: 3px solid rgba(255, 244, 220, 0.7);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(56, 27, 78, 0.24);
  color: var(--cream);
  text-decoration: none;
  transform: rotate(2.2deg);
  transition: transform 0.4s var(--ease);
}

.passport-photo:hover {
  transform: rotate(0) translateY(-7px);
}

.passport-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  transition: transform 0.6s var(--ease);
}

.passport-photo:hover img {
  transform: scale(1.04);
}

.passport-photo span {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 700;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: clamp(3.75rem, 5.5vw, 6rem);
}

.story-photo {
  position: relative;
}

.story-photo::before {
  position: absolute;
  z-index: -1;
  inset: -18px 24px 24px -18px;
  content: "";
  border: 1px solid rgba(20, 32, 78, 0.13);
  border-radius: 36px;
  background: var(--lavender-soft);
  transform: rotate(-2deg);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.story-photo p {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 244, 220, 0.92);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
}

.story-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.story-lead {
  max-width: 670px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.story-points {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.story-points > div {
  padding: 1.2rem;
  border: 1px solid rgba(20, 32, 78, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.story-points span {
  color: #8b68c7;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
}

.story-points h3 {
  margin: 0.45rem 0 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.15;
}

.story-points p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding-block: clamp(4.5rem, 6vw, 6.5rem);
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 83% 25%, rgba(255, 157, 204, 0.16), transparent 22%),
    var(--night);
  color: var(--cream);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  grid-template-areas:
    "label title"
    "link title";
  align-items: start;
  column-gap: clamp(3rem, 8vw, 8rem);
  row-gap: 1rem;
}

.reviews-heading .eyebrow {
  grid-area: label;
  margin-top: 0.55rem;
}

.reviews-heading h2 {
  grid-area: title;
  max-width: 920px;
  color: var(--cream);
  font-size: clamp(3rem, 5.2vw, 5.25rem);
  line-height: 0.98;
}

.reviews-heading .text-link {
  grid-area: link;
  align-self: start;
  justify-self: start;
}

.reviews-heading h2 span {
  color: var(--pink);
}

.review-grid {
  margin-top: clamp(2.5rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  margin: 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 244, 220, 0.14);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
}

.review-card-pink {
  background: var(--pink);
  color: var(--navy);
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card-pink .review-stars {
  color: var(--navy);
}

.review-card > p {
  max-width: 690px;
  margin: 1.2rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.28;
}

.review-card footer {
  margin-top: 1.6rem;
  color: rgba(255, 244, 220, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card-pink footer {
  color: rgba(16, 29, 80, 0.62);
}

.instagram-heading > div:last-child {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 21vw, 290px);
  gap: 0.8rem;
}

.insta-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--night-soft);
  color: var(--cream);
  text-decoration: none;
}

.insta-tile-tall {
  grid-row: span 2;
}

.insta-tile-wide {
  grid-column: span 2;
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s ease;
}

.insta-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.07);
}

.insta-tile:nth-child(1) img {
  object-position: center;
}

.insta-tile:nth-child(5) img {
  object-position: 50% 58%;
}

.visit-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) max(32px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 8% 84%, rgba(187, 165, 255, 0.19), transparent 26%),
    linear-gradient(145deg, #1c1532, #100b23);
  color: var(--cream);
}

.visit-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -300px;
  right: 9%;
  border-radius: 50%;
  border: 1px solid rgba(255, 244, 220, 0.1);
  box-shadow: 0 0 0 70px rgba(255, 157, 204, 0.03), 0 0 0 140px rgba(187, 165, 255, 0.025);
}

.visit-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.68fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.visit-heading h2 {
  color: var(--cream);
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.visit-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: rgba(255, 244, 220, 0.7);
  font-size: 1.05rem;
}

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

.visit-card {
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid rgba(255, 244, 220, 0.15);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visit-status {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
}

.visit-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.8rem;
}

.visit-card address {
  margin-top: 0.7rem;
  color: rgba(255, 244, 220, 0.68);
}

.hours {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}

.hours caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hours tr {
  border-top: 1px solid rgba(255, 244, 220, 0.12);
}

.hours tr.today {
  color: var(--pink);
}

.hours th,
.hours td {
  padding: 0.85rem 0;
  font-size: 0.88rem;
}

.hours th {
  font-weight: 700;
  text-align: left;
}

.hours td {
  text-align: right;
}

.visit-note {
  margin: 0.8rem 0 0;
  color: rgba(255, 244, 220, 0.45);
  font-size: 0.72rem;
}

.site-footer {
  padding: 4.5rem max(32px, calc((100vw - 1280px) / 2)) 2rem;
  background: #0d081d;
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(220px, 0.7fr) minmax(480px, 1.2fr);
  align-items: start;
  gap: 3rem;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 244, 220, 0.58);
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-links b {
  margin-bottom: 0.25rem;
  color: var(--pink);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 244, 220, 0.64);
  font-size: 0.83rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 244, 220, 0.1);
  color: rgba(255, 244, 220, 0.43);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s var(--ease);
}

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

@media (max-width: 1120px) {
  :root {
    --page: min(1280px, calc(100% - 44px));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.6vw, 6.4rem);
  }

  .drink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drink-card:nth-child(even) {
    margin-top: 0;
  }

  .drink-photo {
    height: clamp(380px, 55vw, 550px);
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .story-points > div {
    display: grid;
    grid-template-columns: 28px minmax(130px, 0.55fr) 1fr;
    align-items: center;
    gap: 0.7rem;
  }

  .story-points h3,
  .story-points p {
    margin: 0;
  }

  .footer-main {
    grid-template-columns: 0.4fr 0.6fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .status-instagram {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    z-index: 120;
    top: 92px;
    right: 16px;
    left: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    border: 1px solid rgba(255, 244, 220, 0.13);
    border-radius: 26px;
    background: rgba(17, 11, 37, 0.98);
    box-shadow: 0 28px 80px rgba(4, 2, 12, 0.45);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s var(--ease);
  }

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

  .nav-menu > a:not(.button) {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 14px;
  }

  .nav-menu > a:not(.button)::after {
    display: none;
  }

  .nav-menu > a:not(.button):hover {
    background: rgba(255, 244, 220, 0.07);
  }

  .nav-menu .button {
    margin-top: 0.5rem;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

  .hero-photos {
    height: min(650px, 78vw);
    transform: none;
  }

  .hero-scroll {
    display: none;
  }

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

  .menu-heading {
    position: static;
  }

  .passport-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 2.5rem;
  }

  .passport-photo {
    min-height: 430px;
  }

  .story-section {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: 3rem;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "link";
    gap: 1rem;
  }

  .reviews-heading .eyebrow {
    margin-top: 0;
  }

  .visit-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 3rem;
  }

  .instagram-grid {
    grid-auto-rows: 220px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 1280px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .status-bar-inner {
    min-height: 36px;
    justify-content: center;
  }

  .status-bar-inner > a:not(.status-instagram) {
    display: none;
  }

  .site-nav {
    min-height: 68px;
  }

  .brand {
    font-size: 1.24rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    top: 80px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 3rem 0 4rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 17vw, 5.8rem);
  }

  .hero h1 span {
    font-size: 0.43em;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-actions .button {
    padding-inline: 0.9rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-photos {
    height: min(520px, 124vw);
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: 0.65rem;
  }

  .hero-photo {
    border-radius: 22px;
  }

  .hero-photo > span {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    font-size: 0.76rem;
  }

  .marquee-track {
    animation-duration: 24s;
  }

  .section {
    padding: 5.4rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .section h2,
  .visit-section h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .drink-grid {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .drink-grid::-webkit-scrollbar {
    display: none;
  }

  .drink-card {
    min-width: min(82vw, 360px);
    scroll-snap-align: start;
  }

  .drink-photo {
    height: min(104vw, 460px);
  }

  .menu-section,
  .passport-section,
  .reviews-section {
    padding-inline: 16px;
  }

  .menu-heading h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .menu-browser {
    border-radius: 28px;
  }

  .menu-tabs {
    padding: 0.75rem;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-panel {
    padding: 0 1.1rem;
  }

  .menu-list li {
    min-height: 90px;
  }

  .menu-list i {
    display: none;
  }

  .customise {
    margin-inline: 0.75rem;
  }

  .allergen-note {
    padding-inline: 1.1rem;
  }

  .passport-card {
    padding: 2rem 1.25rem 1.25rem;
    grid-template-columns: 1fr;
    border-radius: 32px;
  }

  .passport-copy {
    padding: 0.5rem 0.3rem 0;
  }

  .passport-copy h2 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .passport-stamps {
    gap: 0.42rem;
  }

  .passport-stamps span {
    width: 34px;
    height: 34px;
  }

  .passport-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    transform: none;
  }

  .passport-photo img {
    object-position: 50% 61%;
  }

  .story-section {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }

  .story-photo {
    width: calc(100% - 12px);
    align-self: flex-end;
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .story-points > div {
    grid-template-columns: 26px 1fr;
    align-items: start;
  }

  .story-points p {
    grid-column: 2;
  }

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

  .review-card {
    border-radius: 26px;
  }

  .instagram-heading > div:last-child {
    justify-items: start;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: min(48vw, 230px);
    gap: 0.55rem;
  }

  .insta-tile {
    border-radius: 17px;
  }

  .insta-tile > span {
    right: 0.65rem;
    bottom: 0.6rem;
    left: 0.65rem;
    font-size: 0.7rem;
  }

  .visit-section {
    padding-inline: 16px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-card {
    padding: 1.5rem;
    border-radius: 26px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }

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

  .mobile-actions {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-top: 1px solid rgba(16, 29, 80, 0.1);
    background: rgba(255, 244, 220, 0.94);
    box-shadow: 0 -12px 36px rgba(22, 15, 49, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--display);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    background: var(--pink);
    color: var(--navy);
  }
}

@media (max-width: 430px) {
  .status-bar {
    font-size: 0.72rem;
  }

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

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

  .hero-photos {
    height: 116vw;
  }

  .passport-stamps strong {
    margin-left: 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 1.7rem 1rem;
  }
}

@media (max-width: 360px) {
  :root {
    --page: calc(100% - 24px);
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .button {
    font-size: 0.9rem;
  }

  .drink-grid {
    width: calc(100% + 12px);
    margin-right: -12px;
    padding-right: 12px;
  }

  .menu-section,
  .passport-section,
  .reviews-section,
  .visit-section {
    padding-inline: 12px;
  }

  .passport-stamps span {
    width: 31px;
    height: 31px;
  }
}

@media (hover: none) {
  .hero-photo:hover,
  .drink-card:hover,
  .passport-photo:hover,
  .button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
