:root {
  --bg: #050b12;
  --bg-2: #081827;
  --panel: rgba(6, 15, 25, 0.78);
  --panel-solid: #07131f;
  --line: rgba(185, 211, 241, 0.16);
  --text: #f7f3ec;
  --muted: #c4ccda;
  --blue: #168dff;
  --blue-2: #77bdff;
  --gold: #f0c06b;
  --gold-soft: rgba(240, 192, 107, 0.18);
  --white-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Helvetica Neue", Montserrat, Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(20, 105, 185, 0.22), transparent 34%),
    linear-gradient(180deg, #03070c, var(--bg) 42%, #07131f);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(20px, 4vw, 58px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding-block: 12px;
  background: rgba(3, 9, 16, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-grid;
  gap: 2px;
  width: max-content;
  text-transform: lowercase;
}

.brand span {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 0.82;
}

.brand em {
  color: var(--blue-2);
  font-style: normal;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 28px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
  color: var(--blue-2);
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(128, 196, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.20), transparent 38%),
    linear-gradient(135deg, #168dff, #075fb9 56%, #062d64);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow:
    0 18px 44px rgba(0, 113, 229, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 540ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 192, 107, 0.55);
  box-shadow:
    0 24px 58px rgba(0, 113, 229, 0.38),
    0 0 0 1px rgba(240, 192, 107, 0.12) inset;
}

.header-cta:hover::before,
.button:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.button.secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    rgba(4, 12, 20, 0.38);
  border-color: rgba(240, 192, 107, 0.62);
  color: #fff5df;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.button.small {
  min-height: 40px;
  width: max-content;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.fixed-actions {
  position: fixed;
  z-index: 38;
  right: 18px;
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.fixed-action {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 192, 107, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.16), transparent 32%),
    rgba(4, 13, 22, 0.82);
  color: #f7f3ec;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.fixed-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fixed-action span {
  position: absolute;
  right: 64px;
  width: max-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(4, 13, 22, 0.90);
  color: #fff5df;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.fixed-action:hover span {
  opacity: 1;
  transform: translateX(0);
}

.fixed-action-cart {
  color: #ffe0a3;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(240, 192, 107, 0.16);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-bg {
  background: url("assets/optimized/hero-luxury.webp") center / cover no-repeat;
  transform: scale(1.01);
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.46) 0%, rgba(3, 12, 22, 0.20) 36%, rgba(5, 15, 26, 0.00) 72%),
    linear-gradient(0deg, rgba(5, 11, 18, 0.34) 0%, rgba(5, 11, 18, 0.04) 48%, rgba(0, 0, 0, 0.00) 100%);
}

.hero-inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 0.58fr);
  align-items: end;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 76px);
  width: min(100% - 40px, 1540px);
  margin: 0 auto;
  padding: 150px 0 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

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

h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.2vw, 104px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.62);
  hyphens: none;
}

h1 span {
  display: block;
  hyphens: none;
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  hyphens: none;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 34px;
  color: #eef4fb;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.72;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  align-self: end;
  justify-self: end;
  width: min(100%, 620px);
  margin-bottom: -18px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: 8px;
  background: rgba(5, 12, 20, 0.50);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(18px);
  overflow: hidden;
  padding: 12px;
}

.hero-panel p {
  margin: 0 0 8px;
  color: #fff3dc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-signature span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(240, 192, 107, 0.28);
  border-radius: 999px;
  background: rgba(5, 14, 24, 0.42);
  color: #f8e9cc;
  font-size: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-signature strong {
  color: #fff;
}

.hero-signature em {
  font-style: normal;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.quick-facts div,
.metrics div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div:nth-child(even),
.metrics div:nth-child(even) {
  border-right: 0;
}

.quick-facts div:nth-last-child(-n+2),
.metrics div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.quick-facts strong,
.metrics strong {
  display: block;
  color: var(--blue-2);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.quick-facts span,
.metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.sky-lounge {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(58px, 7vw, 104px);
  color: #08121d;
  overflow: hidden;
}

.sky-lounge::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 10%, rgba(105, 184, 255, 0.24), transparent 34%),
    radial-gradient(ellipse at 86% 18%, rgba(255, 255, 255, 0.88), transparent 32%),
    radial-gradient(ellipse at 54% 46%, rgba(173, 218, 255, 0.24), transparent 42%),
    linear-gradient(180deg, #f9fbff 0%, #eef6fc 52%, #f7fafc 100%);
}

.sky-lounge::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 255, 255, 0.94), transparent 24%),
    radial-gradient(ellipse at 38% 26%, rgba(210, 236, 255, 0.56), transparent 22%),
    radial-gradient(ellipse at 78% 64%, rgba(255, 255, 255, 0.78), transparent 24%);
  filter: blur(22px);
  opacity: 0.74;
  pointer-events: none;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  border-block: 1px solid rgba(24, 71, 112, 0.10);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.70), rgba(238, 248, 255, 0.82), rgba(255, 255, 255, 0.70));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 32px 90px rgba(21, 57, 91, 0.10);
  backdrop-filter: blur(18px);
}

