:root {
  --bg: #07050b;
  --surface: #100d14;
  --surface-soft: #17121b;
  --pink: #ed0062;
  --pink-light: #ff4b91;
  --text: #fff8fb;
  --muted: #c7bfc6;
  --line: rgba(255, 255, 255, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

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

a {
  color: inherit;
}

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

button {
  font-family: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(237, 0, 98, 0.12),
      transparent 28%
    ),
    var(--bg);
}


/* ========================================
   HEADER
======================================== */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max-width));
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
}

.mini-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 0, 98, 0.7);
  border-radius: 50%;
  color: var(--pink);
  font-style: italic;
}

.header-call {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text);
  text-align: right;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.header-call span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 24px 100px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(
      90deg,
      rgba(7, 5, 11, 0.98),
      rgba(7, 5, 11, 0.7),
      rgba(7, 5, 11, 0.98)
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0 24px,
      rgba(255, 255, 255, 0.012) 24px 25px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--pink-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-logo {
  display: block;
  width: min(660px, 92vw);
  max-height: 250px;
  margin: 0 auto 26px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.32));
}

.coming-soon-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 26px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #eee6eb;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.coming-soon-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(237, 0, 98, 0.12);
  animation: pulse 1.8s infinite;
}

.hero h1,
.details h2,
.menu-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.92;
}

.hero h1 em {
  color: var(--pink);
  font-weight: 600;
}

.hero-copy {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-width: 170px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.button-primary {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(237, 0, 98, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #ff0b70;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: var(--pink);
  color: var(--pink-light);
}

.button:focus-visible,
.header-call:focus-visible,
.mini-brand:focus-visible,
.scroll-cue:focus-visible,
.info-card a:focus-visible {
  outline: 3px solid rgba(237, 0, 98, 0.4);
  outline-offset: 4px;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  left: -220px;
  top: 25%;
  background: rgba(237, 0, 98, 0.12);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: 12%;
  background: rgba(237, 0, 98, 0.08);
}

.motif {
  position: absolute;
  z-index: -1;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(237, 0, 98, 0.12);
  border-radius: 50%;
  opacity: 0.7;
}

.motif::before,
.motif::after {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(237, 0, 98, 0.12);
  border-radius: 50%;
}

.motif::after {
  inset: 90px;
  border-radius: 35%;
  transform: rotate(45deg);
}

.motif-left {
  left: -250px;
  bottom: -40px;
}

.motif-right {
  right: -270px;
  top: 160px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--pink), transparent);
}


/* ========================================
   DETAILS
======================================== */

.details {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.details-intro {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.details-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -52px;
}

.details h2,
.menu-panel h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}

.details-intro > p:last-child,
.menu-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.info-card {
  min-height: 300px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}

.info-card:last-child {
  border-right: 0;
}

.featured-card {
  background:
    linear-gradient(
      150deg,
      rgba(237, 0, 98, 0.18),
      rgba(237, 0, 98, 0.03)
    );
}

.card-number {
  color: var(--pink);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.info-card h3 {
  margin: 44px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.info-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--pink-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}


/* ========================================
   MENU SECTION
======================================== */

.menu-teaser {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto 110px;
}

.menu-panel {
  min-height: 360px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 70px;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      135deg,
      rgba(237, 0, 98, 0.13),
      transparent 45%
    ),
    var(--surface);
}

.menu-content {
  max-width: 680px;
}

.menu-panel p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 22px;
}

.menu-button-group {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.menu-view-btn {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--pink);
  color: #ffffff;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(237, 0, 98, 0.24);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-view-btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-view-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
  box-shadow: 0 16px 38px rgba(237, 0, 98, 0.32);
}

.menu-view-btn:focus-visible {
  outline: 3px solid rgba(237, 0, 98, 0.38);
  outline-offset: 4px;
}

.menu-view-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  box-shadow: none;
}

.menu-view-btn-secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.menu-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-stamp img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.35s ease;
}

.menu-panel:hover .menu-stamp img {
  transform: rotate(8deg) scale(1.05);
}


/* ========================================
   MAIN SITE FOOTER
======================================== */

.page-shell > footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.page-shell > footer > div {
  display: flex;
  flex-direction: column;
}

.page-shell > footer strong,
.page-shell > footer a {
  color: var(--text);
  text-decoration: none;
}

.page-shell > footer > div:last-child {
  text-align: right;
}