.feature-strip article {
  position: relative;
  min-height: 162px;
  padding: 32px clamp(18px, 3vw, 46px);
  text-align: center;
  border-right: 1px solid rgba(24, 71, 112, 0.10);
}

.feature-strip article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 68px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(240, 192, 107, 0.8), transparent);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip .icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(147, 108, 41, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.92), transparent 42%),
    rgba(238, 247, 255, 0.72);
  color: #936c29;
  box-shadow: 0 18px 42px rgba(21, 57, 91, 0.10);
}

.feature-strip .icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-strip h2 {
  margin-bottom: 10px;
  color: #07111b;
  font-size: 15px;
}

.feature-strip p {
  margin: 0 auto;
  max-width: 260px;
  color: #425466;
  font-size: 13px;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(100% - 40px, 1400px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 94px) 0 0;
}

.payment-section h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.96;
}

.payment-section p:not(.eyebrow) {
  max-width: 540px;
  color: #344454;
}

.payment-note {
  position: relative;
  margin-top: 18px;
  padding: 17px 18px 17px 54px;
  border: 1px solid rgba(169, 116, 39, 0.20);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 255, 0.60)),
    radial-gradient(circle at 12% 0%, rgba(35, 139, 245, 0.12), transparent 45%);
  box-shadow: 0 18px 42px rgba(20, 56, 86, 0.08);
  font-weight: 700;
}

.payment-note::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff7e8 0 30%, transparent 32%),
    linear-gradient(135deg, var(--gold), #9f6b24);
  box-shadow: 0 8px 18px rgba(159, 107, 36, 0.24);
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  gap: 12px;
}

.payment-logos article {
  display: grid;
  grid-template-rows: 82px 36px;
  align-content: center;
  align-items: center;
  justify-items: center;
  row-gap: 14px;
  min-height: 140px;
  padding: 18px 12px;
  border: 1px solid rgba(24, 71, 112, 0.10);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), transparent 38%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 64px rgba(21, 57, 91, 0.09);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.payment-logos article:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 74px rgba(21, 57, 91, 0.14);
}

.payment-logos img {
  width: min(100%, 132px);
  max-height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.25));
}

.payment-logos span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  min-height: 36px;
  margin-top: 0;
  color: #07111b;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1340px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 124px) 0;
}

.section + .section {
  border-top: 1px solid rgba(240, 192, 107, 0.08);
}

.section.light-section {
  width: 100%;
  color: #08121d;
  padding-inline: max(20px, calc((100vw - 1460px) / 2));
}

.section.light-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 14% 18%, rgba(102, 181, 255, 0.22), transparent 34%),
    radial-gradient(ellipse at 40% 10%, rgba(255, 255, 255, 0.86), transparent 27%),
    radial-gradient(ellipse at 76% 22%, rgba(208, 232, 255, 0.58), transparent 30%),
    radial-gradient(ellipse at 92% 12%, rgba(240, 192, 107, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfaf6, #eef3f7);
}

.section.light-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34px;
  right: max(20px, calc((100vw - 1460px) / 2));
  width: min(42vw, 540px);
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255, 255, 255, 0.78), transparent 54%),
    radial-gradient(ellipse at 54% 42%, rgba(173, 218, 255, 0.42), transparent 58%),
    radial-gradient(ellipse at 82% 68%, rgba(255, 255, 255, 0.62), transparent 52%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.section.light-section h2,
.section.light-section h3 {
  color: #07111b;
}

.section.light-section .eyebrow {
  color: #936c29;
}

.section.light-section .section-copy p:not(.eyebrow),
.section.light-section .section-heading > p:not(.eyebrow),
.section.light-section .timeline p {
  color: #344454;
}

.section.light-section .metrics,
.section.light-section .tickets article,
.section.light-section .timeline,
.section.light-section .chefs-grid article {
  border-color: rgba(8, 18, 29, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 90px rgba(9, 30, 50, 0.10);
}

.section.light-section .tickets h3,
.section.light-section .tickets p,
.section.light-section .tickets li,
.section.light-section .metrics span {
  color: #28394a;
}

.section.light-section .tickets h3,
.section.light-section .metrics strong {
  color: #07111b;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.86fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.88fr) minmax(300px, 1fr);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.image-stack img,
.photo-card img,
.menu-gallery img,
.gallery img,
.promo-grid img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.image-stack img,
.photo-card img,
.menu-gallery img,
.gallery img {
  border: 1px solid rgba(240, 192, 107, 0.16);
}

.image-stack img:first-child {
  aspect-ratio: 1 / 1.15;
  height: 100%;
}

.image-stack img:last-child {
  aspect-ratio: 0.8 / 1;
  margin-bottom: -42px;
}

.image-stack:hover img:first-child,
.photo-card:hover img {
  transform: translateY(-6px);
}

.section-copy p:not(.eyebrow) {
  color: #d5dfeb;
  font-size: 17px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 15, 25, 0.48);
  backdrop-filter: blur(16px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 720px;
  color: #cdd8e6;
  font-size: 17px;
}

.section-heading.inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  text-align: left;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.products-section {
  width: min(100% - 40px, 1460px);
}

.tickets article,
.contact-panel,
.faq details {
  border: 1px solid rgba(240, 192, 107, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(22, 141, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(11, 31, 49, 0.82), rgba(5, 15, 25, 0.92));
  box-shadow: var(--shadow);
}

.tickets article {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 18px 22px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ticket-photo {
  width: calc(100% + 8px);
  height: 176px;
  margin: -4px -4px 24px;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.tickets article:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 192, 107, 0.42);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.tickets article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.56;
}

.section.light-section .tickets article::before {
  width: 100%;
  height: 3px;
  inset: 0 0 auto;
  background: linear-gradient(90deg, transparent, #bd8d3e, transparent);
}

.tickets .featured {
  background:
    radial-gradient(circle at 22% 0%, rgba(240, 192, 107, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(11, 51, 87, 0.78), rgba(5, 16, 27, 0.98));
  transform: translateY(-12px);
}

.tickets .featured:hover {
  transform: translateY(-20px);
}

.tickets h3 {
  margin-bottom: 18px;
  color: #fff7e8;
  font-size: 23px;
}

.tickets p,
.tickets li {
  color: #cbd7e5;
}

.tickets ul {
  margin: auto 0 24px;
  padding-left: 18px;
}

.news-section {
  width: min(100% - 40px, 1460px);
  padding-top: clamp(72px, 8vw, 132px);
}

.editorial-heading h2 {
  max-width: 980px;
  margin-inline: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  grid-auto-rows: minmax(255px, auto);
  gap: 14px;
}

.news-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 268px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0%, rgba(3, 8, 14, 0.22) 38%, rgba(3, 8, 14, 0.92) 100%),
    url("assets/optimized/gallery-08.webp") center / cover no-repeat;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, filter 220ms ease, border-color 220ms ease;
}

.news-grid article::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  pointer-events: none;
}

.news-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent, rgba(3, 8, 14, 0.76));
  pointer-events: none;
}

.news-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 192, 107, 0.38);
  filter: saturate(1.08);
}

.news-grid article:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0%, rgba(3, 8, 14, 0.22) 38%, rgba(3, 8, 14, 0.92) 100%), url("assets/optimized/gallery-08.webp");
}

.news-grid article:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0%, rgba(3, 8, 14, 0.22) 38%, rgba(3, 8, 14, 0.92) 100%), url("assets/optimized/menu-01.webp");
}

.news-grid article:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0%, rgba(3, 8, 14, 0.22) 38%, rgba(3, 8, 14, 0.92) 100%), url("assets/optimized/gallery-05.webp");
}

.news-grid .news-hero {
  grid-row: span 2;
  min-height: 560px;
  background-image:
    linear-gradient(180deg, rgba(3, 8, 14, 0.02) 0%, rgba(3, 8, 14, 0.18) 42%, rgba(3, 8, 14, 0.92) 100%),
    url("assets/optimized/gallery-09.webp");
}

.news-grid span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 192, 107, 0.36);
  border-radius: 999px;
  background: rgba(3, 8, 14, 0.36);
  color: rgba(255, 224, 163, 0.92);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.news-grid h3 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-bottom: 10px;
  color: #fff7e8;
  font-size: clamp(28px, 3.3vw, 54px);
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.news-grid article:not(.news-hero) h3 {
  font-size: clamp(21px, 1.7vw, 30px);
  line-height: 1.06;
}