/* ========================================
   PDF MENU MODAL
======================================== */

body.menu-modal-open {
  overflow: hidden;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 24px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.menu-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-modal-window {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(90vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #0c0c0f;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
  transform: translateY(20px) scale(0.985);
  transition: transform 0.3s ease;
}

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

.menu-modal-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      135deg,
      rgba(237, 10, 100, 0.14),
      transparent 45%
    ),
    #0c0c0f;
}

.menu-modal-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.menu-modal-title img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.menu-modal-title p {
  margin: 0 0 2px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-modal-title h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.2;
}

.menu-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-download-btn,
.menu-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.menu-download-btn {
  min-height: 42px;
  padding: 0 16px;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-modal-close {
  width: 42px;
  height: 42px;
  padding: 0;
  flex-shrink: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-download-btn svg,
.menu-modal-close svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-download-btn:hover,
.menu-modal-close:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-download-btn:focus-visible,
.menu-modal-close:focus-visible,
.menu-modal-footer a:focus-visible {
  outline: 3px solid rgba(237, 0, 98, 0.4);
  outline-offset: 3px;
}

.menu-modal-body {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #25252a;
}

.menu-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.menu-pdf-frame.is-loaded {
  opacity: 1;
}

.menu-pdf-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #151519;
  color: rgba(255, 255, 255, 0.72);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.menu-pdf-loading p {
  margin: 0;
}

.menu-pdf-loading.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.menu-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: menuSpinner 0.8s linear infinite;
}

.menu-modal-footer {
  width: 100%;
  margin: 0;
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0c0f;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.menu-modal-footer p {
  margin: 0;
}

.menu-modal-footer a {
  color: var(--pink-light);
  font-weight: 700;
}


/* ========================================
   ANIMATIONS
======================================== */

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.75);
    opacity: 0.65;
  }
}

@keyframes menuSpinner {
  to {
    transform: rotate(360deg);
  }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 860px) {
  .details-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .details-intro .section-kicker {
    margin-bottom: 0;
  }

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

  .info-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

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

  .menu-stamp {
    justify-self: start;
  }
}


/* ========================================
   MOBILE PDF VIEWER
======================================== */

@media (max-width: 768px) {
  .menu-stamp img {
    width: 120px;
    height: 120px;
  }

  .menu-modal {
    padding: 0;
  }

  .menu-modal-window {
    width: 100%;
    height: 100%;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .menu-modal-header {
    padding: 12px 14px;
  }

  .menu-modal-title img {
    width: 40px;
    height: 40px;
  }

  .menu-download-btn {
    width: 42px;
    padding: 0;
  }

  .menu-download-btn span {
    display: none;
  }

  .menu-modal-footer {
    display: flex;
    flex-wrap: wrap;
  }
}


/* ========================================
   MOBILE SITE
======================================== */

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 32px);
    padding: 20px 0;
  }

  .mini-brand {
    font-size: 23px;
  }

  .mini-mark {
    width: 34px;
    height: 34px;
  }

  .header-call {
    font-size: 13px;
  }

  .header-call span {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding: 125px 18px 90px;
  }

  .main-logo {
    width: 100%;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .details,
  .menu-teaser,
  .page-shell > footer {
    width: calc(100% - 32px);
  }

  .details {
    padding: 80px 0;
  }

  .info-card {
    padding: 30px;
  }

  .menu-panel {
    padding: 38px 28px;
    gap: 36px;
  }

  .menu-button-group {
    flex-direction: column;
  }

  .menu-view-btn {
    width: 100%;
  }

  .menu-stamp {
    width: auto;
    height: auto;
    justify-self: center;
  }

  .menu-stamp img {
    width: 120px;
    height: 120px;
  }

  .page-shell > footer {
    flex-direction: column;
  }

  .page-shell > footer > div:last-child {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .menu-modal-title p {
    display: none;
  }

  .menu-modal-title h2 {
    font-size: 1rem;
  }
}


/* ========================================
   REDUCED MOTION
======================================== */

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

  .coming-soon-pill span,
  .menu-loading-spinner {
    animation: none;
  }

  .button,
  .menu-view-btn,
  .menu-stamp img,
  .menu-modal,
  .menu-modal-window,
  .menu-pdf-frame,
  .menu-pdf-loading,
  .menu-download-btn,
  .menu-modal-close {
    transition: none;
  }
}