.news-grid p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0;
  color: #d4deea;
  font-size: 15px;
  line-height: 1.55;
}

.photo-card {
  margin: 0;
}

.photo-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.chef-feature {
  width: 100%;
  margin-top: 0;
  padding-block: clamp(58px, 7vw, 108px);
  padding-inline: max(20px, calc((100vw - 1460px) / 2));
}

.chef-feature .section-copy {
  max-width: 660px;
}

.chef-feature .section-copy p:not(.eyebrow) {
  color: #344454;
  font-size: 18px;
}

.chef-feature h2 {
  width: max-content;
  max-width: 100%;
  color: #07111b;
  font-size: clamp(38px, 4.8vw, 74px);
  line-height: 1;
  white-space: nowrap;
  hyphens: none;
}

.chef-feature .photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 71, 112, 0.10);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 28% 12%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(226, 242, 255, 0.52));
  box-shadow: 0 34px 100px rgba(21, 57, 91, 0.14);
}

.chef-feature .photo-card::after {
  content: "chef 2026";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(240, 192, 107, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #936c29;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.chef-feature .photo-card img {
  aspect-ratio: 16 / 10;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.menu-section {
  width: 100%;
  padding-top: clamp(46px, 5vw, 82px);
  padding-inline: 20px;
  background:
    linear-gradient(180deg, rgba(4, 14, 24, 0), rgba(12, 31, 49, 0.72) 45%, rgba(4, 14, 24, 0)),
    radial-gradient(circle at 80% 30%, rgba(240, 192, 107, 0.10), transparent 30%);
}

.menu-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 16px;
  width: min(100%, 1340px);
  margin: 0 auto;
}

.menu-gallery img {
  width: 100%;
  height: 420px;
}

.menu-gallery img:nth-child(2) {
  height: 500px;
  margin-top: -40px;
}

.timeline-section {
  width: min(100% - 40px, 1460px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(240, 192, 107, 0.16);
  border-radius: 8px;
  overflow: visible;
  background: transparent;
  box-shadow: var(--shadow);
}

.timeline article {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid rgba(240, 192, 107, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 29, 47, 0.86), rgba(5, 15, 25, 0.96)),
    radial-gradient(circle at 0% 0%, rgba(22, 141, 255, 0.18), transparent 40%);
}

.timeline article:first-child {
  border-radius: 8px 0 0 8px;
}

.timeline article:last-child {
  border-right: 0;
  border-radius: 0 8px 8px 0;
}

.section.light-section .timeline article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 251, 0.9)),
    radial-gradient(circle at 0% 0%, rgba(22, 141, 255, 0.12), transparent 40%);
}

.timeline span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.timeline h3 {
  color: #fff7e8;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.voucher,
.corporate {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 4vw, 58px);
  border: 1px solid rgba(24, 71, 112, 0.10);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 88% 14%, rgba(130, 198, 255, 0.26), transparent 36%),
    radial-gradient(ellipse at 22% 85%, rgba(255, 255, 255, 0.82), transparent 34%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 34px 100px rgba(21, 57, 91, 0.12);
  backdrop-filter: blur(14px);
}

.voucher h2,
.corporate h2 {
  color: #07111b;
}

.voucher p:not(.eyebrow),
.corporate p:not(.eyebrow) {
  color: #344454;
}

.voucher img {
  justify-self: end;
  max-height: 360px;
  border: 1px solid rgba(24, 71, 112, 0.10);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 30px 80px rgba(21, 57, 91, 0.16);
}

.corporate {
  grid-template-columns: 1.1fr 0.9fr;
}

.corporate img {
  width: 100%;
  max-height: 410px;
  border: 1px solid rgba(24, 71, 112, 0.10);
  box-shadow: 0 30px 80px rgba(21, 57, 91, 0.16);
}

.gallery {
  display: block;
  columns: 3 280px;
  column-gap: 12px;
}

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 12px;
  border-radius: 8px;
  break-inside: avoid;
  box-shadow: 0 24px 70px rgba(9, 30, 50, 0.16);
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.015);
}

.press-section {
  width: min(100% - 40px, 1460px);
}

.press-section .section-heading {
  max-width: 980px;
  margin-bottom: 36px;
}

.press-section .section-heading h2 {
  font-size: clamp(36px, 5vw, 74px);
  line-height: 0.98;
}

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

.press-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 18px 44px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 0% 0%, rgba(22, 141, 255, 0.15), transparent 42%);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.press-grid a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(240, 192, 107, 0.72);
  font-size: 20px;
}

.press-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 192, 107, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.024)),
    radial-gradient(circle at 0% 0%, rgba(22, 141, 255, 0.20), transparent 42%);
}

.press-grid img {
  grid-row: span 2;
  width: 122px;
  height: 74px;
  padding: 12px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.press-grid strong {
  color: #fff7e8;
  font-size: 20px;
  line-height: 1.1;
}

.press-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.chefs-section {
  width: min(100% - 40px, 1460px);
}

.chefs-layout {
  display: block;
}

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 14px;
}

.chefs-grid article {
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 107, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 31, 49, 0.7), rgba(5, 15, 25, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.chefs-grid article:hover,
.chefs-grid article.is-active {
  transform: translateY(-6px);
  border-color: rgba(147, 108, 41, 0.32);
}

.chefs-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center bottom;
  padding-top: 10px;
  background:
    radial-gradient(circle at 50% 8%, rgba(119, 189, 255, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
  filter: saturate(0.95) contrast(1.05);
}

.chefs-grid h3 {
  margin: 16px 16px 4px;
  color: #fff7e8;
  font-size: 17px;
}

.chefs-grid p {
  margin: 0 16px 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.chef-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(22, 141, 255, 0.22), transparent 34%),
    rgba(1, 5, 10, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(16px);
}

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

.chef-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr);
  width: min(100%, 920px);
  max-height: min(760px, calc(100vh - 56px));
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(240, 192, 107, 0.18), transparent 32%),
    linear-gradient(180deg, #07131f, #0a2033);
  color: #f7f3ec;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56);
}

.chef-modal-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: top;
  background: #050b12;
}

.chef-modal-card > div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 58px);
}

.chef-modal-card .eyebrow {
  margin: 0;
  color: var(--gold);
}

.chef-modal-card h3 {
  margin: 0;
  color: #fff7e8;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.chef-modal-card p:not(.eyebrow) {
  margin: 0;
  color: #cbd6e4;
  font-size: 17px;
  line-height: 1.7;
}

.chef-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 82;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(240, 192, 107, 0.36);
  border-radius: 999px;
  background: rgba(5, 14, 24, 0.88);
  color: #fff7e8;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.faq-contact h2 {
  max-width: 640px;
  font-size: clamp(38px, 5vw, 82px);
  line-height: 0.98;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq details {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 18, 29, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(9, 30, 50, 0.08);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  color: #07111b;
  font-weight: 800;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 24px 24px;
  color: #3b4c5d;
}

.contact-panel {
  padding: clamp(28px, 4vw, 54px);
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 14%, rgba(22, 141, 255, 0.26), transparent 34%),
    linear-gradient(135deg, #07131f, #0b2134 58%, #06111c);
  color: #f7f3ec;
  box-shadow: 0 34px 100px rgba(9, 30, 50, 0.22);
}

.contact-panel p {
  color: #cbd6e4;
}

.contact-panel h2 {
  color: #fff7e8 !important;
}

.contact-intro {
  max-width: 620px;
  margin-top: 18px;
}

.contact-kicker {
  margin: 0 0 8px;
  color: #ffe0a3 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-intro p:last-child {
  margin: 0;
  color: #d7dfeb;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(204, 223, 248, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(4, 12, 20, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(4, 12, 20, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 192, 107, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 72px rgba(2, 10, 18, 0.28);
}

.contact-channel.is-accent {
  background:
    linear-gradient(135deg, rgba(74, 165, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(5, 17, 29, 0.48);
  border-color: rgba(116, 188, 255, 0.34);
}

.contact-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 192, 107, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  color: #ffd18a;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-copy strong {
  color: #fff8eb;
  font-size: 17px;
  line-height: 1.12;
}

.contact-copy small {
  color: #c6d0de;
  font-size: 14px;
  line-height: 1.45;
}

.contact-meta {
  margin-top: 22px;
  color: #aeb9c9 !important;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: #03070c;
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  text-transform: uppercase;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: fixed;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 14, 24, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(32px, 6.2vw, 52px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  .hero-panel {
    max-width: 620px;
    justify-self: start;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip article:nth-child(2) {
    border-right: 0;
  }

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

  .payment-section {
    grid-template-columns: 1fr;
  }

  .payment-logos {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

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

  .news-grid,
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-auto-rows: auto;
  }

  .press-grid a {
    grid-column: auto;
  }

  .news-grid .news-hero {
    grid-row: auto;
    min-height: 420px;
  }

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

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

  .chef-detail {
    position: relative;
    top: auto;
  }

  .tickets .featured {
    transform: none;
  }

  .menu-gallery,
  .voucher,
  .corporate {
    grid-template-columns: 1fr;
  }

  .menu-gallery img,
  .menu-gallery img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand small {
    font-size: 7px;
  }

  .header-cta {
    justify-self: end;
    width: auto;
    max-width: 138px;
    min-height: 40px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero-inner,
  .section {
    width: min(100% - 28px, 1340px);
  }

  .section.light-section,
  .chef-feature {
    padding-inline: 14px;
  }

  .sky-lounge {
    padding-bottom: 54px;
  }

  .hero-inner {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
    padding-top: 190px;
    padding-bottom: 42px;
  }

  .hero-bg {
    background-position: 72% center;
  }

  h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.16;
    text-wrap: initial;
    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }

  h2 {
    font-size: clamp(26px, 8.4vw, 34px);
    line-height: 1.05;
  }

  .hero-copy,
  .section-copy,
  .section-heading,
  .payment-section > div,
  .contact-panel {
    min-width: 0;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.58;
    overflow-wrap: break-word;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading > p:not(.eyebrow) {
    margin-inline: 0;
    font-size: 15px;
  }

  .editorial-heading h2 {
    max-width: 100%;
    font-size: clamp(28px, 8.6vw, 34px);
    line-height: 1.02;
  }

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

  .hero-actions {
    margin-top: 34px;
    margin-bottom: 22px;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
    padding: 8px;
    border-color: rgba(240, 192, 107, 0.28);
    background: rgba(3, 9, 16, 0.56);
  }

  .hero-panel p {
    padding-left: 2px;
    font-size: 10px;
  }

  .button,
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }

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

  .contact-channel {
    width: 100%;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 20px;
  }

  .contact-copy strong {
    font-size: 16px;
  }

  .contact-copy small {
    font-size: 13px;
  }

  .hero-signature span {
    flex: 0 0 auto;
    width: max-content;
    max-width: calc(100vw - 32px);
    min-height: 30px;
    padding: 5px 10px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 9px;
    line-height: 1.1;
  }

  .hero-signature {
    display: none;
  }

  .chef-feature h2,
  .payment-section h2,
  .faq-contact h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
  }

  .chef-feature .section-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .quick-facts,
  .metrics,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: 0;
  }

  .quick-facts div,
  .metrics div,
  .feature-strip article {
    border-right: 0;
  }

  .feature-strip article {
    border-bottom: 1px solid rgba(24, 71, 112, 0.10);
  }

  .quick-facts div:nth-last-child(-n+2),
  .metrics div:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-facts div:last-child,
  .metrics div:last-child,
  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:last-child {
    margin-bottom: 0;
  }

  .section-heading.inline {
    display: block;
  }

  .gallery {
    columns: 1;
  }

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

  .payment-section {
    width: min(100% - 28px, 1320px);
    padding-top: 42px;
  }

  .payment-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-logos article {
    grid-template-rows: 64px 32px;
    min-height: 118px;
  }

  .payment-logos img {
    max-height: 64px;
    width: min(100%, 112px);
  }

  .payment-logos span {
    min-height: 32px;
    font-size: 10px;
  }

  .voucher,
  .corporate {
    padding: 22px;
  }

  .payment-logos article:last-child {
    grid-column: 1 / -1;
  }

  .news-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .news-grid .news-hero {
    min-height: 390px;
  }

  .news-grid article {
    min-height: 320px;
    padding: 22px;
  }

  .news-grid article::before {
    inset: 10px;
  }

  .news-grid span {
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
  }

  .news-grid h3,
  .news-grid article:not(.news-hero) h3 {
    font-size: 24px;
    line-height: 1.05;
  }

  .news-grid p {
    font-size: 14px;
  }

  .press-grid a {
    grid-template-columns: 96px 1fr;
  }

  .press-grid img {
    width: 96px;
    height: 72px;
  }

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

  .chefs-grid article {
    min-height: 0;
  }

  .fixed-actions {
    right: 12px;
    top: auto;
    bottom: 18px;
    grid-auto-flow: column;
    transform: none;
  }

  .fixed-action {
    width: 38px;
    height: 38px;
  }

  .fixed-action span {
    display: none;
  }

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

.event-hero-bg {
  background-image:
    linear-gradient(90deg, rgba(3, 7, 12, 0.94) 0%, rgba(3, 8, 14, 0.56) 45%, rgba(3, 8, 14, 0.24) 100%),
    url("assets/optimized/event.webp");
  background-position: center;
}

.event-hero .hero-copy {
  max-width: 840px;
}

.event-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.2vw, 104px);
  line-height: 0.98;
}

.event-hero h1 span {
  white-space: normal;
}

.event-video-panel {
  max-width: 620px;
}

.event-intro .photo-card img,
.event-branding .photo-card img {
  min-height: 520px;
  object-fit: cover;
}

.event-metrics {
  grid-template-columns: repeat(2, 1fr);
}

.event-options {
  width: 100%;
  padding-inline: clamp(22px, 4.5vw, 86px);
  background:
    radial-gradient(circle at 14% 8%, rgba(119, 189, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #040910 0%, #071522 100%);
}

.event-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1340px;
  margin: 0 auto;
}

.event-card-grid article,
.lux-list,
.admin-panel {
  border: 1px solid rgba(240, 192, 107, 0.20);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.025)),
    rgba(5, 14, 24, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.event-card-grid article {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
}

.event-card-grid article::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 192, 107, 0.55), transparent);
}

.event-card-grid span,
.event-process span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.event-card-grid h3 {
  margin: 48px 0 14px;
  color: #fff7e8;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.event-card-grid p,
.event-card-grid li {
  color: rgba(247, 243, 236, 0.76);
}

.event-card-grid ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0 18px;
}

.lux-list {
  display: grid;
  gap: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(119, 189, 255, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 64px rgba(9, 30, 50, 0.12);
}

.lux-list p {
  margin: 0;
  color: rgba(6, 22, 36, 0.82) !important;
}

.lux-list strong {
  display: block;
  color: #07131f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-process-section {
  width: 100%;
  padding-inline: clamp(22px, 4.5vw, 86px);
}

.event-process {
  max-width: 1340px;
  margin-inline: auto;
}

.event-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(24, 71, 112, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(9, 30, 50, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.9) contrast(1.04);
}

.event-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.event-cta > div {
  max-width: 780px;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 141, 255, 0.18), transparent 38%),
    linear-gradient(135deg, #02060b, #07131f 58%, #091b2c);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: rgba(3, 8, 14, 0.58);
}

.admin-sidebar h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
}

.admin-sidebar p:not(.eyebrow) {
  margin: 0;
  color: rgba(247, 243, 236, 0.72);
}

.admin-page-links {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.admin-page-links a {
  padding: 13px 14px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: 999px;
  color: #fff7e8;
  background: rgba(255, 255, 255, 0.05);
}

.admin-workspace {
  padding: 24px;
}

.admin-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 14, 24, 0.84);
  backdrop-filter: blur(18px);
}

.admin-tabs,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 243, 236, 0.74);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-tabs button.is-active {
  border-color: rgba(240, 192, 107, 0.48);
  color: #fff7e8;
  background: rgba(240, 192, 107, 0.14);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  margin-top: 22px;
}

.admin-form,
.admin-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(5, 14, 24, 0.78);
  box-shadow: var(--shadow);
}

.admin-form {
  display: block;
  margin: 0;
  padding: 24px;
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: grid;
  gap: 16px;
}

.admin-section h2,
.admin-preview h2 {
  margin: 0;
  color: #fff7e8;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  text-transform: uppercase;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 236, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-json {
  border-color: rgba(240, 192, 107, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.admin-media-path {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.admin-media-picker {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-height: 102px;
  padding: 9px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.18);
  color: #f7f3ec;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.admin-media-picker:hover,
.admin-media-picker:focus-visible {
  border-color: rgba(240, 192, 107, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.20);
}

.admin-media-picker__thumb {
  display: block;
  overflow: hidden;
  min-height: 84px;
  border-radius: 8px;
  background: #050b12;
}

.admin-media-picker__thumb img,
.admin-media-picker__thumb video {
  width: 100%;
  height: 100%;
  min-height: 84px;
  object-fit: cover;
}

.admin-media-picker__body {
  display: grid;
  gap: 5px;
  align-content: center;
  min-width: 0;
}

.admin-media-picker__body strong,
.admin-media-picker__body small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-media-picker__body strong {
  color: #fff7e8;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.admin-media-picker__body small {
  color: rgba(247, 243, 236, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.admin-media-picker__body em {
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(240, 192, 107, 0.16);
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-media-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 84px;
  color: rgba(247, 243, 236, 0.54);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.admin-preview {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 24px;
}

.admin-preview p:not(.eyebrow) {
  color: rgba(247, 243, 236, 0.76);
}

.admin-json {
  min-height: 300px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.admin-note {
  margin: 0;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 800;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-media-category {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(240, 192, 107, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.admin-media-category h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff7e8;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.admin-upload {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.admin-upload p {
  margin: 0;
  color: rgba(247, 243, 236, 0.68);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.asset-library {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
}

.asset-library button {
  display: grid;
  gap: 7px;
  padding: 0 0 9px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 107, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 243, 236, 0.72);
  cursor: pointer;
  text-align: left;
}

.asset-library img,
.asset-library video {
  width: 100%;
  height: 86px;
  object-fit: cover;
  background: #050b12;
}

.asset-library span {
  padding-inline: 8px;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.admin-modal-open {
  overflow: hidden;
}

.admin-media-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  padding: clamp(14px, 3vw, 32px);
  background: rgba(0, 6, 12, 0.78);
  backdrop-filter: blur(18px);
}

.admin-media-modal.is-open {
  display: grid;
  place-items: center;
}

.admin-media-modal__panel {
  width: min(1120px, 100%);
  max-height: min(860px, 92svh);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  border: 1px solid rgba(240, 192, 107, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(33, 136, 240, 0.20), transparent 34%),
    linear-gradient(145deg, rgba(8, 20, 33, 0.98), rgba(3, 8, 14, 0.98));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.admin-media-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 10px;
}

.admin-media-modal__header h2 {
  margin: 0;
  color: #fff7e8;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.admin-media-modal__close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(240, 192, 107, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff7e8;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.admin-media-modal__tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 14px;
  padding: 0 24px 18px;
}

.admin-media-modal__tools label {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 236, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-media-modal__tools input {
  min-height: 48px;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff7e8;
  padding: 12px 14px;
  font: inherit;
}

.admin-media-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: auto;
  padding: 0 24px 24px;
}

.admin-media-modal__grid button {
  display: grid;
  gap: 8px;
  padding: 0 0 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 192, 107, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #f7f3ec;
  cursor: pointer;
  text-align: left;
}

.admin-media-modal__grid button:hover,
.admin-media-modal__grid button:focus-visible {
  border-color: rgba(240, 192, 107, 0.50);
  transform: translateY(-1px);
}

.admin-media-modal__grid img,
.admin-media-modal__grid video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #050b12;
}

.admin-media-modal__grid strong,
.admin-media-modal__grid small {
  padding-inline: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-media-modal__grid strong {
  color: #fff7e8;
  font-size: 12px;
}

.admin-media-modal__grid small {
  color: rgba(247, 243, 236, 0.54);
  font-size: 10px;
}

.admin-media-modal__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(240, 192, 107, 0.25);
  border-radius: 14px;
  color: rgba(247, 243, 236, 0.72);
}

.admin-media-grid article {
  overflow: hidden;
  border: 1px solid rgba(240, 192, 107, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.admin-media-grid img,
.admin-media-grid video {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #050b12;
}

.admin-media-grid strong,
.admin-media-grid span {
  display: block;
  padding-inline: 10px;
}

.admin-media-grid strong {
  padding-top: 10px;
  color: #fff7e8;
  font-size: 12px;
}

.admin-media-grid span {
  padding-bottom: 10px;
  color: rgba(247, 243, 236, 0.58);
  font-size: 11px;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  .event-card-grid,
  .event-map-section,
  .admin-shell,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-preview {
    position: relative;
    top: auto;
  }

  .chef-modal-card {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .chef-modal-card img {
    min-height: 0;
    height: 340px;
  }
}

@media (max-width: 680px) {
  .event-hero h1 {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.05;
  }

  .event-card-grid article {
    min-height: 0;
    padding: 24px;
  }

  .event-card-grid h3 {
    margin-top: 28px;
  }

  .event-metrics {
    grid-template-columns: 1fr;
  }

  .event-cta,
  .admin-toolbar {
    display: grid;
  }

  .chef-feature h2 {
    width: auto;
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.04;
    white-space: normal;
  }

  .chef-modal {
    padding: 14px;
  }

  .chef-modal-card img {
    height: 280px;
  }

  .chef-modal-card > div {
    padding: 22px;
  }

  .chef-modal-card h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .map-frame,
  .map-frame iframe {
    min-height: 320px;
  }

  .admin-media-grid {
    grid-template-columns: 1fr;
  }

  .admin-media-category {
    grid-template-columns: 1fr;
  }

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

  .admin-media-picker {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .admin-media-modal__tools,
  .admin-media-modal__grid {
    grid-template-columns: 1fr;
  }

  .admin-media-modal__panel {
    max-height: 94svh;
  }

  .admin-workspace,
  .admin-sidebar {
    padding: 16px;
  }

  .admin-actions .button {
    width: 100%;
  }
}
